mirror of
https://github.com/MichaelMure/git-bug.git
synced 2024-12-15 18:23:08 +03:00
2a5fbc4dc9
Append operations authors to each list on Apply() call Expose actors and participants in graphql Add actor/participant query filter and documentation
66 lines
1.4 KiB
Go
66 lines
1.4 KiB
Go
package bug
|
|
|
|
import (
|
|
"encoding/json"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/MichaelMure/git-bug/identity"
|
|
"github.com/MichaelMure/git-bug/util/timestamp"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestCreate(t *testing.T) {
|
|
snapshot := Snapshot{}
|
|
|
|
rene := identity.NewBare("René Descartes", "rene@descartes.fr")
|
|
unix := time.Now().Unix()
|
|
|
|
create := NewCreateOp(rene, unix, "title", "message", nil)
|
|
|
|
create.Apply(&snapshot)
|
|
|
|
hash, err := create.Hash()
|
|
assert.NoError(t, err)
|
|
|
|
comment := Comment{
|
|
id: string(hash),
|
|
Author: rene,
|
|
Message: "message",
|
|
UnixTime: timestamp.Timestamp(create.UnixTime),
|
|
}
|
|
|
|
expected := Snapshot{
|
|
Title: "title",
|
|
Comments: []Comment{
|
|
comment,
|
|
},
|
|
Author: rene,
|
|
Participants: []identity.Interface{rene},
|
|
Actors: []identity.Interface{rene},
|
|
CreatedAt: create.Time(),
|
|
Timeline: []TimelineItem{
|
|
&CreateTimelineItem{
|
|
CommentTimelineItem: NewCommentTimelineItem(hash, comment),
|
|
},
|
|
},
|
|
}
|
|
|
|
assert.Equal(t, expected, snapshot)
|
|
}
|
|
|
|
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)
|
|
|
|
assert.Equal(t, before, &after)
|
|
}
|