aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTaylor Gerring <taylor.gerring@gmail.com>2014-11-05 18:23:30 +0800
committerTaylor Gerring <taylor.gerring@gmail.com>2014-11-05 18:23:30 +0800
commit92299b7c2449940c4b98f1aebcd53076780a7704 (patch)
treea2da88581fe113a062d763919388b634c4b506ae
parentb96a59eb28654ba5bc915bfaa21f511fdaa443df (diff)
downloadgo-tangerine-92299b7c2449940c4b98f1aebcd53076780a7704.tar
go-tangerine-92299b7c2449940c4b98f1aebcd53076780a7704.tar.gz
go-tangerine-92299b7c2449940c4b98f1aebcd53076780a7704.tar.bz2
go-tangerine-92299b7c2449940c4b98f1aebcd53076780a7704.tar.lz
go-tangerine-92299b7c2449940c4b98f1aebcd53076780a7704.tar.xz
go-tangerine-92299b7c2449940c4b98f1aebcd53076780a7704.tar.zst
go-tangerine-92299b7c2449940c4b98f1aebcd53076780a7704.zip
New test coverage for ethutil/path.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)
+ }
+
+}