mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-31 02:27:18 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			118 lines
		
	
	
		
			4.5 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			118 lines
		
	
	
		
			4.5 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System;
 | |
| using System.Net;
 | |
| using System.Net.Http;
 | |
| using System.Net.Http.Json;
 | |
| using System.Text.Json;
 | |
| using System.Threading.Tasks;
 | |
| using Jellyfin.Api.Models.LibraryStructureDto;
 | |
| using Jellyfin.Extensions.Json;
 | |
| using MediaBrowser.Model.Configuration;
 | |
| using Xunit;
 | |
| 
 | |
| namespace Jellyfin.Server.Integration.Tests.Controllers
 | |
| {
 | |
|     public sealed class MediaStructureControllerTests : IClassFixture<JellyfinApplicationFactory>
 | |
|     {
 | |
|         private readonly JellyfinApplicationFactory _factory;
 | |
|         private readonly JsonSerializerOptions _jsonOptions = JsonDefaults.Options;
 | |
|         private static string? _accessToken;
 | |
| 
 | |
|         public MediaStructureControllerTests(JellyfinApplicationFactory factory)
 | |
|         {
 | |
|             _factory = factory;
 | |
|         }
 | |
| 
 | |
|         [Fact]
 | |
|         public async Task RenameVirtualFolder_WhiteSpaceName_ReturnsBadRequest()
 | |
|         {
 | |
|             var client = _factory.CreateClient();
 | |
|             client.DefaultRequestHeaders.AddAuthHeader(_accessToken ??= await AuthHelper.CompleteStartupAsync(client));
 | |
| 
 | |
|             using var postContent = new ByteArrayContent(Array.Empty<byte>());
 | |
|             var response = await client.PostAsync("Library/VirtualFolders/Name?name=+&newName=test", postContent);
 | |
| 
 | |
|             Assert.Equal(HttpStatusCode.BadRequest, response.StatusCode);
 | |
|         }
 | |
| 
 | |
|         [Fact]
 | |
|         public async Task RenameVirtualFolder_WhiteSpaceNewName_ReturnsBadRequest()
 | |
|         {
 | |
|             var client = _factory.CreateClient();
 | |
|             client.DefaultRequestHeaders.AddAuthHeader(_accessToken ??= await AuthHelper.CompleteStartupAsync(client));
 | |
| 
 | |
|             using var postContent = new ByteArrayContent(Array.Empty<byte>());
 | |
|             var response = await client.PostAsync("Library/VirtualFolders/Name?name=test&newName=+", postContent);
 | |
| 
 | |
|             Assert.Equal(HttpStatusCode.BadRequest, response.StatusCode);
 | |
|         }
 | |
| 
 | |
|         [Fact]
 | |
|         public async Task RenameVirtualFolder_NameDoesntExist_ReturnsNotFound()
 | |
|         {
 | |
|             var client = _factory.CreateClient();
 | |
|             client.DefaultRequestHeaders.AddAuthHeader(_accessToken ??= await AuthHelper.CompleteStartupAsync(client));
 | |
| 
 | |
|             using var postContent = new ByteArrayContent(Array.Empty<byte>());
 | |
|             var response = await client.PostAsync("Library/VirtualFolders/Name?name=doesnt+exist&newName=test", postContent);
 | |
| 
 | |
|             Assert.Equal(HttpStatusCode.NotFound, response.StatusCode);
 | |
|         }
 | |
| 
 | |
|         [Fact]
 | |
|         public async Task AddMediaPath_PathDoesntExist_ReturnsNotFound()
 | |
|         {
 | |
|             var client = _factory.CreateClient();
 | |
|             client.DefaultRequestHeaders.AddAuthHeader(_accessToken ??= await AuthHelper.CompleteStartupAsync(client));
 | |
| 
 | |
|             var data = new MediaPathDto()
 | |
|             {
 | |
|                 Name = "Test",
 | |
|                 Path = "/this/path/doesnt/exist"
 | |
|             };
 | |
| 
 | |
|             var response = await client.PostAsJsonAsync("Library/VirtualFolders/Paths", data, _jsonOptions);
 | |
| 
 | |
|             Assert.Equal(HttpStatusCode.NotFound, response.StatusCode);
 | |
|         }
 | |
| 
 | |
|         [Fact]
 | |
|         public async Task UpdateMediaPath_WhiteSpaceName_ReturnsBadRequest()
 | |
|         {
 | |
|             var client = _factory.CreateClient();
 | |
|             client.DefaultRequestHeaders.AddAuthHeader(_accessToken ??= await AuthHelper.CompleteStartupAsync(client));
 | |
| 
 | |
|             var data = new UpdateMediaPathRequestDto()
 | |
|             {
 | |
|                 Name = " ",
 | |
|                 PathInfo = new MediaPathInfo("test")
 | |
|             };
 | |
| 
 | |
|             var response = await client.PostAsJsonAsync("Library/VirtualFolders/Paths/Update", data, _jsonOptions);
 | |
| 
 | |
|             Assert.Equal(HttpStatusCode.BadRequest, response.StatusCode);
 | |
|         }
 | |
| 
 | |
|         [Fact]
 | |
|         public async Task RemoveMediaPath_WhiteSpaceName_ReturnsBadRequest()
 | |
|         {
 | |
|             var client = _factory.CreateClient();
 | |
|             client.DefaultRequestHeaders.AddAuthHeader(_accessToken ??= await AuthHelper.CompleteStartupAsync(client));
 | |
| 
 | |
|             var response = await client.DeleteAsync("Library/VirtualFolders/Paths?name=+");
 | |
| 
 | |
|             Assert.Equal(HttpStatusCode.BadRequest, response.StatusCode);
 | |
|         }
 | |
| 
 | |
|         [Fact]
 | |
|         public async Task RemoveMediaPath_PathDoesntExist_ReturnsNotFound()
 | |
|         {
 | |
|             var client = _factory.CreateClient();
 | |
|             client.DefaultRequestHeaders.AddAuthHeader(_accessToken ??= await AuthHelper.CompleteStartupAsync(client));
 | |
| 
 | |
|             var response = await client.DeleteAsync("Library/VirtualFolders/Paths?name=none&path=%2Fthis%2Fpath%2Fdoesnt%2Fexist");
 | |
| 
 | |
|             Assert.Equal(HttpStatusCode.NotFound, response.StatusCode);
 | |
|         }
 | |
|     }
 | |
| }
 |