Better tests (check that response match the structure) (#52)

Trailing zeros were removed from time in responses because of json marshaling features
This commit is contained in:
Kirill
2023-12-11 03:19:12 +03:00
committed by GitHub
parent 922e2de8b0
commit 1494ff5905
33 changed files with 744 additions and 123 deletions

View File

@@ -25,7 +25,7 @@ func TestReportOnSoldProducts(t *testing.T) {
&ReportOnSoldProductsParams{
Date: "2022-09",
},
`{
`{
"result": {
"header": {
"doc_date": "2022-09-22",
@@ -69,7 +69,7 @@ func TestReportOnSoldProducts(t *testing.T) {
]
}
}`,
"",
"",
},
// Test No Client-Id or Api-Key
{
@@ -91,8 +91,11 @@ func TestReportOnSoldProducts(t *testing.T) {
resp, err := c.Finance().ReportOnSoldProducts(ctx, test.params)
if err != nil {
t.Error(err)
continue
}
compareJsonResponse(t, test.response, &ReportOnSoldProductsResponse{})
if resp.StatusCode != test.statusCode {
t.Errorf("got wrong status code: got: %d, expected: %d", resp.StatusCode, test.statusCode)
}
@@ -160,8 +163,11 @@ func TestGetTotalTransactionsSum(t *testing.T) {
resp, err := c.Finance().GetTotalTransactionsSum(ctx, test.params)
if err != nil {
t.Error(err)
continue
}
compareJsonResponse(t, test.response, &GetTotalTransactionsSumResponse{})
if resp.StatusCode != test.statusCode {
t.Errorf("got wrong status code: got: %d, expected: %d", resp.StatusCode, test.statusCode)
}
@@ -249,8 +255,11 @@ func TestListTransactions(t *testing.T) {
resp, err := c.Finance().ListTransactions(ctx, test.params)
if err != nil {
t.Error(err)
continue
}
compareJsonResponse(t, test.response, &ListTransactionsResponse{})
if resp.StatusCode != test.statusCode {
t.Errorf("got wrong status code: got: %d, expected: %d", resp.StatusCode, test.statusCode)
}