Split Windows and Unix specific path tests
authorbep <bjorn.erik.pedersen@gmail.com>
Tue, 27 Jan 2015 13:03:48 +0000 (14:03 +0100)
committerbep <bjorn.erik.pedersen@gmail.com>
Tue, 27 Jan 2015 14:09:01 +0000 (15:09 +0100)
helpers/path_test.go
helpers/path_unix_test.go [new file with mode: 0644]
helpers/path_windows_test.go [new file with mode: 0644]

index f4d3dd303e9503be29d7d184fc8fa7e0c3a19584..366ed6e4c87fd21397e24c08fbd97b86efe86a00 100644 (file)
@@ -395,7 +395,6 @@ func TestAbsPathify(t *testing.T) {
        }
        data := []test{
                {os.TempDir(), filepath.FromSlash("/work"), filepath.Clean(os.TempDir())}, // TempDir has trailing slash
-               // todo bep breaks on Windows: {filepath.FromSlash("/banana/../dir/"), filepath.FromSlash("/work"), filepath.FromSlash("/dir")},
                {"dir", filepath.FromSlash("/work"), filepath.FromSlash("/work/dir")},
        }
 
diff --git a/helpers/path_unix_test.go b/helpers/path_unix_test.go
new file mode 100644 (file)
index 0000000..d9f73c6
--- /dev/null
@@ -0,0 +1,27 @@
+// +build !windows
+
+package helpers
+
+import (
+       "github.com/spf13/viper"
+       "testing"
+)
+
+func TestPlatformAbsPathify(t *testing.T) {
+       type test struct {
+               inPath, workingDir, expected string
+       }
+       data := []test{
+               {"/banana/../dir/", "/work", "/dir"},
+       }
+
+       for i, d := range data {
+               // todo see comment in AbsPathify
+               viper.Set("WorkingDir", d.workingDir)
+
+               expected := AbsPathify(d.inPath)
+               if d.expected != expected {
+                       t.Errorf("Test %d failed. Expected %q but got %q", i, d.expected, expected)
+               }
+       }
+}
diff --git a/helpers/path_windows_test.go b/helpers/path_windows_test.go
new file mode 100644 (file)
index 0000000..22b24ce
--- /dev/null
@@ -0,0 +1,27 @@
+package helpers
+
+import (
+       "github.com/spf13/viper"
+       "testing"
+)
+
+func TestPlatformAbsPathify(t *testing.T) {
+       type test struct {
+               inPath, workingDir, expected string
+       }
+       data := []test{
+               {"c:\\banana\\..\\dir", "c:\\foo", "c:\\dir"},
+               {"\\dir", "c:\\foo", "c:\\foo\\dir"},
+               {"c:\\", "c:\\foo", "c:\\"},
+       }
+
+       for i, d := range data {
+               // todo see comment in AbsPathify
+               viper.Set("WorkingDir", d.workingDir)
+
+               expected := AbsPathify(d.inPath)
+               if d.expected != expected {
+                       t.Errorf("Test %d failed. Expected %q but got %q", i, d.expected, expected)
+               }
+       }
+}