-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathtonapi_test.go
144 lines (137 loc) · 3.49 KB
/
tonapi_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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
package tonapi
import (
"context"
"errors"
"fmt"
"github.com/graze/go-throttled"
"github.com/stretchr/testify/require"
"github.com/tonkeeper/tongo/ton"
"golang.org/x/time/rate"
"net/http"
"os"
"testing"
)
var systemAccountID = ton.MustParseAccountID("Ef8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAU")
// TestThrottling tests the client with throttling.
func TestThrottling(t *testing.T) {
const (
withTokenName = "WithToken"
withoutTokenName = "WithoutToken"
)
tests := []struct {
name string
token string
rateLimit rate.Limit
burst int
}{
{
name: withTokenName,
token: os.Getenv("TONAPI_TOKEN"), // use TonApi token with Lite tier
rateLimit: 10,
burst: 10,
},
{
name: withoutTokenName,
token: "",
rateLimit: 1,
burst: 1,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
throttledClient := &http.Client{
Transport: throttled.NewTransport(
http.DefaultTransport,
rate.NewLimiter(tt.rateLimit, tt.burst)),
}
if tt.token == "" && tt.name == withTokenName {
t.Skip("skipping test with token")
}
var client *Client
var err error
if tt.token == "" {
client, err = New(nil, WithClient(throttledClient))
} else {
client, err = New(WithToken(tt.token), WithClient(throttledClient))
}
if err != nil {
t.Fatalf("failed to init tonapi client: %v", err)
}
for i := 0; i < 30; i++ {
_, err = client.Status(context.Background())
require.NoError(t, err)
}
})
}
}
// TestCustomRequest tests the client with custom requests.
func TestCustomRequest(t *testing.T) {
throttledClient := &http.Client{
Transport: throttled.NewTransport(
http.DefaultTransport,
rate.NewLimiter(1, 1)),
}
client, err := New(nil, WithClient(throttledClient))
if err != nil {
t.Fatalf("failed to init tonapi client: %v", err)
}
tests := []struct {
name string
method string
path string
query map[string][]string
err error
}{
{
name: "fail to get account info - method not allowed",
method: http.MethodPost,
path: fmt.Sprintf("v2/accounts/%v", systemAccountID),
err: errors.New("405 Method Not Allowed"),
},
{
name: "ok to get account info",
method: http.MethodGet,
path: fmt.Sprintf("v2/accounts/%v", systemAccountID),
err: nil,
},
{
name: "fail with invalid account ID",
method: http.MethodGet,
path: "v2/accounts/invalidAccountID",
err: errors.New("400 Bad Request"),
},
{
name: "fail with non-existent path",
method: http.MethodGet,
path: "v2/nonexistentpath",
err: errors.New("404 Not Found"),
},
{
name: "ok to get collections",
method: http.MethodGet,
path: "v2/nfts/collections",
query: map[string][]string{"limit": {"10"}},
err: nil,
},
{
name: "ok to exec get method",
method: http.MethodGet,
path: "v2/blockchain/accounts/EQCxE6mUtQJKFnGfaROTKOt1lZbDiiX1kCixRv7Nw2Id_sDs/methods/get_wallet_address",
query: map[string][]string{"args": {"UQDNzlh0XSZdb5_Qrlx5QjyZHVAO74v5oMeVVrtF_5Vt1rIt", "UQBVXzBT4lcTA3S7gxrg4hnl5fnsDKj4oNEzNp09aQxkwmCa"}},
err: nil,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
resp, err := client.Request(context.Background(), tt.method, tt.path, tt.query, nil)
if tt.err != nil {
require.Error(t, err)
require.Equal(t, tt.err.Error(), err.Error())
require.Nil(t, resp)
} else {
require.NoError(t, err)
require.NotNil(t, resp)
}
})
}
}