-
-
Notifications
You must be signed in to change notification settings - Fork 436
/
Copy pathpush_test.go
319 lines (303 loc) · 8.05 KB
/
push_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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
package main
import (
"bytes"
"net/http"
"testing"
"time"
"io"
"github.com/finb/bark-server/v2/database"
"github.com/gofiber/fiber/v2"
jsoniter "github.com/json-iterator/go"
)
// Before running the tests, a valid deviceToken must be set. Otherwise, the tests will fail.
const (
deviceToken = ""
key = "MemoryBaseKey"
)
var app *fiber.App
func TestMain(m *testing.M) {
if deviceToken == "" {
panic("deviceToken is not set")
}
db = database.NewMemBase()
db.SaveDeviceTokenByKey(key, deviceToken)
app = NewServer()
m.Run()
}
func TestRegister(t *testing.T) {
Endpoint(t, []APITestCase{
{
Name: "Normal registration",
Method: "GET",
URL: "/register?devicetoken=" + deviceToken,
Body: "",
IsJson: false,
WantStatusCode: 200,
},
{
Name: "Registration with key",
Method: "GET",
URL: "/register?key=" + key + "&devicetoken=" + deviceToken,
Body: "",
IsJson: false,
WantStatusCode: 200,
},
{
Name: "Registration with wrong key",
Method: "GET",
URL: "/register?key=" + "wrongKey" + "&devicetoken=" + deviceToken,
Body: "",
IsJson: false,
WantStatusCode: 500,
},
{
Name: "Registration without devicetoken",
Method: "GET",
URL: "/register?key=" + key,
Body: "",
IsJson: false,
WantStatusCode: 400,
},
})
}
func TestPushTitleAndBody(t *testing.T) {
// Correct push
Endpoint(t, []APITestCase{
{
Name: "GET push body",
Method: "GET",
URL: "/" + key + "/body",
Body: "",
IsJson: false,
WantStatusCode: 200,
},
{
Name: "GET push title body",
Method: "GET",
URL: "/" + key + "/title/body",
Body: "",
IsJson: false,
WantStatusCode: 200,
},
{
Name: "GET push title subtitle body",
Method: "GET",
URL: "/" + key + "/title/subtitle/body",
Body: "",
IsJson: false,
WantStatusCode: 200,
},
{
Name: "POST push body",
Method: "POST",
URL: "/" + key,
Body: "body=body",
IsJson: false,
WantStatusCode: 200,
},
{
Name: "POST push title body",
Method: "POST",
URL: "/" + key,
Body: "title=title&body=body",
IsJson: false,
WantStatusCode: 200,
},
{
Name: "POST push title subtitle body",
Method: "POST",
URL: "/" + key,
Body: "title=title&subtitle=subtitle&body=body",
IsJson: false,
WantStatusCode: 200,
},
{
Name: "GET title subtitle body URL parameters",
Method: "GET",
URL: "/" + key + "?title=title&subtitle=subtitle&body=body",
Body: "",
IsJson: false,
WantStatusCode: 200,
},
{
Name: "POST title subtitle body POST parameters",
Method: "GET",
URL: "/" + key,
Body: "title=title&subtitle=subtitle&body=body",
IsJson: false,
WantStatusCode: 200,
},
{
Name: "POST title subtitle body JSON parameters",
Method: "POST",
URL: "/" + key,
Body: "{\"title\":\"title\",\"subtitle\":\"subtitle\",\"body\":\"body\"}",
IsJson: true,
WantStatusCode: 200,
},
{
Name: "POST V2 title subtitle body",
Method: "POST",
URL: "/push",
Body: "device_key=" + key + "&title=title&subtitle=subtitle&body=body",
IsJson: false,
WantStatusCode: 200,
},
{
Name: "POST title subtitle body JSON parameters V2",
Method: "POST",
URL: "/push",
Body: "{\"title\":\"title\",\"subtitle\":\"subtitle\",\"body\":\"body\",\"device_key\":\"" + key + "\"}",
IsJson: true,
WantStatusCode: 200,
},
})
// Incorrect push
Endpoint(t, []APITestCase{
{
Name: "GET push without key",
Method: "GET",
URL: "/body",
Body: "",
IsJson: false,
WantStatusCode: 400,
},
{
Name: "POST push without key",
Method: "POST",
URL: "/push",
Body: "title=title&subtitle=subtitle&body=body",
IsJson: false,
WantStatusCode: 400,
},
{
Name: "POST JSON push without key",
Method: "POST",
URL: "/push",
Body: "body=body",
IsJson: true,
WantStatusCode: 400,
},
{
Name: "GET push with too many parameters",
Method: "GET",
URL: "/" + key + "/title/subtitle/body/extra",
Body: "",
IsJson: false,
WantStatusCode: 404,
},
})
}
func TestCiphertext(t *testing.T) {
Endpoint(t, []APITestCase{
{
Name: "Send encrypted push",
Method: "GET",
URL: "/" + key + "/body?ciphertext=text&iv=01234567890123456",
Body: "",
IsJson: false,
WantStatusCode: 200,
},
{
Name: "Send encrypted push, omit body",
Method: "GET",
URL: "/" + key + "?ciphertext=text",
Body: "",
IsJson: false,
WantStatusCode: 200,
},
{
Name: "POST send encrypted push",
Method: "POST",
URL: "/" + key,
Body: "ciphertext=text",
IsJson: false,
WantStatusCode: 200,
},
{
Name: "POST send encrypted push V2",
Method: "POST",
URL: "/push",
Body: "{\"device_key\":\"" + key + "\",\"ciphertext\":\"text\"}",
IsJson: true,
WantStatusCode: 200,
},
})
}
func TestBatchPush(t *testing.T) {
Endpoint(t, []APITestCase{
{
Name: "Batch Push",
Method: "POST",
URL: "/" + key,
Body: "{\"title\":\"title\",\"subtitle\":\"subtitle\",\"body\":\"body\",\"device_keys\":[\"" + key + "\",\"" + key + "\",\"" + key + "\"]}",
IsJson: true,
WantStatusCode: 200,
},
{
Name: "Batch Push",
Method: "POST",
URL: "/push",
Body: "{\"title\":\"title\",\"subtitle\":\"subtitle\",\"body\":\"body\",\"device_keys\":[\"" + key + "\",\"" + key + "\",\"" + key + "\"]}",
IsJson: true,
WantStatusCode: 200,
},
{
Name: "Batch Push",
Method: "POST",
URL: "/push",
Body: "{\"title\":\"title\",\"subtitle\":\"subtitle\",\"body\":\"body\",\"device_keys\": \"" + key + "," + key + "," + key + "\"}",
IsJson: true,
WantStatusCode: 200,
},
})
}
type APITestCase struct {
Name string
Method string
URL string
Body string
IsJson bool
WantStatusCode int
}
func NewServer() *fiber.App {
fiberApp := fiber.New(fiber.Config{
JSONEncoder: jsoniter.Marshal,
ErrorHandler: func(c *fiber.Ctx, err error) error {
code := fiber.StatusInternalServerError
if e, ok := err.(*fiber.Error); ok {
code = e.Code
}
return c.Status(code).JSON(CommonResp{
Code: code,
Message: err.Error(),
Timestamp: time.Now().Unix(),
})
},
})
routerSetup(fiberApp)
return fiberApp
}
func Endpoint(t *testing.T, tc []APITestCase) {
for _, tt := range tc {
t.Run(tt.Name, func(t *testing.T) {
req, _ := http.NewRequest(tt.Method, tt.URL, bytes.NewBufferString(tt.Body))
if tt.IsJson {
req.Header.Set("Content-Type", "application/json")
} else {
req.Header.Set("Content-Type", "application/x-www-form-urlencoded")
}
res, err := app.Test(req)
if err != nil {
t.Fatal(err)
}
defer res.Body.Close()
if res.StatusCode != tt.WantStatusCode {
body, _ := io.ReadAll(io.Reader(res.Body))
t.Fatalf("want %d, got %d, res: %s", tt.WantStatusCode, res.StatusCode, string(body))
}
})
// Prevent rate limiting by sending requests too quickly
time.Sleep(100 * time.Millisecond)
}
}