aboutsummaryrefslogtreecommitdiffstats
path: root/ethutil/path_test.go
blob: 908c94ee7b08061323562b549f3e51dcdddfbd79 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
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)
    }

}