mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 19:17:24 -05:00 
			
		
		
		
	* Remove useless MemoryStream in DlnaHttpClient * Use HttpContent.ReadFromJsonAsync extension * Call ConfigureAwait for IAsyncDisposable * Use HttpContent.CopyToAsync where possible
		
			
				
	
	
		
			55 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			55 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
using System.Net;
 | 
						|
using System.Net.Http.Json;
 | 
						|
using System.Net.Mime;
 | 
						|
using System.Text;
 | 
						|
using System.Text.Json;
 | 
						|
using System.Threading.Tasks;
 | 
						|
using MediaBrowser.Model.Branding;
 | 
						|
using Xunit;
 | 
						|
 | 
						|
namespace Jellyfin.Server.Integration.Tests
 | 
						|
{
 | 
						|
    public sealed class BrandingControllerTests : IClassFixture<JellyfinApplicationFactory>
 | 
						|
    {
 | 
						|
        private readonly JellyfinApplicationFactory _factory;
 | 
						|
 | 
						|
        public BrandingControllerTests(JellyfinApplicationFactory factory)
 | 
						|
        {
 | 
						|
            _factory = factory;
 | 
						|
        }
 | 
						|
 | 
						|
        [Fact]
 | 
						|
        public async Task GetConfiguration_ReturnsCorrectResponse()
 | 
						|
        {
 | 
						|
            // Arrange
 | 
						|
            var client = _factory.CreateClient();
 | 
						|
 | 
						|
            // Act
 | 
						|
            var response = await client.GetAsync("/Branding/Configuration");
 | 
						|
 | 
						|
            // Assert
 | 
						|
            Assert.Equal(HttpStatusCode.OK, response.StatusCode);
 | 
						|
            Assert.Equal(MediaTypeNames.Application.Json, response.Content.Headers.ContentType?.MediaType);
 | 
						|
            Assert.Equal(Encoding.UTF8.BodyName, response.Content.Headers.ContentType?.CharSet);
 | 
						|
            await response.Content.ReadFromJsonAsync<BrandingOptions>();
 | 
						|
        }
 | 
						|
 | 
						|
        [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
 | 
						|
            Assert.True(response.IsSuccessStatusCode);
 | 
						|
            Assert.Equal("text/css", response.Content.Headers.ContentType?.MediaType);
 | 
						|
            Assert.Equal(Encoding.UTF8.BodyName, response.Content.Headers.ContentType?.CharSet);
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |