diff options
author | Jeffrey Wilcke <jeffrey@ethereum.org> | 2015-03-23 04:46:46 +0800 |
---|---|---|
committer | Jeffrey Wilcke <jeffrey@ethereum.org> | 2015-03-23 04:46:46 +0800 |
commit | 8affdf96e23f092b7fe24d168b024b10eab35e05 (patch) | |
tree | 3d29fe62226a54a8f22d194df03224c7625e1312 /common/path_test.go | |
parent | 3133372a6a81c91528afbde58e22b3f9df257d03 (diff) | |
parent | bf73f02fe040086ac7c9786a15fadc65840a8536 (diff) | |
download | dexon-8affdf96e23f092b7fe24d168b024b10eab35e05.tar.gz dexon-8affdf96e23f092b7fe24d168b024b10eab35e05.tar.zst dexon-8affdf96e23f092b7fe24d168b024b10eab35e05.zip |
Merge pull request #547 from tgerring/commoncleanup
common/common.go cleanup
Diffstat (limited to 'common/path_test.go')
-rw-r--r-- | common/path_test.go | 32 |
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), "/") + } +} |