aboutsummaryrefslogtreecommitdiffstats
path: root/common/path_test.go
diff options
context:
space:
mode:
authorTaylor Gerring <taylor.gerring@gmail.com>2015-03-22 20:44:17 +0800
committerTaylor Gerring <taylor.gerring@gmail.com>2015-03-22 20:44:17 +0800
commitc0741edc34c3d09b69c7a64a97aaca0e7759add1 (patch)
tree93b31a77c875ec58d182a07092bf1589b901cf5a /common/path_test.go
parent82a41a198e3ac217e1c349c7300b1fb28e4982ab (diff)
downloadgo-tangerine-c0741edc34c3d09b69c7a64a97aaca0e7759add1.tar
go-tangerine-c0741edc34c3d09b69c7a64a97aaca0e7759add1.tar.gz
go-tangerine-c0741edc34c3d09b69c7a64a97aaca0e7759add1.tar.bz2
go-tangerine-c0741edc34c3d09b69c7a64a97aaca0e7759add1.tar.lz
go-tangerine-c0741edc34c3d09b69c7a64a97aaca0e7759add1.tar.xz
go-tangerine-c0741edc34c3d09b69c7a64a97aaca0e7759add1.tar.zst
go-tangerine-c0741edc34c3d09b69c7a64a97aaca0e7759add1.zip
Move OS-specific funcs to path.go
Diffstat (limited to 'common/path_test.go')
-rw-r--r--common/path_test.go32
1 files changed, 31 insertions, 1 deletions
diff --git a/common/path_test.go b/common/path_test.go
index 4af1bd7af..c831d1a57 100644
--- a/common/path_test.go
+++ b/common/path_test.go
@@ -1,8 +1,10 @@
package common
import (
- // "os"
+ "os"
"testing"
+
+ checker "gopkg.in/check.v1"
)
func TestGoodFile(t *testing.T) {
@@ -49,3 +51,31 @@ func TestBadFile(t *testing.T) {
}
}
+
+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), "/")
+ }
+}