2019-01-19 21:23:31 +03:00
|
|
|
package bug
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
2020-07-01 21:00:53 +03:00
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
|
2019-01-19 21:23:31 +03:00
|
|
|
"github.com/MichaelMure/git-bug/identity"
|
2020-07-01 21:00:53 +03:00
|
|
|
"github.com/MichaelMure/git-bug/repository"
|
|
|
|
|
2019-01-19 21:23:31 +03:00
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestSetStatusSerialize(t *testing.T) {
|
2020-07-01 21:00:53 +03:00
|
|
|
repo := repository.NewMockRepoForTest()
|
|
|
|
rene := identity.NewIdentity("René Descartes", "rene@descartes.fr")
|
|
|
|
err := rene.Commit(repo)
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
2019-01-19 21:23:31 +03:00
|
|
|
unix := time.Now().Unix()
|
|
|
|
before := NewSetStatusOp(rene, unix, ClosedStatus)
|
|
|
|
|
|
|
|
data, err := json.Marshal(before)
|
|
|
|
assert.NoError(t, err)
|
|
|
|
|
|
|
|
var after SetStatusOperation
|
|
|
|
err = json.Unmarshal(data, &after)
|
|
|
|
assert.NoError(t, err)
|
|
|
|
|
2020-07-01 21:00:53 +03:00
|
|
|
// enforce creating the ID
|
2019-08-11 15:08:03 +03:00
|
|
|
before.Id()
|
2020-07-01 21:00:53 +03:00
|
|
|
|
|
|
|
// Replace the identity stub with the real thing
|
|
|
|
assert.Equal(t, rene.Id(), after.base().Author.Id())
|
|
|
|
after.Author = rene
|
2019-08-07 16:31:38 +03:00
|
|
|
|
2019-01-19 21:23:31 +03:00
|
|
|
assert.Equal(t, before, &after)
|
|
|
|
}
|