## Description Closes: #10729 Includes: * table, auto-increment table, and singleton `Table` implementations * primary key, index and unique index `Index` implementations * store wrappers based on tm-db but that could be retargeted to the new ADR 040 db which separate index and commitment stores, with a debug wrapper * streaming JSON import and export * full logical decoding (and encoding) --- ### Author Checklist *All items are required. Please add a note to the item if the item is not applicable and please add links to any relevant follow up issues.* I have... - [x] included the correct [type prefix](https://github.com/commitizen/conventional-commit-types/blob/v3.0.0/index.json) in the PR title - [ ] added `!` to the type prefix if API or client breaking change - [x] targeted the correct branch (see [PR Targeting](https://github.com/cosmos/cosmos-sdk/blob/master/CONTRIBUTING.md#pr-targeting)) - [x] provided a link to the relevant issue or specification - [ ] followed the guidelines for [building modules](https://github.com/cosmos/cosmos-sdk/blob/master/docs/building-modules) - [x] included the necessary unit and integration [tests](https://github.com/cosmos/cosmos-sdk/blob/master/CONTRIBUTING.md#testing) - [ ] added a changelog entry to `CHANGELOG.md` - [x] included comments for [documenting Go code](https://blog.golang.org/godoc) - [x] updated the relevant documentation or specification - [x] reviewed "Files changed" and left comments if necessary - [ ] confirmed all CI checks have passed ### Reviewers Checklist *All items are required. Please add a note if the item is not applicable and please add your handle next to the items reviewed if you only reviewed selected items.* I have... - [ ] confirmed the correct [type prefix](https://github.com/commitizen/conventional-commit-types/blob/v3.0.0/index.json) in the PR title - [ ] confirmed `!` in the type prefix if API or client breaking change - [ ] confirmed all author checklist items have been addressed - [ ] reviewed state machine logic - [ ] reviewed API design and naming - [ ] reviewed documentation is accurate - [ ] reviewed tests and test coverage - [ ] manually tested (if applicable)
61 lines
1.8 KiB
Go
61 lines
1.8 KiB
Go
package ormkv_test
|
|
|
|
import (
|
|
"bytes"
|
|
"fmt"
|
|
"testing"
|
|
|
|
"google.golang.org/protobuf/proto"
|
|
"google.golang.org/protobuf/testing/protocmp"
|
|
"gotest.tools/v3/assert"
|
|
"pgregory.net/rapid"
|
|
|
|
"github.com/cosmos/cosmos-sdk/orm/encoding/ormkv"
|
|
"github.com/cosmos/cosmos-sdk/orm/internal/testpb"
|
|
"github.com/cosmos/cosmos-sdk/orm/internal/testutil"
|
|
)
|
|
|
|
func TestPrimaryKeyCodec(t *testing.T) {
|
|
rapid.Check(t, func(t *rapid.T) {
|
|
keyCodec := testutil.TestKeyCodecGen(0, 5).Draw(t, "keyCodec").(testutil.TestKeyCodec)
|
|
pkCodec, err := ormkv.NewPrimaryKeyCodec(
|
|
keyCodec.Codec.Prefix(),
|
|
(&testpb.ExampleTable{}).ProtoReflect().Type(),
|
|
keyCodec.Codec.GetFieldNames(),
|
|
proto.UnmarshalOptions{},
|
|
)
|
|
assert.NilError(t, err)
|
|
for i := 0; i < 100; i++ {
|
|
a := testutil.GenA.Draw(t, fmt.Sprintf("a%d", i)).(*testpb.ExampleTable)
|
|
key := keyCodec.Codec.GetKeyValues(a.ProtoReflect())
|
|
pk1 := &ormkv.PrimaryKeyEntry{
|
|
TableName: aFullName,
|
|
Key: key,
|
|
Value: a,
|
|
}
|
|
k, v, err := pkCodec.EncodeEntry(pk1)
|
|
assert.NilError(t, err)
|
|
|
|
k2, v2, err := pkCodec.EncodeKVFromMessage(a.ProtoReflect())
|
|
assert.NilError(t, err)
|
|
assert.Assert(t, bytes.Equal(k, k2))
|
|
assert.Assert(t, bytes.Equal(v, v2))
|
|
|
|
entry2, err := pkCodec.DecodeEntry(k, v)
|
|
assert.NilError(t, err)
|
|
pk2 := entry2.(*ormkv.PrimaryKeyEntry)
|
|
assert.Equal(t, 0, pkCodec.CompareKeys(pk1.Key, pk2.Key))
|
|
assert.DeepEqual(t, pk1.Value, pk2.Value, protocmp.Transform())
|
|
|
|
idxFields, pk3, err := pkCodec.DecodeIndexKey(k, v)
|
|
assert.NilError(t, err)
|
|
assert.Equal(t, 0, pkCodec.CompareKeys(pk1.Key, pk3))
|
|
assert.Equal(t, 0, pkCodec.CompareKeys(pk1.Key, idxFields))
|
|
|
|
pkCodec.ClearValues(a.ProtoReflect())
|
|
pkCodec.SetKeyValues(a.ProtoReflect(), pk1.Key)
|
|
assert.DeepEqual(t, a, pk2.Value, protocmp.Transform())
|
|
}
|
|
})
|
|
}
|