aboutsummaryrefslogtreecommitdiffstats
path: root/common/path_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'common/path_test.go')
-rw-r--r--common/path_test.go36
1 files changed, 36 insertions, 0 deletions
diff --git a/common/path_test.go b/common/path_test.go
new file mode 100644
index 000000000..4b90c543b
--- /dev/null
+++ b/common/path_test.go
@@ -0,0 +1,36 @@
+package common
+
+import (
+ "os"
+ // "testing"
+
+ checker "gopkg.in/check.v1"
+)
+
+type CommonSuite struct{}
+
+var _ = checker.Suite(&CommonSuite{})
+
+func (s *CommonSuite) TestOS(c *checker.C) {
+ expwin := (os.PathSeparator == '\\' && os.PathListSeparator == ';')
+ res := IsWindows()
+
+ if !expwin {
+ c.Assert(res, checker.Equals, expwin, checker.Commentf("IsWindows is", res, "but path is", os.PathSeparator))
+ } else {
+ c.Assert(res, checker.Not(checker.Equals), expwin, checker.Commentf("IsWindows is", res, "but path is", os.PathSeparator))
+ }
+}
+
+func (s *CommonSuite) TestWindonziePath(c *checker.C) {
+ iswindowspath := os.PathSeparator == '\\'
+ path := "/opt/eth/test/file.ext"
+ res := WindonizePath(path)
+ ressep := string(res[0])
+
+ if !iswindowspath {
+ c.Assert(ressep, checker.Equals, "/")
+ } else {
+ c.Assert(ressep, checker.Not(checker.Equals), "/")
+ }
+}