123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- using System;
- using System.Net;
- using System.Net.Http;
- using System.Net.Http.Headers;
- using System.Net.Mime;
- using System.Text.Json;
- using System.Threading.Tasks;
- using Jellyfin.Api.Models.StartupDtos;
- using Jellyfin.Extensions.Json;
- using Xunit;
- using Xunit.Priority;
- namespace Jellyfin.Server.Integration.Tests.Controllers
- {
- [TestCaseOrderer(PriorityOrderer.Name, PriorityOrderer.Assembly)]
- public sealed class StartupControllerTests : IClassFixture<JellyfinApplicationFactory>
- {
- private readonly JellyfinApplicationFactory _factory;
- private readonly JsonSerializerOptions _jsonOptions = JsonDefaults.Options;
- public StartupControllerTests(JellyfinApplicationFactory factory)
- {
- _factory = factory;
- }
- [Fact]
- [Priority(-2)]
- public async Task Configuration_EditConfig_Success()
- {
- var client = _factory.CreateClient();
- var config = new StartupConfigurationDto()
- {
- UICulture = "NewCulture",
- MetadataCountryCode = "be",
- PreferredMetadataLanguage = "nl"
- };
- using var postContent = new ByteArrayContent(JsonSerializer.SerializeToUtf8Bytes(config, _jsonOptions));
- postContent.Headers.ContentType = MediaTypeHeaderValue.Parse(MediaTypeNames.Application.Json);
- using var postResponse = await client.PostAsync("/Startup/Configuration", postContent).ConfigureAwait(false);
- Assert.Equal(HttpStatusCode.NoContent, postResponse.StatusCode);
- using var getResponse = await client.GetAsync("/Startup/Configuration").ConfigureAwait(false);
- Assert.Equal(HttpStatusCode.OK, getResponse.StatusCode);
- Assert.Equal(MediaTypeNames.Application.Json, getResponse.Content.Headers.ContentType?.MediaType);
- using var responseStream = await getResponse.Content.ReadAsStreamAsync().ConfigureAwait(false);
- var newConfig = await JsonSerializer.DeserializeAsync<StartupConfigurationDto>(responseStream, _jsonOptions).ConfigureAwait(false);
- Assert.Equal(config.UICulture, newConfig!.UICulture);
- Assert.Equal(config.MetadataCountryCode, newConfig.MetadataCountryCode);
- Assert.Equal(config.PreferredMetadataLanguage, newConfig.PreferredMetadataLanguage);
- }
- [Fact]
- [Priority(-2)]
- public async Task User_DefaultUser_NameWithoutPassword()
- {
- var client = _factory.CreateClient();
- using var response = await client.GetAsync("/Startup/User").ConfigureAwait(false);
- Assert.Equal(HttpStatusCode.OK, response.StatusCode);
- Assert.Equal(MediaTypeNames.Application.Json, response.Content.Headers.ContentType?.MediaType);
- using var contentStream = await response.Content.ReadAsStreamAsync().ConfigureAwait(false);
- var user = await JsonSerializer.DeserializeAsync<StartupUserDto>(contentStream, _jsonOptions).ConfigureAwait(false);
- Assert.NotEmpty(user!.Name);
- Assert.Null(user.Password);
- }
- [Fact]
- [Priority(-1)]
- public async Task User_EditUser_Success()
- {
- var client = _factory.CreateClient();
- var user = new StartupUserDto()
- {
- Name = "NewName",
- Password = "NewPassword"
- };
- using var postContent = new ByteArrayContent(JsonSerializer.SerializeToUtf8Bytes(user, _jsonOptions));
- postContent.Headers.ContentType = MediaTypeHeaderValue.Parse(MediaTypeNames.Application.Json);
- var postResponse = await client.PostAsync("/Startup/User", postContent).ConfigureAwait(false);
- Assert.Equal(HttpStatusCode.NoContent, postResponse.StatusCode);
- var getResponse = await client.GetAsync("/Startup/User").ConfigureAwait(false);
- Assert.Equal(HttpStatusCode.OK, getResponse.StatusCode);
- Assert.Equal(MediaTypeNames.Application.Json, getResponse.Content.Headers.ContentType?.MediaType);
- var contentStream = await getResponse.Content.ReadAsStreamAsync().ConfigureAwait(false);
- var newUser = await JsonSerializer.DeserializeAsync<StartupUserDto>(contentStream, _jsonOptions).ConfigureAwait(false);
- Assert.Equal(user.Name, newUser!.Name);
- Assert.NotEmpty(newUser.Password);
- Assert.NotEqual(user.Password, newUser.Password);
- }
- [Fact]
- [Priority(0)]
- public async Task CompleteWizard_Success()
- {
- var client = _factory.CreateClient();
- var response = await client.PostAsync("/Startup/Complete", new ByteArrayContent(Array.Empty<byte>())).ConfigureAwait(false);
- Assert.Equal(HttpStatusCode.NoContent, response.StatusCode);
- }
- [Fact]
- [Priority(1)]
- public async Task GetFirstUser_CompleteWizard_Unauthorized()
- {
- var client = _factory.CreateClient();
- using var response = await client.GetAsync("/Startup/User").ConfigureAwait(false);
- Assert.Equal(HttpStatusCode.Unauthorized, response.StatusCode);
- }
- }
- }
|