aboutsummaryrefslogtreecommitdiffstats
path: root/todolist/file_store_test.go
blob: d71c119e1b4364ed14418f69b7f3018bcb6a3784 (plain)
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
package todolist

import (
	"testing"

	"github.com/stretchr/testify/assert"
)

func TestFileStore(t *testing.T) {
	assert := assert.New(t)
	store := &FileStore{FileLocation: "todos.json"}
	store.Load()
	assert.Equal(store.Data[0].Subject, "this is the first subject", "")
}

func TestSave(t *testing.T) {
	store := &FileStore{FileLocation: "todos.json"}
	store.Load()
	store.Save()
}

func TestNextId(t *testing.T) {
	assert := assert.New(t)
	store := &FileStore{FileLocation: "todos.json"}
	store.Load()
	assert.Equal(3, store.NextId())
}

func TestIndexOf(t *testing.T) {
	assert := assert.New(t)
	todo := &Todo{Subject: "Grant"}
	store := &FileStore{FileLocation: "todos.json"}
	store.Load()

	assert.Equal(-1, store.IndexOf(todo))
	assert.Equal(0, store.IndexOf(&store.Data[0]))
}

func TestDelete(t *testing.T) {
	assert := assert.New(t)
	store := &FileStore{FileLocation: "todos.json"}
	store.Load()
	assert.Equal(2, len(store.Data))
	store.Delete(1)
	assert.Equal(1, len(store.Data))
}