-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaccounts_test.go
50 lines (39 loc) · 1023 Bytes
/
accounts_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
package main
import (
"encoding/json"
"net/http"
"net/http/httptest"
"testing"
"testing-gin-api/mocks"
"github.com/gin-gonic/gin"
"github.com/stretchr/testify/assert"
)
func TestGetAccountsRoute(t *testing.T) {
r := gin.Default()
SetupAPI(r)
w := httptest.NewRecorder()
req, _ := http.NewRequest("GET", "/accounts", nil)
r.ServeHTTP(w, req)
assert.Equal(t, 200, w.Code)
accounts := mocks.GetAccounts()
response := QueryAccountsResponse{
Accounts: accounts,
}
expected, _ := json.Marshal(response)
assert.Equal(t, string(expected), w.Body.String())
}
func TestGetSortedAccountsRoute(t *testing.T) {
r := gin.Default()
SetupAPI(r)
w := httptest.NewRecorder()
req, _ := http.NewRequest("GET", "/accounts?sort=address", nil)
r.ServeHTTP(w, req)
assert.Equal(t, 200, w.Code)
accounts := mocks.GetSortedAccounts()
response := QueryAccountsResponse{
Accounts: accounts,
Sort: "address",
}
expected, _ := json.Marshal(response)
assert.Equal(t, string(expected), w.Body.String())
}