aboutsummaryrefslogblamecommitdiffstats
path: root/bug/op_label_change_test.go
blob: 40dc4f0dcd28eaba2948f02ba21d4a745b267066 (plain) (tree)
1
2
3
4
5
6
7
8
9






                       

                                             
                                                 
                                                   


                                             
                                        

                                                                                       

                               



                                                                                           
                               


                                          
                               
 
                                  
                   

                                                        

                                                        
 
                                        
 
package bug

import (
	"encoding/json"
	"testing"
	"time"

	"github.com/stretchr/testify/require"

	"github.com/MichaelMure/git-bug/identity"
	"github.com/MichaelMure/git-bug/repository"
)

func TestLabelChangeSerialize(t *testing.T) {
	repo := repository.NewMockRepo()

	rene, err := identity.NewIdentity(repo, "René Descartes", "rene@descartes.fr")
	require.NoError(t, err)

	unix := time.Now().Unix()
	before := NewLabelChangeOperation(rene, unix, []Label{"added"}, []Label{"removed"})

	data, err := json.Marshal(before)
	require.NoError(t, err)

	var after LabelChangeOperation
	err = json.Unmarshal(data, &after)
	require.NoError(t, err)

	// enforce creating the ID
	before.Id()

	// Replace the identity stub with the real thing
	require.Equal(t, rene.Id(), after.Author().Id())
	after.Author_ = rene

	require.Equal(t, before, &after)
}