Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(x/ecocredit): query Batches ORM #842

Merged
merged 3 commits into from
Mar 8, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 45 additions & 0 deletions x/ecocredit/server/core/query_batches.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
package core

import (
"context"
"github.com/cosmos/cosmos-sdk/orm/model/ormlist"
ecocreditv1beta1 "github.com/regen-network/regen-ledger/api/regen/ecocredit/v1beta1"
"github.com/regen-network/regen-ledger/x/ecocredit/v1beta1"
)

// Batches queries for all batches in the given credit class.
func (k Keeper) Batches(ctx context.Context, request *v1beta1.QueryBatchesRequest) (*v1beta1.QueryBatchesResponse, error) {
pg, err := GogoPageReqToPulsarPageReq(request.Pagination)
if err != nil {
return nil, err
}
project, err := k.stateStore.ProjectInfoStore().GetByName(ctx, request.ProjectId)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

a bit confusing that the ProjectId in the request refers to the unique project name (string), and not its DB id (uint64). But i guess it's fine thanks to the different types

if err != nil {
return nil, err
}
it, err := k.stateStore.BatchInfoStore().List(ctx, ecocreditv1beta1.BatchInfoProjectIdIndexKey{}.WithProjectId(project.Id), ormlist.Paginate(pg))
if err != nil {
return nil, err
}

batches := make([]*v1beta1.BatchInfo, 0)
for it.Next() {
batch, err := it.Value()
if err != nil {
return nil, err
}
var bi v1beta1.BatchInfo
if err = PulsarToGogoSlow(batch, &bi); err != nil {
return nil, err
}
batches = append(batches, &bi)
}
pr, err := PulsarPageResToGogoPageRes(it.PageResponse())
if err != nil {
return nil, err
}
return &v1beta1.QueryBatchesResponse{
Batches: batches,
Pagination: pr,
}, nil
}
56 changes: 56 additions & 0 deletions x/ecocredit/server/core/query_batches_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
package core

import (
"github.com/cosmos/cosmos-sdk/orm/types/ormerrors"
"github.com/cosmos/cosmos-sdk/types/query"
ecocreditv1beta1 "github.com/regen-network/regen-ledger/api/regen/ecocredit/v1beta1"
"github.com/regen-network/regen-ledger/x/ecocredit/v1beta1"
"gotest.tools/v3/assert"
"testing"
)

func TestQuery_Batches(t *testing.T) {
t.Parallel()
s := setupBase(t)

// make a project and two batches
assert.NilError(t, s.stateStore.ProjectInfoStore().Insert(s.ctx, &ecocreditv1beta1.ProjectInfo{
Name: "P01",
ClassId: 1,
ProjectLocation: "US-CA",
Metadata: nil,
}))
assert.NilError(t, s.stateStore.BatchInfoStore().Insert(s.ctx, &ecocreditv1beta1.BatchInfo{
ProjectId: 1,
BatchDenom: "C01-20200101-20220101-001",
Metadata: nil,
StartDate: nil,
EndDate: nil,
}))
assert.NilError(t, s.stateStore.BatchInfoStore().Insert(s.ctx, &ecocreditv1beta1.BatchInfo{
ProjectId: 1,
BatchDenom: "C01-20200101-20220101-002",
Metadata: nil,
StartDate: nil,
EndDate: nil,
}))

// invalid query
_, err := s.k.Batches(s.ctx, &v1beta1.QueryBatchesRequest{ProjectId: "F01"})
assert.ErrorContains(t, err, ormerrors.NotFound.Error())

// base query
res, err := s.k.Batches(s.ctx, &v1beta1.QueryBatchesRequest{ProjectId: "P01"})
assert.NilError(t, err)
assert.Equal(t, 2, len(res.Batches))
assert.Equal(t, "C01-20200101-20220101-001", res.Batches[0].BatchDenom)

// paginated query
res, err = s.k.Batches(s.ctx, &v1beta1.QueryBatchesRequest{
ProjectId: "P01",
Pagination: &query.PageRequest{Limit: 1, CountTotal: true},
})
assert.NilError(t, err)
assert.Equal(t, 1, len(res.Batches))
assert.Equal(t, uint64(2), res.Pagination.Total)
}