You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
using System.IO;
|
|
|
|
using FluentAssertions;
|
|
|
|
using Moq;
|
|
|
|
using NUnit.Framework;
|
|
|
|
using NzbDrone.Common;
|
|
|
|
using NzbDrone.Core.MediaFiles.MediaInfo;
|
|
|
|
using NzbDrone.Core.Test.Framework;
|
|
|
|
using NzbDrone.Test.Common.Categories;
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Test.MediaFiles.MediaInfo
|
|
|
|
{
|
|
|
|
[TestFixture]
|
|
|
|
[DiskAccessTest]
|
|
|
|
public class VideoFileInfoReaderFixture : CoreTest<VideoFileInfoReader>
|
|
|
|
{
|
|
|
|
[SetUp]
|
|
|
|
public void Setup()
|
|
|
|
{
|
|
|
|
Mocker.GetMock<IDiskProvider>()
|
|
|
|
.Setup(s => s.FileExists(It.IsAny<string>()))
|
|
|
|
.Returns(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
public void get_runtime()
|
|
|
|
{
|
|
|
|
var path = Path.Combine(Directory.GetCurrentDirectory(), "Files", "Media", "H264_sample.mp4");
|
|
|
|
|
|
|
|
Subject.GetRunTime(path).Seconds.Should().Be(10);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|