mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-10 01:38:49 +01:00
fix subtitle unit tests
This commit is contained in:
59
MediaBrowser.Tests/MediaEncoding/Subtitles/AssParserTests.cs
Normal file
59
MediaBrowser.Tests/MediaEncoding/Subtitles/AssParserTests.cs
Normal file
@@ -0,0 +1,59 @@
|
||||
using MediaBrowser.MediaEncoding.Subtitles;
|
||||
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using System.Threading;
|
||||
|
||||
namespace MediaBrowser.Tests.MediaEncoding.Subtitles {
|
||||
|
||||
[TestClass]
|
||||
public class AssParserTests {
|
||||
|
||||
[TestMethod]
|
||||
public void TestParse() {
|
||||
|
||||
var expectedSubs =
|
||||
new SubtitleTrackInfo {
|
||||
TrackEvents = new List<SubtitleTrackEvent> {
|
||||
new SubtitleTrackEvent {
|
||||
Id = "1",
|
||||
StartPositionTicks = 24000000,
|
||||
EndPositionTicks = 72000000,
|
||||
Text =
|
||||
"Senator, we're "+ParserValues.NewLine+"making our final "+ParserValues.NewLine+"approach into Coruscant."
|
||||
},
|
||||
new SubtitleTrackEvent {
|
||||
Id = "2",
|
||||
StartPositionTicks = 97100000,
|
||||
EndPositionTicks = 133900000,
|
||||
Text =
|
||||
"Very good, Lieutenant."
|
||||
},
|
||||
new SubtitleTrackEvent {
|
||||
Id = "3",
|
||||
StartPositionTicks = 150400000,
|
||||
EndPositionTicks = 180400000,
|
||||
Text = "It's "+ParserValues.NewLine+"a "+ParserValues.NewLine+"trap!"
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
var sut = new AssParser();
|
||||
|
||||
var stream = File.OpenRead(@"MediaEncoding\Subtitles\TestSubtitles\data.ass");
|
||||
|
||||
var result = sut.Parse(stream, CancellationToken.None);
|
||||
|
||||
Assert.IsNotNull(result);
|
||||
Assert.AreEqual(expectedSubs.TrackEvents.Count,result.TrackEvents.Count);
|
||||
for (int i = 0; i < expectedSubs.TrackEvents.Count; i++)
|
||||
{
|
||||
Assert.AreEqual(expectedSubs.TrackEvents[i].Id, result.TrackEvents[i].Id);
|
||||
Assert.AreEqual(expectedSubs.TrackEvents[i].StartPositionTicks, result.TrackEvents[i].StartPositionTicks);
|
||||
Assert.AreEqual(expectedSubs.TrackEvents[i].EndPositionTicks, result.TrackEvents[i].EndPositionTicks);
|
||||
Assert.AreEqual(expectedSubs.TrackEvents[i].Text, result.TrackEvents[i].Text);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user