forked from aspic/g-wiki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
wiki_test.go
34 lines (29 loc) · 977 Bytes
/
wiki_test.go
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
package main
import "testing"
func TestParseLogLine(t *testing.T) {
input := `a926492 28 hours ago "asdfasdf asdf"asdfasdf asdf test test!!`
log := parseLog([]byte(input))
hash := "a926492"
msg := `"asdfasdf asdf"asdfasdf asdf test test!!`
time := "28 hours ago"
if log.Hash != hash {
t.Errorf("Hash mismatch. Expected: %s got %s", hash, log.Hash)
}
if log.Message != msg {
t.Errorf("Message mismatch. Expected: %s got %s", msg, log.Message)
}
if log.Time != time {
t.Errorf("Time mismatch. Expected: %s got %s", time, log.Time)
}
}
func TestListDirectories_shouldReturnDirectories(t *testing.T) {
path := "/test/test2"
dirs := listDirectories(path)
expectedLength := 3
if len(dirs) != expectedLength {
t.Errorf("Directories size should be %d, was %d", expectedLength, len(dirs))
}
if dirs[0].Path != "" {
t.Errorf("Wrong root path, was %s", dirs[0].Path)
}
}