Browse Source

Added ProcessFileNotMatchExtensionTest

Piotr Czajkowski 5 months ago
parent
commit
c52f033ea1
1 changed files with 23 additions and 0 deletions
  1. 23 0
      ProcessFilesTests/ProcessFiles_UnitTests.cs

+ 23 - 0
ProcessFilesTests/ProcessFiles_UnitTests.cs

@@ -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>());
+        }
     }
 }