BililiveRecorder/test/BililiveRecorder.Flv.Tests/RuleTests/IntegratedGoodTests.cs

97 lines
3.5 KiB
C#
Raw Normal View History

2021-11-02 21:46:44 +08:00
using System.Collections.Generic;
using System.Threading.Tasks;
using BililiveRecorder.Flv.Grouping;
using BililiveRecorder.Flv.Pipeline;
using BililiveRecorder.Flv.Writer;
using BililiveRecorder.Flv.Xml;
using VerifyTests;
using VerifyXunit;
using Xunit;
namespace BililiveRecorder.Flv.Tests.RuleTests
2021-11-02 21:46:44 +08:00
{
[UsesVerify]
[ExpectationPath("Good")]
public class IntegratedGoodTests : IntegratedTestBase
{
2022-06-17 17:42:50 +08:00
[Theory()]
2021-11-02 21:46:44 +08:00
[Expectation("StandardTest")]
[SampleFileTestData("../data/flv/TestData/Good", "*.xml")]
2021-11-02 21:46:44 +08:00
public async Task StrictTestsAsync(string path)
{
// Arrange
var originalTags = SampleFileLoader.LoadXmlFlv(path).Tags;
var reader = new TagGroupReader(new FlvTagListReader(SampleFileLoader.LoadXmlFlv(path).Tags));
2021-11-02 21:46:44 +08:00
var flvTagListWriter = new FlvTagListWriter();
var comments = new List<ProcessingComment>();
// Act
await RunPipeline(reader, flvTagListWriter, comments).ConfigureAwait(false);
// Assert
2022-06-17 17:42:50 +08:00
comments.RemoveAll(x => !x.ActionRequired);
2021-11-02 21:46:44 +08:00
Assert.Empty(comments);
Assert.Empty(flvTagListWriter.AccompanyingTextLogs);
2021-11-02 21:46:44 +08:00
var outputTags = Assert.Single(flvTagListWriter.Files);
Assert.Equal(originalTags.Count, outputTags.Count);
AssertTags.ShouldHaveLinearTimestamps(outputTags);
AssertTags.ShouldHaveFullHeaderTags(outputTags);
AssertTags.ShouldHaveSingleHeaderTagPerType(outputTags);
AssertTags.ShouldAlmostEqual(originalTags, outputTags);
await AssertTagsByRerunPipeline(outputTags).ConfigureAwait(false);
var xmlStr = outputTags.SerializeXml();
2023-01-14 23:00:40 +08:00
await Verifier.Verify(xmlStr, extension: "xml").UseParameters(path);
2021-11-02 21:46:44 +08:00
}
2022-06-17 17:42:50 +08:00
[Theory()]
2021-11-02 21:46:44 +08:00
[Expectation("WithOffsetTest")]
[SampleFileTestData("../data/flv/TestData/Good", "*.xml")]
2021-11-02 21:46:44 +08:00
public async Task StrictWithArtificalOffsetTestsAsync(string path)
{
// Arrange
var originalTags = SampleFileLoader.LoadXmlFlv(path).Tags;
2021-11-02 21:46:44 +08:00
var random = new System.Random();
var offset = random.Next(501, 9999);
2021-11-02 21:46:44 +08:00
if (random.Next(2) == 1)
offset = -offset;
var inputTagsWithOffset = SampleFileLoader.LoadXmlFlv(path).Tags;
2021-11-02 21:46:44 +08:00
foreach (var tag in inputTagsWithOffset)
tag.Timestamp += offset;
var reader = new TagGroupReader(new FlvTagListReader(inputTagsWithOffset));
var output = new FlvTagListWriter();
var comments = new List<ProcessingComment>();
// Act
await RunPipeline(reader, output, comments).ConfigureAwait(false);
// Assert
2022-06-17 17:42:50 +08:00
comments.RemoveAll(x => !x.ActionRequired);
Assert.Equal(CommentType.TimestampJump, Assert.Single(comments).Type);
2021-11-02 21:46:44 +08:00
Assert.Empty(output.AccompanyingTextLogs);
2021-11-02 21:46:44 +08:00
var outputTags = Assert.Single(output.Files);
Assert.Equal(originalTags.Count, outputTags.Count);
AssertTags.ShouldHaveLinearTimestamps(outputTags);
AssertTags.ShouldHaveFullHeaderTags(outputTags);
AssertTags.ShouldHaveSingleHeaderTagPerType(outputTags);
AssertTags.ShouldAlmostEqual(originalTags, outputTags);
await AssertTagsByRerunPipeline(outputTags).ConfigureAwait(false);
var xmlStr = outputTags.SerializeXml();
2023-01-14 23:00:40 +08:00
await Verifier.Verify(xmlStr, extension: "xml").UseParameters(path);
2021-11-02 21:46:44 +08:00
}
}
}