aboutsummaryrefslogtreecommitdiffstats
path: root/bug/bug_test.go
blob: 6504da1a0a7f3d0a298eefaea92c2f83f181c701 (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
74
75
76
77
78
79
80
81
82
83
84
85
package bug

import (
	"github.com/MichaelMure/git-bug/repository"
	"github.com/go-test/deep"

	"testing"
)

func TestBugId(t *testing.T) {
	mockRepo := repository.NewMockRepoForTest()

	bug1 := NewBug()

	bug1.Append(createOp)

	err := bug1.Commit(mockRepo)

	if err != nil {
		t.Fatal(err)
	}

	bug1.Id()
}

func TestBugValidity(t *testing.T) {
	mockRepo := repository.NewMockRepoForTest()

	bug1 := NewBug()

	if bug1.Validate() == nil {
		t.Fatal("Empty bug should be invalid")
	}

	bug1.Append(createOp)

	if bug1.Validate() != nil {
		t.Fatal("Bug with just a CreateOp should be valid")
	}

	err := bug1.Commit(mockRepo)
	if err != nil {
		t.Fatal(err)
	}

	bug1.Append(createOp)

	if bug1.Validate() == nil {
		t.Fatal("Bug with multiple CreateOp should be invalid")
	}

	err = bug1.Commit(mockRepo)
	if err == nil {
		t.Fatal("Invalid bug should not commit")
	}
}

func TestBugSerialisation(t *testing.T) {
	bug1 := NewBug()

	bug1.Append(createOp)
	bug1.Append(setTitleOp)
	bug1.Append(setTitleOp)
	bug1.Append(addCommentOp)

	repo := repository.NewMockRepoForTest()

	bug1.Commit(repo)

	bug2, err := ReadLocalBug(repo, bug1.Id())
	if err != nil {
		t.Error(err)
	}

	// ignore some fields
	bug2.packs[0].commitHash = bug1.packs[0].commitHash
	for i := range bug1.packs[0].Operations {
		bug2.packs[0].Operations[i].base().hash = bug1.packs[0].Operations[i].base().hash
	}

	deep.CompareUnexportedFields = true
	if diff := deep.Equal(bug1, bug2); diff != nil {
		t.Fatal(diff)
	}
}