aboutsummaryrefslogtreecommitdiffstats
path: root/ethutil/path_test.go
diff options
context:
space:
mode:
authorTaylor Gerring <taylor.gerring@gmail.com>2014-11-12 03:37:18 +0800
committerTaylor Gerring <taylor.gerring@gmail.com>2014-11-12 03:37:18 +0800
commit1d866b5e579e06d00ab63cf8899a47e08b95b232 (patch)
tree022955dec7ef6527a6f30d3adb82ce4671e111a2 /ethutil/path_test.go
parentf59a3b67f69b26f969084e0de165435e80bd8e12 (diff)
parent5c5df21e3d8768481c2bc1b6e9475099590e10be (diff)
downloaddexon-1d866b5e579e06d00ab63cf8899a47e08b95b232.tar.gz
dexon-1d866b5e579e06d00ab63cf8899a47e08b95b232.tar.zst
dexon-1d866b5e579e06d00ab63cf8899a47e08b95b232.zip
Merge pull request #1 from tgerring/tests
Initial tests based on check framework
Diffstat (limited to 'ethutil/path_test.go')
-rw-r--r--ethutil/path_test.go51
1 files changed, 51 insertions, 0 deletions
diff --git a/ethutil/path_test.go b/ethutil/path_test.go
new file mode 100644
index 000000000..908c94ee7
--- /dev/null
+++ b/ethutil/path_test.go
@@ -0,0 +1,51 @@
+package ethutil
+
+import (
+ // "os"
+ "testing"
+)
+
+func TestGoodFile(t *testing.T) {
+ goodpath := "~/goethereumtest.pass"
+ path := ExpandHomePath(goodpath)
+ contentstring := "3.14159265358979323846"
+
+ err := WriteFile(path, []byte(contentstring))
+ if err != nil {
+ t.Error("Could not write file")
+ }
+
+ if !FileExist(path) {
+ t.Error("File not found at", path)
+ }
+
+ v, err := ReadAllFile(path)
+ if err != nil {
+ t.Error("Could not read file", path)
+ }
+ if v != contentstring {
+ t.Error("Expected", contentstring, "Got", v)
+ }
+
+}
+
+func TestBadFile(t *testing.T) {
+ badpath := "/this/path/should/not/exist/goethereumtest.fail"
+ path := ExpandHomePath(badpath)
+ contentstring := "3.14159265358979323846"
+
+ err := WriteFile(path, []byte(contentstring))
+ if err == nil {
+ t.Error("Wrote file, but should not be able to", path)
+ }
+
+ if FileExist(path) {
+ t.Error("Found file, but should not be able to", path)
+ }
+
+ v, err := ReadAllFile(path)
+ if err == nil {
+ t.Error("Read file, but should not be able to", v)
+ }
+
+}