Create integration tests for the endpoints in BrandingService

This commit is contained in:
Mark Monteiro 2020-04-20 15:47:36 -04:00
parent 307754a0e0
commit e43e6af405
1 changed files with 52 additions and 0 deletions

View File

@ -0,0 +1,52 @@
using System;
using System.Text.Json;
using System.Threading.Tasks;
using Jellyfin.Server;
using MediaBrowser.Model.Branding;
using Microsoft.AspNetCore.Mvc.Testing;
using Xunit;
namespace MediaBrowser.Api.Tests
{
public sealed class BrandingServiceTests : IClassFixture<JellyfinApplicationFactory>
{
private readonly JellyfinApplicationFactory _factory;
public BrandingServiceTests(JellyfinApplicationFactory factory)
{
_factory = factory;
}
[Fact]
public async Task GetConfiguration_ReturnsCorrectResponse()
{
// Arrange
var client = _factory.CreateClient();
// Act
var response = await client.GetAsync("/Branding/Configuration");
// Assert
response.EnsureSuccessStatusCode();
Assert.Equal("application/json; charset=utf-8", response.Content.Headers.ContentType.ToString());
var responseBody = await response.Content.ReadAsStreamAsync();
_ = await JsonSerializer.DeserializeAsync<BrandingOptions>(responseBody);
}
[Theory]
[InlineData("/Branding/Css")]
[InlineData("/Branding/Css.css")]
public async Task GetCss_ReturnsCorrectResponse(string url)
{
// Arrange
var client = _factory.CreateClient();
// Act
var response = await client.GetAsync(url);
// Assert
response.EnsureSuccessStatusCode();
Assert.Equal("text/css", response.Content.Headers.ContentType.ToString());
}
}
}