Skip to content

Commit 3101065

Browse files
committed
feat: add tests
1 parent 2464962 commit 3101065

File tree

93 files changed

+883
-774
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

93 files changed

+883
-774
lines changed

docs/api/README.md

+8
Original file line numberDiff line numberDiff line change
@@ -117,18 +117,26 @@ Authorization ( Scopes: ledger:read )
117117
```http
118118
GET http://localhost:8080/v2 HTTP/1.1
119119
Host: localhost:8080
120+
Content-Type: application/json
120121
Accept: application/json
121122
122123
```
123124

124125
`GET /v2`
125126

127+
> Body parameter
128+
129+
```json
130+
{}
131+
```
132+
126133
<h3 id="list-ledgers-parameters">Parameters</h3>
127134

128135
|Name|In|Type|Required|Description|
129136
|---|---|---|---|---|
130137
|pageSize|query|integer(int64)|false|The maximum number of results to return per page.|
131138
|cursor|query|string|false|Parameter used in pagination requests. Maximum page size is set to 15.|
139+
|body|body|object|true|none|
132140

133141
#### Detailed descriptions
134142

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ require (
1414
github.com/antlr/antlr4/runtime/Go/antlr v1.4.10
1515
github.com/bluele/gcache v0.0.2
1616
github.com/dop251/goja v0.0.0-20241009100908-5f46f2705ca3
17-
github.com/formancehq/go-libs/v2 v2.2.3-0.20250324165303-4a3b874e1f09
17+
github.com/formancehq/go-libs/v2 v2.2.3-0.20250328155139-11198164d016
1818
github.com/formancehq/ledger/pkg/client v0.0.0-00010101000000-000000000000
1919
github.com/go-chi/chi/v5 v5.2.1
2020
github.com/go-chi/cors v1.2.1

go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,8 @@ github.com/fatih/color v1.18.0 h1:S8gINlzdQ840/4pfAwic/ZE0djQEH3wM94VfqLTZcOM=
104104
github.com/fatih/color v1.18.0/go.mod h1:4FelSpRwEGDpQ12mAdzqdOukCy4u8WUtOY6lkT/6HfU=
105105
github.com/felixge/httpsnoop v1.0.4 h1:NFTV2Zj1bL4mc9sqWACXbQFVBBg2W3GPvqp8/ESS2Wg=
106106
github.com/felixge/httpsnoop v1.0.4/go.mod h1:m8KPJKqk1gH5J9DgRY2ASl2lWCfGKXixSwevea8zH2U=
107-
github.com/formancehq/go-libs/v2 v2.2.3-0.20250324165303-4a3b874e1f09 h1:7AaCfyrCEXc7qjaIX24YAJzWI/FC+QmMA51nKXKOhN4=
108-
github.com/formancehq/go-libs/v2 v2.2.3-0.20250324165303-4a3b874e1f09/go.mod h1:/hrQ/BksJ/Usw8ONbtJeYU7jZ1pnWoM/4UsBQ0lSBbQ=
107+
github.com/formancehq/go-libs/v2 v2.2.3-0.20250328155139-11198164d016 h1:t2REX3SXrD4asj979f8pgRw/SfUPhYGxYZ7hkkP586w=
108+
github.com/formancehq/go-libs/v2 v2.2.3-0.20250328155139-11198164d016/go.mod h1:JvBjEDWNf7izCy2dq/eI3aMc9d28gChBe1rjw5yYlAs=
109109
github.com/formancehq/numscript v0.0.11 h1:vZDfRfrhOkuInv5fLIXvWZU3ylK+fVgmR4la01dO5to=
110110
github.com/formancehq/numscript v0.0.11/go.mod h1:btuSv05cYwi9BvLRxVs5zrunU+O1vTgigG1T6UsawcY=
111111
github.com/fortytw2/leaktest v1.3.0 h1:u8491cBMTQ8ft8aeV+adlcytMZylmA5nnwwkRZjI8vw=

internal/api/bulking/mocks_ledger_controller_test.go

+10-10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

internal/api/common/mocks_ledger_controller_test.go

+10-10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

internal/api/common/mocks_system_controller_test.go

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

internal/api/v1/controllers_accounts_count.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package v1
22

33
import (
44
"fmt"
5-
"github.com/formancehq/ledger/internal/storage/resources"
5+
storagecommon "github.com/formancehq/ledger/internal/storage/common"
66
"net/http"
77

88
"errors"
@@ -29,7 +29,7 @@ func countAccounts(w http.ResponseWriter, r *http.Request) {
2929
count, err := l.CountAccounts(r.Context(), *rq)
3030
if err != nil {
3131
switch {
32-
case errors.Is(err, resources.ErrInvalidQuery{}) || errors.Is(err, ledgercontroller.ErrMissingFeature{}):
32+
case errors.Is(err, storagecommon.ErrInvalidQuery{}) || errors.Is(err, ledgercontroller.ErrMissingFeature{}):
3333
api.BadRequest(w, common.ErrValidation, err)
3434
default:
3535
common.HandleCommonErrors(w, r, err)

internal/api/v1/controllers_accounts_count_test.go

+11-11
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package v1
22

33
import (
44
"github.com/formancehq/ledger/internal/api/common"
5-
"github.com/formancehq/ledger/internal/storage/resources"
5+
storagecommon "github.com/formancehq/ledger/internal/storage/common"
66
"net/http"
77
"net/http/httptest"
88
"net/url"
@@ -25,7 +25,7 @@ func TestAccountsCount(t *testing.T) {
2525
type testCase struct {
2626
name string
2727
queryParams url.Values
28-
expectQuery resources.ResourceQuery[any]
28+
expectQuery storagecommon.ResourceQuery[any]
2929
expectStatusCode int
3030
expectedErrorCode string
3131
returnErr error
@@ -36,7 +36,7 @@ func TestAccountsCount(t *testing.T) {
3636
testCases := []testCase{
3737
{
3838
name: "nominal",
39-
expectQuery: resources.ResourceQuery[any]{},
39+
expectQuery: storagecommon.ResourceQuery[any]{},
4040
expectBackendCall: true,
4141
},
4242
{
@@ -45,15 +45,15 @@ func TestAccountsCount(t *testing.T) {
4545
"metadata[roles]": []string{"admin"},
4646
},
4747
expectBackendCall: true,
48-
expectQuery: resources.ResourceQuery[any]{
48+
expectQuery: storagecommon.ResourceQuery[any]{
4949
Builder: query.Match("metadata[roles]", "admin"),
5050
},
5151
},
5252
{
5353
name: "using address",
5454
queryParams: url.Values{"address": []string{"foo"}},
5555
expectBackendCall: true,
56-
expectQuery: resources.ResourceQuery[any]{
56+
expectQuery: storagecommon.ResourceQuery[any]{
5757
Builder: query.Match("address", "foo"),
5858
},
5959
},
@@ -63,7 +63,7 @@ func TestAccountsCount(t *testing.T) {
6363
queryParams: url.Values{
6464
"pageSize": []string{"1000000"},
6565
},
66-
expectQuery: resources.ResourceQuery[any]{},
66+
expectQuery: storagecommon.ResourceQuery[any]{},
6767
},
6868
{
6969
name: "using balance filter",
@@ -72,7 +72,7 @@ func TestAccountsCount(t *testing.T) {
7272
"balance": []string{"100"},
7373
},
7474
expectBackendCall: true,
75-
expectQuery: resources.ResourceQuery[any]{
75+
expectQuery: storagecommon.ResourceQuery[any]{
7676
Builder: query.Lt("balance", int64(100)),
7777
},
7878
},
@@ -81,24 +81,24 @@ func TestAccountsCount(t *testing.T) {
8181
expectStatusCode: http.StatusBadRequest,
8282
expectedErrorCode: common.ErrValidation,
8383
expectBackendCall: true,
84-
returnErr: resources.ErrInvalidQuery{},
85-
expectQuery: resources.ResourceQuery[any]{},
84+
returnErr: storagecommon.ErrInvalidQuery{},
85+
expectQuery: storagecommon.ResourceQuery[any]{},
8686
},
8787
{
8888
name: "with missing feature",
8989
expectStatusCode: http.StatusBadRequest,
9090
expectedErrorCode: common.ErrValidation,
9191
expectBackendCall: true,
9292
returnErr: ledgercontroller.ErrMissingFeature{},
93-
expectQuery: resources.ResourceQuery[any]{},
93+
expectQuery: storagecommon.ResourceQuery[any]{},
9494
},
9595
{
9696
name: "with unexpected error",
9797
expectStatusCode: http.StatusInternalServerError,
9898
expectedErrorCode: api.ErrorInternal,
9999
expectBackendCall: true,
100100
returnErr: errors.New("undefined error"),
101-
expectQuery: resources.ResourceQuery[any]{},
101+
expectQuery: storagecommon.ResourceQuery[any]{},
102102
},
103103
}
104104
for _, testCase := range testCases {

0 commit comments

Comments
 (0)