diff options
-rw-r--r-- | entities/bug/bug.go | 2 | ||||
-rw-r--r-- | entities/bug/op_add_comment_test.go | 9 | ||||
-rw-r--r-- | entities/bug/op_create_test.go | 8 | ||||
-rw-r--r-- | entities/bug/op_edit_comment_test.go | 9 | ||||
-rw-r--r-- | entities/bug/op_label_change_test.go | 13 | ||||
-rw-r--r-- | entities/bug/op_set_status_test.go | 5 | ||||
-rw-r--r-- | entities/bug/op_set_title_test.go | 5 | ||||
-rw-r--r-- | entities/bug/operation.go | 2 | ||||
-rw-r--r-- | entity/dag/common_test.go | 11 | ||||
-rw-r--r-- | entity/dag/entity.go | 4 | ||||
-rw-r--r-- | entity/dag/example_test.go | 6 | ||||
-rw-r--r-- | entity/dag/op_noop_test.go | 10 | ||||
-rw-r--r-- | entity/dag/op_set_metadata_test.go | 10 | ||||
-rw-r--r-- | entity/dag/operation_testing.go | 38 | ||||
-rw-r--r-- | entity/resolver.go | 12 |
15 files changed, 76 insertions, 68 deletions
diff --git a/entities/bug/bug.go b/entities/bug/bug.go index 4ce10c5b..1140c543 100644 --- a/entities/bug/bug.go +++ b/entities/bug/bug.go @@ -23,7 +23,7 @@ const formatVersion = 4 var def = dag.Definition{ Typename: "bug", Namespace: "bugs", - OperationUnmarshaler: operationUnmarshaller, + OperationUnmarshaler: operationUnmarshaler, FormatVersion: formatVersion, } diff --git a/entities/bug/op_add_comment_test.go b/entities/bug/op_add_comment_test.go index 6f29cb01..fee9e785 100644 --- a/entities/bug/op_add_comment_test.go +++ b/entities/bug/op_add_comment_test.go @@ -4,15 +4,16 @@ import ( "testing" "github.com/MichaelMure/git-bug/entities/identity" + "github.com/MichaelMure/git-bug/entity" "github.com/MichaelMure/git-bug/entity/dag" "github.com/MichaelMure/git-bug/repository" ) func TestAddCommentSerialize(t *testing.T) { - dag.SerializeRoundTripTest(t, func(author identity.Interface, unixTime int64) *AddCommentOperation { - return NewAddCommentOp(author, unixTime, "message", nil) + dag.SerializeRoundTripTest(t, operationUnmarshaler, func(author identity.Interface, unixTime int64) (*AddCommentOperation, entity.Resolvers) { + return NewAddCommentOp(author, unixTime, "message", nil), nil }) - dag.SerializeRoundTripTest(t, func(author identity.Interface, unixTime int64) *AddCommentOperation { - return NewAddCommentOp(author, unixTime, "message", []repository.Hash{"hash1", "hash2"}) + dag.SerializeRoundTripTest(t, operationUnmarshaler, func(author identity.Interface, unixTime int64) (*AddCommentOperation, entity.Resolvers) { + return NewAddCommentOp(author, unixTime, "message", []repository.Hash{"hash1", "hash2"}), nil }) } diff --git a/entities/bug/op_create_test.go b/entities/bug/op_create_test.go index e534162b..d8bde46f 100644 --- a/entities/bug/op_create_test.go +++ b/entities/bug/op_create_test.go @@ -40,10 +40,10 @@ func TestCreate(t *testing.T) { } func TestCreateSerialize(t *testing.T) { - dag.SerializeRoundTripTest(t, func(author identity.Interface, unixTime int64) *CreateOperation { - return NewCreateOp(author, unixTime, "title", "message", nil) + dag.SerializeRoundTripTest(t, operationUnmarshaler, func(author identity.Interface, unixTime int64) (*CreateOperation, entity.Resolvers) { + return NewCreateOp(author, unixTime, "title", "message", nil), nil }) - dag.SerializeRoundTripTest(t, func(author identity.Interface, unixTime int64) *CreateOperation { - return NewCreateOp(author, unixTime, "title", "message", []repository.Hash{"hash1", "hash2"}) + dag.SerializeRoundTripTest(t, operationUnmarshaler, func(author identity.Interface, unixTime int64) (*CreateOperation, entity.Resolvers) { + return NewCreateOp(author, unixTime, "title", "message", []repository.Hash{"hash1", "hash2"}), nil }) } diff --git a/entities/bug/op_edit_comment_test.go b/entities/bug/op_edit_comment_test.go index 1b649cd1..2ca1345e 100644 --- a/entities/bug/op_edit_comment_test.go +++ b/entities/bug/op_edit_comment_test.go @@ -7,6 +7,7 @@ import ( "github.com/stretchr/testify/require" "github.com/MichaelMure/git-bug/entities/identity" + "github.com/MichaelMure/git-bug/entity" "github.com/MichaelMure/git-bug/entity/dag" "github.com/MichaelMure/git-bug/repository" ) @@ -75,10 +76,10 @@ func TestEdit(t *testing.T) { } func TestEditCommentSerialize(t *testing.T) { - dag.SerializeRoundTripTest(t, func(author identity.Interface, unixTime int64) *EditCommentOperation { - return NewEditCommentOp(author, unixTime, "target", "message", nil) + dag.SerializeRoundTripTest(t, operationUnmarshaler, func(author identity.Interface, unixTime int64) (*EditCommentOperation, entity.Resolvers) { + return NewEditCommentOp(author, unixTime, "target", "message", nil), nil }) - dag.SerializeRoundTripTest(t, func(author identity.Interface, unixTime int64) *EditCommentOperation { - return NewEditCommentOp(author, unixTime, "target", "message", []repository.Hash{"hash1", "hash2"}) + dag.SerializeRoundTripTest(t, operationUnmarshaler, func(author identity.Interface, unixTime int64) (*EditCommentOperation, entity.Resolvers) { + return NewEditCommentOp(author, unixTime, "target", "message", []repository.Hash{"hash1", "hash2"}), nil }) } diff --git a/entities/bug/op_label_change_test.go b/entities/bug/op_label_change_test.go index edbe4714..e6dc8803 100644 --- a/entities/bug/op_label_change_test.go +++ b/entities/bug/op_label_change_test.go @@ -4,17 +4,18 @@ import ( "testing" "github.com/MichaelMure/git-bug/entities/identity" + "github.com/MichaelMure/git-bug/entity" "github.com/MichaelMure/git-bug/entity/dag" ) func TestLabelChangeSerialize(t *testing.T) { - dag.SerializeRoundTripTest(t, func(author identity.Interface, unixTime int64) *LabelChangeOperation { - return NewLabelChangeOperation(author, unixTime, []Label{"added"}, []Label{"removed"}) + dag.SerializeRoundTripTest(t, operationUnmarshaler, func(author identity.Interface, unixTime int64) (*LabelChangeOperation, entity.Resolvers) { + return NewLabelChangeOperation(author, unixTime, []Label{"added"}, []Label{"removed"}), nil }) - dag.SerializeRoundTripTest(t, func(author identity.Interface, unixTime int64) *LabelChangeOperation { - return NewLabelChangeOperation(author, unixTime, []Label{"added"}, nil) + dag.SerializeRoundTripTest(t, operationUnmarshaler, func(author identity.Interface, unixTime int64) (*LabelChangeOperation, entity.Resolvers) { + return NewLabelChangeOperation(author, unixTime, []Label{"added"}, nil), nil }) - dag.SerializeRoundTripTest(t, func(author identity.Interface, unixTime int64) *LabelChangeOperation { - return NewLabelChangeOperation(author, unixTime, nil, []Label{"removed"}) + dag.SerializeRoundTripTest(t, operationUnmarshaler, func(author identity.Interface, unixTime int64) (*LabelChangeOperation, entity.Resolvers) { + return NewLabelChangeOperation(author, unixTime, nil, []Label{"removed"}), nil }) } diff --git a/entities/bug/op_set_status_test.go b/entities/bug/op_set_status_test.go index 5bb30265..0f6d358a 100644 --- a/entities/bug/op_set_status_test.go +++ b/entities/bug/op_set_status_test.go @@ -5,11 +5,12 @@ import ( "github.com/MichaelMure/git-bug/entities/common" "github.com/MichaelMure/git-bug/entities/identity" + "github.com/MichaelMure/git-bug/entity" "github.com/MichaelMure/git-bug/entity/dag" ) func TestSetStatusSerialize(t *testing.T) { - dag.SerializeRoundTripTest(t, func(author identity.Interface, unixTime int64) *SetStatusOperation { - return NewSetStatusOp(author, unixTime, common.ClosedStatus) + dag.SerializeRoundTripTest(t, operationUnmarshaler, func(author identity.Interface, unixTime int64) (*SetStatusOperation, entity.Resolvers) { + return NewSetStatusOp(author, unixTime, common.ClosedStatus), nil }) } diff --git a/entities/bug/op_set_title_test.go b/entities/bug/op_set_title_test.go index 7960ec4f..82425ab4 100644 --- a/entities/bug/op_set_title_test.go +++ b/entities/bug/op_set_title_test.go @@ -4,11 +4,12 @@ import ( "testing" "github.com/MichaelMure/git-bug/entities/identity" + "github.com/MichaelMure/git-bug/entity" "github.com/MichaelMure/git-bug/entity/dag" ) func TestSetTitleSerialize(t *testing.T) { - dag.SerializeRoundTripTest(t, func(author identity.Interface, unixTime int64) *SetTitleOperation { - return NewSetTitleOp(author, unixTime, "title", "was") + dag.SerializeRoundTripTest(t, operationUnmarshaler, func(author identity.Interface, unixTime int64) (*SetTitleOperation, entity.Resolvers) { + return NewSetTitleOp(author, unixTime, "title", "was"), nil }) } diff --git a/entities/bug/operation.go b/entities/bug/operation.go index a02fc780..41d80700 100644 --- a/entities/bug/operation.go +++ b/entities/bug/operation.go @@ -32,7 +32,7 @@ type Operation interface { var _ Operation = &dag.NoOpOperation[*Snapshot]{} var _ Operation = &dag.SetMetadataOperation[*Snapshot]{} -func operationUnmarshaller(raw json.RawMessage, resolvers entity.Resolvers) (dag.Operation, error) { +func operationUnmarshaler(raw json.RawMessage, resolvers entity.Resolvers) (dag.Operation, error) { var t struct { OperationType dag.OperationType `json:"type"` } diff --git a/entity/dag/common_test.go b/entity/dag/common_test.go index 713d0734..f78b09e9 100644 --- a/entity/dag/common_test.go +++ b/entity/dag/common_test.go @@ -141,16 +141,7 @@ func makeTestContextInternal(repo repository.ClockedRepo) (identity.Interface, i } resolvers := entity.Resolvers{ - &identity.Identity{}: entity.ResolverFunc(func(id entity.Id) (entity.Interface, error) { - switch id { - case id1.Id(): - return id1, nil - case id2.Id(): - return id2, nil - default: - return nil, identity.ErrIdentityNotExist - } - }), + &identity.Identity{}: entity.MakeResolver(id1, id2), } def := Definition{ diff --git a/entity/dag/entity.go b/entity/dag/entity.go index f9b55bd4..8b561274 100644 --- a/entity/dag/entity.go +++ b/entity/dag/entity.go @@ -19,6 +19,8 @@ const refsPattern = "refs/%s/%s" const creationClockPattern = "%s-create" const editClockPattern = "%s-edit" +type OperationUnmarshaler func(raw json.RawMessage, resolver entity.Resolvers) (Operation, error) + // Definition hold the details defining one specialization of an Entity. type Definition struct { // the name of the entity (bug, pull-request, ...), for human consumption @@ -26,7 +28,7 @@ type Definition struct { // the Namespace in git references (bugs, prs, ...) Namespace string // a function decoding a JSON message into an Operation - OperationUnmarshaler func(raw json.RawMessage, resolver entity.Resolvers) (Operation, error) + OperationUnmarshaler OperationUnmarshaler // the expected format version number, that can be used for data migration/upgrade FormatVersion uint } diff --git a/entity/dag/example_test.go b/entity/dag/example_test.go index 9c6a4a62..b1511dc6 100644 --- a/entity/dag/example_test.go +++ b/entity/dag/example_test.go @@ -208,13 +208,13 @@ func NewProjectConfig() *ProjectConfig { var def = dag.Definition{ Typename: "project config", Namespace: "conf", - OperationUnmarshaler: operationUnmarshaller, + OperationUnmarshaler: operationUnmarshaler, FormatVersion: 1, } -// operationUnmarshaller is a function doing the de-serialization of the JSON data into our own +// operationUnmarshaler is a function doing the de-serialization of the JSON data into our own // concrete Operations. If needed, we can use the resolver to connect to other entities. -func operationUnmarshaller(raw json.RawMessage, resolvers entity.Resolvers) (dag.Operation, error) { +func operationUnmarshaler(raw json.RawMessage, resolvers entity.Resolvers) (dag.Operation, error) { var t struct { OperationType dag.OperationType `json:"type"` } diff --git a/entity/dag/op_noop_test.go b/entity/dag/op_noop_test.go index c7710b83..61497b5b 100644 --- a/entity/dag/op_noop_test.go +++ b/entity/dag/op_noop_test.go @@ -1,13 +1,19 @@ package dag import ( + "encoding/json" "testing" "github.com/MichaelMure/git-bug/entities/identity" + "github.com/MichaelMure/git-bug/entity" ) func TestNoopSerialize(t *testing.T) { - SerializeRoundTripTest(t, func(author identity.Interface, unixTime int64) *NoOpOperation[*snapshotMock] { - return NewNoOpOp[*snapshotMock](1, author, unixTime) + SerializeRoundTripTest(t, func(raw json.RawMessage, resolver entity.Resolvers) (Operation, error) { + var op NoOpOperation[*snapshotMock] + err := json.Unmarshal(raw, &op) + return &op, err + }, func(author identity.Interface, unixTime int64) (*NoOpOperation[*snapshotMock], entity.Resolvers) { + return NewNoOpOp[*snapshotMock](1, author, unixTime), nil }) } diff --git a/entity/dag/op_set_metadata_test.go b/entity/dag/op_set_metadata_test.go index 49603021..f4f20e8e 100644 --- a/entity/dag/op_set_metadata_test.go +++ b/entity/dag/op_set_metadata_test.go @@ -1,10 +1,12 @@ package dag import ( + "encoding/json" "testing" "time" "github.com/MichaelMure/git-bug/entities/identity" + "github.com/MichaelMure/git-bug/entity" "github.com/MichaelMure/git-bug/repository" "github.com/stretchr/testify/require" @@ -97,10 +99,14 @@ func TestSetMetadata(t *testing.T) { } func TestSetMetadataSerialize(t *testing.T) { - SerializeRoundTripTest(t, func(author identity.Interface, unixTime int64) *SetMetadataOperation[*snapshotMock] { + SerializeRoundTripTest(t, func(raw json.RawMessage, resolver entity.Resolvers) (Operation, error) { + var op SetMetadataOperation[*snapshotMock] + err := json.Unmarshal(raw, &op) + return &op, err + }, func(author identity.Interface, unixTime int64) (*SetMetadataOperation[*snapshotMock], entity.Resolvers) { return NewSetMetadataOp[*snapshotMock](1, author, unixTime, "message", map[string]string{ "key1": "value1", "key2": "value2", - }) + }), nil }) } diff --git a/entity/dag/operation_testing.go b/entity/dag/operation_testing.go index 6ebdcae8..0ca47d4b 100644 --- a/entity/dag/operation_testing.go +++ b/entity/dag/operation_testing.go @@ -14,44 +14,30 @@ import ( // SerializeRoundTripTest realize a marshall/unmarshall round-trip in the same condition as with OperationPack, // and check if the recovered operation is identical. -func SerializeRoundTripTest[OpT Operation](t *testing.T, maker func(author identity.Interface, unixTime int64) OpT) { +func SerializeRoundTripTest[OpT Operation]( + t *testing.T, + unmarshaler OperationUnmarshaler, + maker func(author identity.Interface, unixTime int64) (OpT, entity.Resolvers), +) { repo := repository.NewMockRepo() rene, err := identity.NewIdentity(repo, "René Descartes", "rene@descartes.fr") require.NoError(t, err) - op := maker(rene, time.Now().Unix()) + op, resolvers := maker(rene, time.Now().Unix()) // enforce having an id op.Id() - rdt := &roundTripper[OpT]{Before: op, author: rene} - - data, err := json.Marshal(rdt) + data, err := json.Marshal(op) require.NoError(t, err) - err = json.Unmarshal(data, &rdt) + after, err := unmarshaler(data, resolvers) require.NoError(t, err) - require.Equal(t, op, rdt.after) -} - -type roundTripper[OpT Operation] struct { - Before OpT - author identity.Interface - after OpT -} - -func (r *roundTripper[OpT]) MarshalJSON() ([]byte, error) { - return json.Marshal(r.Before) -} - -func (r *roundTripper[OpT]) UnmarshalJSON(data []byte) error { - if err := json.Unmarshal(data, &r.after); err != nil { - return err - } // Set the id from the serialized data - r.after.setId(entity.DeriveId(data)) + after.setId(entity.DeriveId(data)) // Set the author, as OperationPack would do - r.after.setAuthor(r.author) - return nil + after.setAuthor(rene) + + require.Equal(t, op, after) } diff --git a/entity/resolver.go b/entity/resolver.go index d4fe5d3e..b2f831d7 100644 --- a/entity/resolver.go +++ b/entity/resolver.go @@ -72,3 +72,15 @@ type ResolverFunc func(id Id) (Interface, error) func (fn ResolverFunc) Resolve(id Id) (Interface, error) { return fn(id) } + +// MakeResolver create a resolver able to return the given entities. +func MakeResolver(entities ...Interface) Resolver { + return ResolverFunc(func(id Id) (Interface, error) { + for _, entity := range entities { + if entity.Id() == id { + return entity, nil + } + } + return nil, fmt.Errorf("entity not found") + }) +} |