changed according to code review

This commit is contained in:
Zachary Folwick 2015-09-03 16:41:14 -07:00
parent f6e255310b
commit d4f08a971d

View file

@ -93,35 +93,26 @@ namespace PSTests
}
[Fact]
public static void TestIsHardLinkWithFileSystemInfo()
public static void TestExistantFileIsHardLink()
{
// a file that should exist on every *nix distro
string path = @"/tmp/MyTest";
if (!File.Exists(path))
{
File.Create(path);
}
// Create a file to write to using StreamWriter.
// convert string to stream. On Windows, this appears to be handled, but on *nix, we apparently need to convert to UTF8.
byte[] byteArray = System.Text.Encoding.UTF8.GetBytes(path);
MemoryStream stream = new MemoryStream(byteArray);
using (StreamWriter sw = new StreamWriter(stream))
{
sw.Write("Hello");
}
// Convert `path` string to FileSystemInfo data type. And now, it should return true
FileSystemInfo fd = new FileInfo(path);
Assert.True(Platform.NonWindowsIsHardLink(fd));
}
[Fact]
public static void TestIsHardLinkFailsWithDirectoryWithFileSystemInfo()
public static void TestDirectoryIsHardLink()
{
// A folder that should exist on every *nix system
string path = @"/tmp";
// Convert `path` string to FileSystemInfo data type. And now, it should return true
@ -130,7 +121,7 @@ namespace PSTests
}
[Fact]
public static void TestIsHardLinkFailsWithNonexistantFileWithFileSystemInfo()
public static void TestNonExistantIsHardLink()
{
// A file that should *never* exist on a test machine:
string path = @"/tmp/ThisFileShouldNotExistOnTestMachines";