aboutsummaryrefslogtreecommitdiffstats
path: root/bug/op_set_status_test.go
blob: 83ff22aef648e2bd6c78fc39ed2204d4340e41af (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
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 TestSetStatusSerialize(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 := NewSetStatusOp(rene, unix, ClosedStatus)

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

	var after SetStatusOperation
	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)
}