blob: 2fb79be5860dd9f20aa7801f97b632188059ac75 (
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
package tests
import (
"github.com/MichaelMure/git-bug/bug"
"github.com/MichaelMure/git-bug/repository"
"reflect"
"testing"
)
func TestBugId(t *testing.T) {
bug1, err := bug.NewBug()
if err != nil {
t.Error(err)
}
if len(bug1.Id()) == 0 {
t.Fatal("Bug doesn't have a human readable identifier")
}
}
func TestBugValidity(t *testing.T) {
bug1, err := bug.NewBug()
if err != nil {
t.Error(err)
}
if bug1.IsValid() {
t.Fatal("Empty bug should be invalid")
}
bug1.Append(createOp)
if !bug1.IsValid() {
t.Fatal("Bug with just a CREATE should be valid")
}
bug1.Append(createOp)
if bug1.IsValid() {
t.Fatal("Bug with multiple CREATE should be invalid")
}
bug1.Commit(mockRepo)
if bug1.IsValid() {
t.Fatal("Bug with multiple CREATE should be invalid")
}
}
func TestBugSerialisation(t *testing.T) {
bug1, err := bug.NewBug()
if err != nil {
t.Error(err)
}
bug1.Append(createOp)
bug1.Append(setTitleOp)
bug1.Append(setTitleOp)
bug1.Append(addCommentOp)
repo := repository.NewMockRepoForTest()
bug1.Commit(repo)
bug2, err := bug.ReadBug(repo, bug1.Id())
if err != nil {
t.Error(err)
}
if !reflect.DeepEqual(bug1, bug2) {
t.Fatalf("%s different than %s", bug1, bug2)
}
}
|