aboutsummaryrefslogblamecommitdiffstats
path: root/tests/bug_test.go
blob: ab7803f90a86755a2752fc4fcde2ab0247dedcc9 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
             


                                            


                 



                                 

         



                                                                       
 
                                    
                                 



















                                                                     
                             




                                                                     
package tests

import (
	"github.com/MichaelMure/git-bug/bug"
	"testing"
)

func TestBugId(t *testing.T) {
	bug1, err := bug.NewBug()
	if err != nil {
		t.Error(err)
	}

	if len(bug1.HumanId()) == 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")
	}
}