|
@@ -1,6 +1,7 @@
|
|
|
using NSubstitute;
|
|
|
using ProcessFiles.Interfaces;
|
|
|
using Xunit;
|
|
|
+using Xunit.Sdk;
|
|
|
|
|
|
namespace ProcessFilesTests
|
|
|
{
|
|
@@ -25,5 +26,27 @@ namespace ProcessFilesTests
|
|
|
|
|
|
fakeFileSystem.File.Received().Exists(Arg.Any<string>());
|
|
|
}
|
|
|
+
|
|
|
+ [Fact]
|
|
|
+ public void ProcessFileNotMatchExtensionTest()
|
|
|
+ {
|
|
|
+ var result = string.Empty;
|
|
|
+ void TestAction(string value)
|
|
|
+ {
|
|
|
+ result = value;
|
|
|
+ }
|
|
|
+
|
|
|
+ var fakeFileSystem = Substitute.For<IFileSystem>();
|
|
|
+ fakeFileSystem.File.Exists(Arg.Any<string>()).Returns(true);
|
|
|
+ fakeFileSystem.Path.GetExtension(Arg.Any<string>()).Returns(string.Empty);
|
|
|
+
|
|
|
+ var test = new ProcessFiles.ProcessFiles(fakeFileSystem);
|
|
|
+ var errors = test.Process(["imaginaryNoExtension"], "abc", TestAction);
|
|
|
+ Assert.NotEmpty(errors);
|
|
|
+ Assert.Empty(result);
|
|
|
+
|
|
|
+ fakeFileSystem.File.Received().Exists(Arg.Any<string>());
|
|
|
+ fakeFileSystem.Path.Received().GetExtension(Arg.Any<string>());
|
|
|
+ }
|
|
|
}
|
|
|
}
|