public void IsFileSameTest() { var tempFolder = GetTempFolder(); var fs = new FileSystemStorage(); var path1 = fs.Combine(tempFolder, Guid.NewGuid().ToString()); var path2 = fs.Combine(tempFolder, Guid.NewGuid().ToString()); System.IO.File.WriteAllText(path1, "test"); System.IO.File.WriteAllText(path2, "test"); var result = fs.IsFileSame(path1, path2); if (result) { Trace.WriteLine($"Date signature: Files are the same: {path1}, {path2}"); Assert.Fail(); } var path3 = fs.Combine(tempFolder, Guid.NewGuid().ToString()); fs.CopyFile(path1, path3); result = fs.IsFileSame(path1, path3); if (!result) { Trace.WriteLine($"Date signature: Files are not the same: {path1}, {path3}"); Assert.Fail(); } fs.DeleteFile(path1); fs.DeleteFile(path2); fs.DeleteFile(path3); }
public void MoveFileTest() { var tempFolder = GetTempFolder(); var fs = new FileSystemStorage(); var testData = new List <Tuple <string, string> > { new Tuple <string, string>(@"file1.txt", @"folder2\file2.txt"), }; foreach (var data in testData) { var path1 = fs.Combine(tempFolder, data.Item1); var path2 = fs.Combine(tempFolder, data.Item2); //Delete leftovers try { fs.DeleteFile(path1); } catch { } try { fs.DeleteFile(path2); } catch { } try { fs.DeleteDirectory(fs.GetDirectoryName(path2)); } catch { } System.IO.File.WriteAllText(path1, "test file"); //simple move target folder no exists try { fs.MoveFile(path1, path2); Trace.WriteLine($"move to {path2} shuold fail to move file - path error"); Assert.Fail(); } catch { } try { fs.CreateDirectory(fs.GetDirectoryName(path2)); } catch { } //simple move fs.MoveFile(path1, path2); if (!fs.FileExists(path2)) { Trace.WriteLine($"failed to move file {path2}"); Assert.Fail(); } //file already exist fs.CopyFile(path2, path1); try { fs.MoveFile(path1, path2); Trace.WriteLine($"Moveto {path2} shuold fail- file exist"); Assert.Fail(); } catch { } if (!fs.FileExists(path2)) { Trace.WriteLine($"File was deleted{path1}"); Assert.Fail(); } if (!fs.FileExists(path2)) { Trace.WriteLine($"File not copied - override {path2}"); Assert.Fail(); } fs.DeleteFile(path1); fs.DeleteFile(path2); var targetFileName = fs.GetFileName(path2); var targetDirectoryName = path2.Substring(0, path2.Length - targetFileName.Length); fs.DeleteDirectory(targetDirectoryName); } }