git-bug/bug/op_label_change_test.go

39 lines
851 B
Go
Raw Normal View History

2019-01-19 21:23:31 +03:00
package bug
import (
"encoding/json"
"testing"
"time"
"github.com/stretchr/testify/require"
2019-01-19 21:23:31 +03:00
"github.com/MichaelMure/git-bug/identity"
"github.com/MichaelMure/git-bug/repository"
2019-01-19 21:23:31 +03:00
)
func TestLabelChangeSerialize(t *testing.T) {
repo := repository.NewMockRepo()
rene, err := identity.NewIdentity(repo, "René Descartes", "rene@descartes.fr")
require.NoError(t, err)
2019-01-19 21:23:31 +03:00
unix := time.Now().Unix()
before := NewLabelChangeOperation(rene, unix, []Label{"added"}, []Label{"removed"})
data, err := json.Marshal(before)
require.NoError(t, err)
2019-01-19 21:23:31 +03:00
var after LabelChangeOperation
err = json.Unmarshal(data, &after)
require.NoError(t, err)
2019-01-19 21:23:31 +03:00
// enforce creating the ID
before.Id()
// Replace the identity stub with the real thing
require.Equal(t, rene.Id(), after.base().Author.Id())
after.Author = rene
require.Equal(t, before, &after)
2019-01-19 21:23:31 +03:00
}