mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-30 18:22:48 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			53 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			53 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System;
 | |
| using MediaBrowser.MediaEncoding.Encoder;
 | |
| using Microsoft.Extensions.Logging.Abstractions;
 | |
| using Xunit;
 | |
| 
 | |
| namespace Jellyfin.MediaEncoding.Tests
 | |
| {
 | |
|     public class EncoderValidatorTests
 | |
|     {
 | |
|         private readonly EncoderValidator _encoderValidator = new EncoderValidator(new NullLogger<EncoderValidatorTests>(), "ffmpeg");
 | |
| 
 | |
|         [Theory]
 | |
|         [ClassData(typeof(GetFFmpegVersionTestData))]
 | |
|         public void GetFFmpegVersionTest(string versionOutput, Version? version)
 | |
|         {
 | |
|             Assert.Equal(version, _encoderValidator.GetFFmpegVersionInternal(versionOutput));
 | |
|         }
 | |
| 
 | |
|         [Theory]
 | |
|         [InlineData(EncoderValidatorTestsData.FFmpegV44Output, true)]
 | |
|         [InlineData(EncoderValidatorTestsData.FFmpegV432Output, true)]
 | |
|         [InlineData(EncoderValidatorTestsData.FFmpegV431Output, true)]
 | |
|         [InlineData(EncoderValidatorTestsData.FFmpegV43Output, true)]
 | |
|         [InlineData(EncoderValidatorTestsData.FFmpegV421Output, true)]
 | |
|         [InlineData(EncoderValidatorTestsData.FFmpegV42Output, true)]
 | |
|         [InlineData(EncoderValidatorTestsData.FFmpegV414Output, true)]
 | |
|         [InlineData(EncoderValidatorTestsData.FFmpegV404Output, true)]
 | |
|         [InlineData(EncoderValidatorTestsData.FFmpegGitUnknownOutput2, true)]
 | |
|         [InlineData(EncoderValidatorTestsData.FFmpegGitUnknownOutput, false)]
 | |
|         public void ValidateVersionInternalTest(string versionOutput, bool valid)
 | |
|         {
 | |
|             Assert.Equal(valid, _encoderValidator.ValidateVersionInternal(versionOutput));
 | |
|         }
 | |
| 
 | |
|         private class GetFFmpegVersionTestData : TheoryData<string, Version?>
 | |
|         {
 | |
|             public GetFFmpegVersionTestData()
 | |
|             {
 | |
|                 Add(EncoderValidatorTestsData.FFmpegV44Output, new Version(4, 4));
 | |
|                 Add(EncoderValidatorTestsData.FFmpegV432Output, new Version(4, 3, 2));
 | |
|                 Add(EncoderValidatorTestsData.FFmpegV431Output, new Version(4, 3, 1));
 | |
|                 Add(EncoderValidatorTestsData.FFmpegV43Output, new Version(4, 3));
 | |
|                 Add(EncoderValidatorTestsData.FFmpegV421Output, new Version(4, 2, 1));
 | |
|                 Add(EncoderValidatorTestsData.FFmpegV42Output, new Version(4, 2));
 | |
|                 Add(EncoderValidatorTestsData.FFmpegV414Output, new Version(4, 1, 4));
 | |
|                 Add(EncoderValidatorTestsData.FFmpegV404Output, new Version(4, 0, 4));
 | |
|                 Add(EncoderValidatorTestsData.FFmpegGitUnknownOutput2, new Version(4, 0));
 | |
|                 Add(EncoderValidatorTestsData.FFmpegGitUnknownOutput, null);
 | |
|             }
 | |
|         }
 | |
|     }
 | |
| }
 |