2018-09-29 21:41:19 +03:00
|
|
|
package bug
|
|
|
|
|
|
|
|
import (
|
2019-01-19 21:23:31 +03:00
|
|
|
"encoding/json"
|
2018-09-29 21:41:19 +03:00
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
2019-01-19 21:23:31 +03:00
|
|
|
"github.com/stretchr/testify/assert"
|
2019-02-16 19:32:30 +03:00
|
|
|
"github.com/stretchr/testify/require"
|
2019-04-14 15:12:44 +03:00
|
|
|
|
|
|
|
"github.com/MichaelMure/git-bug/identity"
|
2020-07-01 21:00:53 +03:00
|
|
|
"github.com/MichaelMure/git-bug/repository"
|
2018-09-29 21:41:19 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestEdit(t *testing.T) {
|
|
|
|
snapshot := Snapshot{}
|
|
|
|
|
2020-11-08 19:54:28 +03:00
|
|
|
repo := repository.NewMockRepo()
|
2020-07-01 21:00:53 +03:00
|
|
|
rene := identity.NewIdentity("René Descartes", "rene@descartes.fr")
|
|
|
|
err := rene.Commit(repo)
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
2018-09-29 21:41:19 +03:00
|
|
|
unix := time.Now().Unix()
|
|
|
|
|
|
|
|
create := NewCreateOp(rene, unix, "title", "create", nil)
|
|
|
|
create.Apply(&snapshot)
|
|
|
|
|
2019-08-11 15:08:03 +03:00
|
|
|
id1 := create.Id()
|
|
|
|
require.NoError(t, id1.Validate())
|
2018-09-29 21:41:19 +03:00
|
|
|
|
2019-04-14 15:12:44 +03:00
|
|
|
comment1 := NewAddCommentOp(rene, unix, "comment 1", nil)
|
|
|
|
comment1.Apply(&snapshot)
|
|
|
|
|
2019-08-11 15:08:03 +03:00
|
|
|
id2 := comment1.Id()
|
|
|
|
require.NoError(t, id2.Validate())
|
2019-04-14 15:12:44 +03:00
|
|
|
|
|
|
|
// add another unrelated op in between
|
|
|
|
setTitle := NewSetTitleOp(rene, unix, "edited title", "title")
|
|
|
|
setTitle.Apply(&snapshot)
|
2018-09-29 21:41:19 +03:00
|
|
|
|
2019-04-14 15:12:44 +03:00
|
|
|
comment2 := NewAddCommentOp(rene, unix, "comment 2", nil)
|
|
|
|
comment2.Apply(&snapshot)
|
|
|
|
|
2019-08-11 15:08:03 +03:00
|
|
|
id3 := comment2.Id()
|
|
|
|
require.NoError(t, id3.Validate())
|
2018-09-29 21:41:19 +03:00
|
|
|
|
2019-08-11 15:08:03 +03:00
|
|
|
edit := NewEditCommentOp(rene, unix, id1, "create edited", nil)
|
2018-09-29 21:41:19 +03:00
|
|
|
edit.Apply(&snapshot)
|
|
|
|
|
2019-04-14 15:12:44 +03:00
|
|
|
assert.Equal(t, len(snapshot.Timeline), 4)
|
2018-09-29 21:41:19 +03:00
|
|
|
assert.Equal(t, len(snapshot.Timeline[0].(*CreateTimelineItem).History), 2)
|
2018-09-30 18:15:54 +03:00
|
|
|
assert.Equal(t, len(snapshot.Timeline[1].(*AddCommentTimelineItem).History), 1)
|
2019-04-14 15:12:44 +03:00
|
|
|
assert.Equal(t, len(snapshot.Timeline[3].(*AddCommentTimelineItem).History), 1)
|
2018-09-29 21:41:19 +03:00
|
|
|
assert.Equal(t, snapshot.Comments[0].Message, "create edited")
|
2019-04-14 15:12:44 +03:00
|
|
|
assert.Equal(t, snapshot.Comments[1].Message, "comment 1")
|
|
|
|
assert.Equal(t, snapshot.Comments[2].Message, "comment 2")
|
2018-09-29 21:41:19 +03:00
|
|
|
|
2019-08-11 15:08:03 +03:00
|
|
|
edit2 := NewEditCommentOp(rene, unix, id2, "comment 1 edited", nil)
|
2018-09-29 21:41:19 +03:00
|
|
|
edit2.Apply(&snapshot)
|
|
|
|
|
2019-04-14 15:12:44 +03:00
|
|
|
assert.Equal(t, len(snapshot.Timeline), 4)
|
|
|
|
assert.Equal(t, len(snapshot.Timeline[0].(*CreateTimelineItem).History), 2)
|
|
|
|
assert.Equal(t, len(snapshot.Timeline[1].(*AddCommentTimelineItem).History), 2)
|
|
|
|
assert.Equal(t, len(snapshot.Timeline[3].(*AddCommentTimelineItem).History), 1)
|
|
|
|
assert.Equal(t, snapshot.Comments[0].Message, "create edited")
|
|
|
|
assert.Equal(t, snapshot.Comments[1].Message, "comment 1 edited")
|
|
|
|
assert.Equal(t, snapshot.Comments[2].Message, "comment 2")
|
|
|
|
|
2019-08-11 15:08:03 +03:00
|
|
|
edit3 := NewEditCommentOp(rene, unix, id3, "comment 2 edited", nil)
|
2019-04-14 15:12:44 +03:00
|
|
|
edit3.Apply(&snapshot)
|
|
|
|
|
|
|
|
assert.Equal(t, len(snapshot.Timeline), 4)
|
2018-09-29 21:41:19 +03:00
|
|
|
assert.Equal(t, len(snapshot.Timeline[0].(*CreateTimelineItem).History), 2)
|
2018-09-30 18:15:54 +03:00
|
|
|
assert.Equal(t, len(snapshot.Timeline[1].(*AddCommentTimelineItem).History), 2)
|
2019-04-14 15:12:44 +03:00
|
|
|
assert.Equal(t, len(snapshot.Timeline[3].(*AddCommentTimelineItem).History), 2)
|
2018-09-29 21:41:19 +03:00
|
|
|
assert.Equal(t, snapshot.Comments[0].Message, "create edited")
|
2019-04-14 15:12:44 +03:00
|
|
|
assert.Equal(t, snapshot.Comments[1].Message, "comment 1 edited")
|
|
|
|
assert.Equal(t, snapshot.Comments[2].Message, "comment 2 edited")
|
2018-09-29 21:41:19 +03:00
|
|
|
}
|
2019-01-19 21:23:31 +03:00
|
|
|
|
|
|
|
func TestEditCommentSerialize(t *testing.T) {
|
2020-11-08 19:54:28 +03:00
|
|
|
repo := repository.NewMockRepo()
|
2020-07-01 21:00:53 +03:00
|
|
|
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 := NewEditCommentOp(rene, unix, "target", "message", nil)
|
|
|
|
|
|
|
|
data, err := json.Marshal(before)
|
|
|
|
assert.NoError(t, err)
|
|
|
|
|
|
|
|
var after EditCommentOperation
|
|
|
|
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)
|
|
|
|
}
|