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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
package todolist
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestNextId(t *testing.T) {
assert := assert.New(t)
list := &TodoList{}
assert.Equal(1, list.NextId())
}
func TestIndexOf(t *testing.T) {
assert := assert.New(t)
todo := &Todo{Subject: "Grant"}
store := &FileStore{FileLocation: "todos.json"}
list := &TodoList{}
todos, _ := store.Load()
list.Load(todos)
assert.Equal(-1, list.IndexOf(todo))
assert.Equal(0, list.IndexOf(list.Data[0]))
}
func TestDelete(t *testing.T) {
assert := assert.New(t)
store := &FileStore{FileLocation: "todos.json"}
list := &TodoList{}
todos, _ := store.Load()
list.Load(todos)
assert.Equal(2, len(list.Data))
list.Delete(1)
assert.Equal(1, len(list.Data))
}
func TestComplete(t *testing.T) {
assert := assert.New(t)
store := &FileStore{FileLocation: "todos.json"}
list := &TodoList{}
todos, _ := store.Load()
list.Load(todos)
assert.Equal(false, list.FindById(1).Completed)
list.Complete(1)
assert.Equal(true, list.FindById(1).Completed)
}
func TestArchive(t *testing.T) {
assert := assert.New(t)
store := &FileStore{FileLocation: "todos.json"}
list := &TodoList{}
todos, _ := store.Load()
list.Load(todos)
assert.Equal(false, list.FindById(2).Archived)
list.Archive(2)
assert.Equal(true, list.FindById(2).Archived)
}
func TestUnarchive(t *testing.T) {
assert := assert.New(t)
store := &FileStore{FileLocation: "todos.json"}
list := &TodoList{}
todos, _ := store.Load()
list.Load(todos)
assert.Equal(true, list.FindById(1).Archived)
list.Unarchive(1)
assert.Equal(false, list.FindById(1).Archived)
}
func TestUncomplete(t *testing.T) {
assert := assert.New(t)
store := &FileStore{FileLocation: "todos.json"}
list := &TodoList{}
todos, _ := store.Load()
list.Load(todos)
assert.Equal(true, list.FindById(2).Completed)
list.Uncomplete(2)
assert.Equal(false, list.FindById(2).Completed)
}
|