Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/b9f7e3971e453e9faa136de38fe45edd52df253e
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
29 additions and
0 deletions
@ -79,6 +79,35 @@ public class FindExtrasTests
Assert . Equal ( ExtraType . Sample , extras [ 2 ] . ExtraType ) ;
}
[Fact]
public void FindExtras_SeparateMovieFolder_CleanExtraNames ( )
{
var owner = new Movie { Name = "Up" , Path = "/movies/Up/Up.mkv" } ;
var paths = new List < string >
{
"/movies/Up/Up.mkv" ,
"/movies/Up/Recording the audio[Bluray]-behindthescenes.mkv" ,
"/movies/Up/Interview with the dog-interview.mkv" ,
"/movies/Up/shorts/Balloons[1080p].mkv"
} ;
var files = paths . Select ( p = > new FileSystemMetadata
{
FullName = p ,
IsDirectory = false
} ) . ToList ( ) ;
var extras = _libraryManager . FindExtras ( owner , files , new DirectoryService ( _fileSystemMock . Object ) ) . OrderBy ( e = > e . ExtraType ) . ToList ( ) ;
Assert . Equal ( 3 , extras . Count ) ;
Assert . Equal ( ExtraType . BehindTheScenes , extras [ 0 ] . ExtraType ) ;
Assert . Equal ( "Recording the audio" , extras [ 0 ] . Name ) ;
Assert . Equal ( ExtraType . Interview , extras [ 1 ] . ExtraType ) ;
Assert . Equal ( "Interview with the dog" , extras [ 1 ] . Name ) ;
Assert . Equal ( ExtraType . Short , extras [ 2 ] . ExtraType ) ;
Assert . Equal ( "Balloons" , extras [ 2 ] . Name ) ;
}
[Fact]
public void FindExtras_SeparateMovieFolderWithMixedExtras_FindsCorrectExtras ( )
{