Преглед на файлове

MediaInfoControllerTests: Check Content-Length

Bond_009 преди 4 години
родител
ревизия
8b1a211081
променени са 1 файла, в които са добавени 3 реда и са изтрити 0 реда
  1. 3 0
      tests/Jellyfin.Server.Integration.Tests/Controllers/MediaInfoControllerTests.cs

+ 3 - 0
tests/Jellyfin.Server.Integration.Tests/Controllers/MediaInfoControllerTests.cs

@@ -26,6 +26,7 @@ namespace Jellyfin.Server.Integration.Tests.Controllers
 
             Assert.Equal(HttpStatusCode.OK, response.StatusCode);
             Assert.Equal(MediaTypeNames.Application.Octet, response.Content.Headers.ContentType?.MediaType);
+            Assert.NotNull(response.Content.Headers.ContentLength);
         }
 
         [Theory]
@@ -39,6 +40,8 @@ namespace Jellyfin.Server.Integration.Tests.Controllers
 
             Assert.Equal(HttpStatusCode.OK, response.StatusCode);
             Assert.Equal(MediaTypeNames.Application.Octet, response.Content.Headers.ContentType?.MediaType);
+            Assert.NotNull(response.Content.Headers.ContentLength);
+            Assert.InRange(response.Content.Headers.ContentLength!.Value, size, long.MaxValue);
         }
 
         [Theory]