git-bug/bug/op_create_test.go

70 lines
1.4 KiB
Go
Raw Normal View History

package bug
2018-07-12 22:31:41 +03:00
import (
2019-01-19 21:23:31 +03:00
"encoding/json"
2018-07-12 22:31:41 +03:00
"testing"
"time"
2018-11-21 20:56:12 +03:00
"github.com/MichaelMure/git-bug/identity"
"github.com/MichaelMure/git-bug/util/timestamp"
2019-01-19 21:23:31 +03:00
"github.com/stretchr/testify/assert"
2018-07-12 22:31:41 +03:00
)
func TestCreate(t *testing.T) {
snapshot := Snapshot{}
2018-07-12 22:31:41 +03:00
2019-02-16 19:32:30 +03:00
rene := identity.NewBare("René Descartes", "rene@descartes.fr")
unix := time.Now().Unix()
create := NewCreateOp(rene, unix, "title", "message", nil)
2018-07-12 22:31:41 +03:00
create.Apply(&snapshot)
2018-07-12 22:31:41 +03:00
id := create.Id()
assert.NoError(t, id.Validate())
comment := Comment{
id: id,
Author: rene,
Message: "message",
UnixTime: timestamp.Timestamp(create.UnixTime),
}
expected := Snapshot{
2018-07-12 22:31:41 +03:00
Title: "title",
Comments: []Comment{
comment,
2018-07-12 22:31:41 +03:00
},
Author: rene,
Participants: []identity.Interface{rene},
Actors: []identity.Interface{rene},
CreatedAt: create.Time(),
Timeline: []TimelineItem{
&CreateTimelineItem{
CommentTimelineItem: NewCommentTimelineItem(id, comment),
},
},
2018-07-12 22:31:41 +03:00
}
assert.Equal(t, expected, snapshot)
2018-07-12 22:31:41 +03:00
}
2019-01-19 21:23:31 +03:00
func TestCreateSerialize(t *testing.T) {
var rene = identity.NewBare("René Descartes", "rene@descartes.fr")
unix := time.Now().Unix()
before := NewCreateOp(rene, unix, "title", "message", nil)
data, err := json.Marshal(before)
assert.NoError(t, err)
var after CreateOperation
err = json.Unmarshal(data, &after)
assert.NoError(t, err)
// enforce creating the IDs
before.Id()
rene.Id()
2019-01-19 21:23:31 +03:00
assert.Equal(t, before, &after)
}