2018-09-28 21:39:39 +03:00
|
|
|
package bug
|
2018-07-13 17:48:55 +03:00
|
|
|
|
|
|
|
import (
|
2018-09-15 14:15:00 +03:00
|
|
|
"github.com/MichaelMure/git-bug/repository"
|
2018-09-28 21:39:39 +03:00
|
|
|
"github.com/go-test/deep"
|
2018-09-15 14:15:00 +03:00
|
|
|
|
2018-07-13 17:48:55 +03:00
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
2018-07-13 18:07:24 +03:00
|
|
|
func TestBugId(t *testing.T) {
|
2018-09-15 14:15:00 +03:00
|
|
|
mockRepo := repository.NewMockRepoForTest()
|
|
|
|
|
2018-09-28 21:39:39 +03:00
|
|
|
bug1 := NewBug()
|
2018-07-13 17:48:55 +03:00
|
|
|
|
2018-07-19 18:58:15 +03:00
|
|
|
bug1.Append(createOp)
|
|
|
|
|
2018-07-19 19:34:25 +03:00
|
|
|
err := bug1.Commit(mockRepo)
|
2018-07-19 18:58:15 +03:00
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
2018-07-13 18:07:24 +03:00
|
|
|
}
|
2018-07-19 18:58:15 +03:00
|
|
|
|
|
|
|
bug1.Id()
|
2018-07-13 18:07:24 +03:00
|
|
|
}
|
2018-07-13 17:48:55 +03:00
|
|
|
|
2018-07-13 18:07:24 +03:00
|
|
|
func TestBugValidity(t *testing.T) {
|
2018-09-15 14:15:00 +03:00
|
|
|
mockRepo := repository.NewMockRepoForTest()
|
|
|
|
|
2018-09-28 21:39:39 +03:00
|
|
|
bug1 := NewBug()
|
2018-07-13 17:48:55 +03:00
|
|
|
|
2018-09-15 14:15:00 +03:00
|
|
|
if bug1.Validate() == nil {
|
2018-07-13 17:48:55 +03:00
|
|
|
t.Fatal("Empty bug should be invalid")
|
|
|
|
}
|
|
|
|
|
|
|
|
bug1.Append(createOp)
|
|
|
|
|
2018-09-15 14:15:00 +03:00
|
|
|
if bug1.Validate() != nil {
|
2018-07-17 20:28:37 +03:00
|
|
|
t.Fatal("Bug with just a CreateOp should be valid")
|
2018-07-13 17:48:55 +03:00
|
|
|
}
|
|
|
|
|
2018-07-19 19:34:25 +03:00
|
|
|
err := bug1.Commit(mockRepo)
|
2018-07-19 18:58:15 +03:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2018-07-13 17:48:55 +03:00
|
|
|
|
2018-09-15 14:15:00 +03:00
|
|
|
bug1.Append(createOp)
|
|
|
|
|
|
|
|
if bug1.Validate() == nil {
|
2018-07-17 20:28:37 +03:00
|
|
|
t.Fatal("Bug with multiple CreateOp should be invalid")
|
2018-07-13 17:48:55 +03:00
|
|
|
}
|
2018-09-15 14:15:00 +03:00
|
|
|
|
|
|
|
err = bug1.Commit(mockRepo)
|
|
|
|
if err == nil {
|
|
|
|
t.Fatal("Invalid bug should not commit")
|
|
|
|
}
|
2018-07-13 17:48:55 +03:00
|
|
|
}
|
2018-07-14 23:17:37 +03:00
|
|
|
|
2018-09-28 21:39:39 +03:00
|
|
|
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
|
2018-09-29 00:51:47 +03:00
|
|
|
for i := range bug1.packs[0].Operations {
|
|
|
|
bug2.packs[0].Operations[i].base().hash = bug1.packs[0].Operations[i].base().hash
|
|
|
|
}
|
2018-09-28 21:39:39 +03:00
|
|
|
|
|
|
|
deep.CompareUnexportedFields = true
|
|
|
|
if diff := deep.Equal(bug1, bug2); diff != nil {
|
|
|
|
t.Fatal(diff)
|
|
|
|
}
|
|
|
|
}
|