forked from nikoksr/notify
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathwebpush_test.go
676 lines (624 loc) · 14.9 KB
/
webpush_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
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
package webpush
import (
"context"
"fmt"
"log"
"net/http"
"net/http/httptest"
"os"
"reflect"
"testing"
"github.com/SherClockHolmes/webpush-go"
"github.com/google/go-cmp/cmp"
)
// Allows us to simulate an error returned from the server on a per-request basis
const headerTestError = "X-Test-Error"
// checkFunc is a function that checks a request and returns an error if the check fails
type checkFunc func(r *http.Request) error
// checkMethod returns a checkFunc that checks the request method
func checkMethod(method string) func(r *http.Request) error {
return func(r *http.Request) error {
if r.Method != method {
return fmt.Errorf("unexpected method: %s", r.Method)
}
return nil
}
}
// checkHeader returns a checkFunc that checks the request header
func checkHeader(key, value string) func(r *http.Request) error {
return func(r *http.Request) error {
if r.Header.Get(key) != value {
return fmt.Errorf("unexpected %s header: %s", key, r.Header.Get(key))
}
return nil
}
}
// defaultChecks is the default set of checks used for testing
var defaultChecks = []checkFunc{
checkMethod("POST"),
checkHeader("Content-Type", "application/octet-stream"),
checkHeader("Content-Encoding", "aes128gcm"),
}
// newWebpushHandlerWithChecks returns a new http.Handler that checks the request against the given checks and returns
// a 400 if any of them fail.
func newWebpushHandlerWithChecks(checks ...checkFunc) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
for _, check := range checks {
if err := check(r); err != nil {
w.WriteHeader(http.StatusBadRequest)
_, _ = w.Write([]byte(err.Error()))
return
}
}
// This allows us to simulate an error returned from the server on a per-request basis
if r.Header.Get(headerTestError) != "" {
w.WriteHeader(http.StatusBadRequest)
_, _ = w.Write([]byte(r.Header.Get(headerTestError)))
return
}
w.WriteHeader(http.StatusCreated)
})
}
var vapidPublicKey, vapidPrivateKey string
// TestMain sets up a test server to handle the requests
func TestMain(m *testing.M) {
// Generate a VAPID key pair
privateKey, publicKey, err := webpush.GenerateVAPIDKeys()
if err != nil {
log.Fatal(err)
}
vapidPublicKey = publicKey
vapidPrivateKey = privateKey
os.Exit(m.Run())
}
func getValidSubscription() Subscription {
return Subscription{
Keys: webpush.Keys{
P256dh: "BNNL5ZaTfK81qhXOx23-wewhigUeFb632jN6LvRWCFH1ubQr77FE_9qV1FuojuRmHP42zmf34rXgW80OvUVDgTk",
Auth: "zqbxT6JKstKSY9JKibZLSQ",
},
}
}
func getInvalidSubscription() Subscription {
return Subscription{
Keys: webpush.Keys{
P256dh: "AAA",
Auth: "BBB",
},
}
}
func TestService_Send(t *testing.T) {
t.Parallel()
type fields struct {
subscriptions []webpush.Subscription
vapidPublicKey string
vapidPrivateKey string
}
type args struct {
subject string
message string
options webpush.Options // Bind those to the context
}
tests := []struct {
name string
fields fields
args args
handler http.Handler
wantErr bool
}{
{
name: "Send a message with options",
fields: fields{
subscriptions: []webpush.Subscription{
getValidSubscription(),
},
vapidPublicKey: vapidPublicKey,
vapidPrivateKey: vapidPrivateKey,
},
args: args{
subject: "subject",
message: "message",
options: webpush.Options{
TTL: 60, // Should set the TTL header
Topic: "test-topic", // Should set the Topic header
Urgency: UrgencyHigh, // Should set the Urgency header
},
},
handler: newWebpushHandlerWithChecks(
append(
defaultChecks,
checkHeader("TTL", "60"),
checkHeader("Topic", "test-topic"),
checkHeader("Urgency", string(UrgencyHigh)),
)...,
),
wantErr: false,
},
{
name: "Send a message with no options",
fields: fields{
subscriptions: []webpush.Subscription{
getValidSubscription(),
},
vapidPublicKey: vapidPublicKey,
vapidPrivateKey: vapidPrivateKey,
},
args: args{
subject: "subject",
message: "message",
options: webpush.Options{},
},
handler: newWebpushHandlerWithChecks(defaultChecks...),
wantErr: false,
},
{
name: "Send a message with no options and no subscriptions",
fields: fields{
subscriptions: []webpush.Subscription{},
vapidPublicKey: vapidPublicKey,
vapidPrivateKey: vapidPrivateKey,
},
args: args{
subject: "subject",
message: "message",
options: webpush.Options{},
},
handler: newWebpushHandlerWithChecks(defaultChecks...),
wantErr: false,
},
{
name: "Send a message with no options and no subscriptions",
fields: fields{
subscriptions: []webpush.Subscription{},
vapidPublicKey: vapidPublicKey,
vapidPrivateKey: vapidPrivateKey,
},
args: args{
subject: "subject",
message: "message",
options: webpush.Options{},
},
handler: newWebpushHandlerWithChecks(defaultChecks...),
wantErr: false,
},
{
name: "Send a message with no vapid public key",
fields: fields{
subscriptions: []webpush.Subscription{
getValidSubscription(),
},
vapidPublicKey: "",
vapidPrivateKey: vapidPrivateKey,
},
args: args{
subject: "subject",
message: "message",
options: webpush.Options{},
},
handler: newWebpushHandlerWithChecks(defaultChecks...),
wantErr: false, // Yes, does not cause an error
},
{
name: "Send a message with no vapid private key",
fields: fields{
subscriptions: []webpush.Subscription{
getValidSubscription(),
},
vapidPublicKey: vapidPublicKey,
vapidPrivateKey: "",
},
args: args{
subject: "subject",
message: "message",
options: webpush.Options{},
},
handler: newWebpushHandlerWithChecks(defaultChecks...),
wantErr: false, // Yes, does not cause an error
},
{
name: "Send a message with no vapid keys",
fields: fields{
subscriptions: []webpush.Subscription{
getValidSubscription(),
},
vapidPublicKey: "",
vapidPrivateKey: "",
},
args: args{
subject: "subject",
message: "message",
options: webpush.Options{},
},
handler: newWebpushHandlerWithChecks(defaultChecks...),
wantErr: false, // Yes, does not cause an error
},
{
name: "Send a message with invalid subscription",
fields: fields{
subscriptions: []webpush.Subscription{
getInvalidSubscription(),
},
vapidPublicKey: vapidPublicKey,
vapidPrivateKey: vapidPrivateKey,
},
args: args{
subject: "subject",
message: "message",
options: webpush.Options{},
},
handler: newWebpushHandlerWithChecks(defaultChecks...),
wantErr: true,
},
}
//nolint:paralleltest
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
fakeWebpushServer := httptest.NewServer(tt.handler)
defer fakeWebpushServer.Close()
s := New(tt.fields.vapidPublicKey, tt.fields.vapidPrivateKey)
for _, subscription := range tt.fields.subscriptions {
subscription.Endpoint = fakeWebpushServer.URL
s.AddReceivers(subscription)
}
ctx := WithOptions(context.Background(), tt.args.options)
err := s.Send(ctx, tt.args.subject, tt.args.message)
if (err != nil) != tt.wantErr {
t.Errorf("Service.Send() error = %v, wantErr %v", err, tt.wantErr)
}
})
}
}
func TestService_withOptions(t *testing.T) {
t.Parallel()
type fields struct {
vapidPublicKey string
vapidPrivateKey string
}
type args struct {
options Options
}
tests := []struct {
name string
fields fields
args args
want Options
}{
{
name: "with options but no VAPID keys",
fields: fields{
vapidPublicKey: vapidPublicKey,
vapidPrivateKey: vapidPrivateKey,
},
args: args{
options: Options{
RecordSize: 4096,
Subscriber: "test-subscriber",
Topic: "test-topic",
TTL: 100,
Urgency: UrgencyHigh,
VAPIDPublicKey: "", // should be ignored
VAPIDPrivateKey: "", // should be ignored
},
},
want: Options{
RecordSize: 4096,
Subscriber: "test-subscriber",
Topic: "test-topic",
TTL: 100,
Urgency: UrgencyHigh,
VAPIDPublicKey: vapidPublicKey,
VAPIDPrivateKey: vapidPrivateKey,
},
},
{
name: "with options and VAPID keys",
fields: fields{
vapidPublicKey: vapidPublicKey,
vapidPrivateKey: vapidPrivateKey,
},
args: args{
options: Options{
RecordSize: 4096,
Subscriber: "test-subscriber",
Topic: "test-topic",
TTL: 100,
Urgency: UrgencyHigh,
VAPIDPublicKey: "test-public-key", // should be used
VAPIDPrivateKey: "test-private-key", // should be used
},
},
want: Options{
RecordSize: 4096,
Subscriber: "test-subscriber",
Topic: "test-topic",
TTL: 100,
Urgency: UrgencyHigh,
VAPIDPublicKey: "test-public-key",
VAPIDPrivateKey: "test-private-key",
},
},
}
for _, tt := range tests {
tt := tt
t.Run(tt.name, func(t *testing.T) {
t.Parallel()
s := New(tt.fields.vapidPublicKey, tt.fields.vapidPrivateKey)
if got := s.withOptions(tt.args.options); !reflect.DeepEqual(got, tt.want) {
t.Errorf("withOptions() = %v, want %v", got, tt.want)
}
})
}
}
func TestNew(t *testing.T) {
t.Parallel()
type args struct {
vapidPublicKey string
vapidPrivateKey string
}
tests := []struct {
name string
args args
want *Service
}{
{
name: "New with VAPID keys",
args: args{
vapidPublicKey: vapidPublicKey,
vapidPrivateKey: vapidPrivateKey,
},
want: &Service{
subscriptions: []webpush.Subscription{},
options: Options{
VAPIDPublicKey: vapidPublicKey,
VAPIDPrivateKey: vapidPrivateKey,
},
},
},
{
name: "New without VAPID keys",
args: args{
vapidPublicKey: "",
vapidPrivateKey: "",
},
want: &Service{
subscriptions: []webpush.Subscription{},
options: Options{
VAPIDPublicKey: "",
VAPIDPrivateKey: "",
},
},
},
}
opts := []cmp.Option{
cmp.AllowUnexported(Service{}),
}
for _, tt := range tests {
tt := tt
t.Run(tt.name, func(t *testing.T) {
t.Parallel()
got := New(tt.args.vapidPublicKey, tt.args.vapidPrivateKey)
if diff := cmp.Diff(got, tt.want, opts...); diff != "" {
t.Errorf("New() mismatch (-want +got):\n%s", diff)
}
})
}
}
func TestService_AddReceivers(t *testing.T) {
t.Parallel()
type fields struct {
subscriptions []webpush.Subscription
}
type args struct {
subscriptions []Subscription
}
tests := []struct {
name string
fields fields
args args
}{
{
name: "AddReceivers",
fields: fields{
subscriptions: []webpush.Subscription{},
},
args: args{
subscriptions: []Subscription{
{
Endpoint: "https://fcm.googleapis.com/fcm/send/dQw4w9WgXcQ",
Keys: webpush.Keys{
Auth: "auth",
P256dh: "p256dh",
},
},
},
},
},
{
name: "AddReceivers with multiple subscriptions",
fields: fields{
subscriptions: []webpush.Subscription{},
},
args: args{
subscriptions: []Subscription{
{
Endpoint: "https://example.com/push1",
Keys: webpush.Keys{
Auth: "auth",
P256dh: "p256dh",
},
},
{
Endpoint: "https://example.com/push2",
Keys: webpush.Keys{
Auth: "auth",
P256dh: "p256dh",
},
},
{
Endpoint: "https://example.com/push3",
Keys: webpush.Keys{
Auth: "auth",
P256dh: "p256dh",
},
},
},
},
},
}
opts := []cmp.Option{
cmp.AllowUnexported(Service{}),
}
for _, tt := range tests {
tt := tt
t.Run(tt.name, func(t *testing.T) {
t.Parallel()
s := New("", "")
s.AddReceivers(tt.args.subscriptions...)
if diff := cmp.Diff(s.subscriptions, tt.args.subscriptions, opts...); diff != "" {
t.Errorf("AddReceivers() mismatch (-want +got):\n%s", diff)
}
})
}
}
func Test_ContextBinding(t *testing.T) {
t.Parallel()
type fields struct {
ctx context.Context
}
type args struct {
data map[string]interface{}
options Options
}
tests := []struct {
name string
fields fields
args args
}{
{
name: "Bind data",
fields: fields{
ctx: context.Background(),
},
args: args{
data: map[string]interface{}{
"title": "Test",
},
},
},
{
name: "Bind options",
fields: fields{
ctx: context.Background(),
},
args: args{
options: Options{
Topic: "test",
Urgency: UrgencyHigh,
TTL: 60,
},
},
},
{
name: "Bind data and options",
fields: fields{
ctx: context.Background(),
},
args: args{
data: map[string]interface{}{
"title": "Test",
},
options: Options{
Topic: "test",
Urgency: UrgencyHigh,
TTL: 60,
},
},
},
{
name: "Bind nothing", // Make sure nothing panics
fields: fields{
ctx: context.Background(),
},
args: args{},
},
}
opts := []cmp.Option{
cmp.AllowUnexported(Service{}),
}
for _, tt := range tests {
tt := tt
t.Run(tt.name, func(t *testing.T) {
t.Parallel()
gotCtx := WithData(tt.fields.ctx, tt.args.data)
gotCtx = WithOptions(gotCtx, tt.args.options)
if gotCtx == nil {
t.Error("gotCtx is nil")
}
gotData := dataFromContext(gotCtx)
gotOptions := optionsFromContext(gotCtx)
if diff := cmp.Diff(gotData, tt.args.data, opts...); diff != "" {
t.Errorf("WithData() mismatch (-want +got):\n%s", diff)
}
if diff := cmp.Diff(gotOptions, tt.args.options, opts...); diff != "" {
t.Errorf("WithOptions() mismatch (-want +got):\n%s", diff)
}
})
}
}
func Test_payloadFromContext(t *testing.T) {
t.Parallel()
type args struct {
ctx context.Context
subject string
message string
data map[string]interface{}
}
tests := []struct {
name string
args args
want []byte
wantErr bool
}{
{
name: "Payload with only subject and message",
args: args{
ctx: context.Background(),
subject: "test",
message: "test",
},
want: []byte(`{"subject":"test","message":"test"}`),
},
{
name: "Payload with subject, message and data",
args: args{
ctx: context.Background(),
subject: "test",
message: "test",
data: map[string]interface{}{
"title": "Test",
},
},
want: []byte(`{"subject":"test","message":"test","data":{"title":"Test"}}`),
},
}
opts := []cmp.Option{
cmp.AllowUnexported(Service{}),
}
for _, tt := range tests {
tt := tt
t.Run(tt.name, func(t *testing.T) {
t.Parallel()
if tt.args.data != nil {
tt.args.ctx = WithData(tt.args.ctx, tt.args.data)
}
got, err := payloadFromContext(tt.args.ctx, tt.args.subject, tt.args.message)
if (err != nil) != tt.wantErr {
t.Errorf("payloadFromContext() error = %v, wantErr %v", err, tt.wantErr)
return
}
if diff := cmp.Diff(got, tt.want, opts...); diff != "" {
t.Errorf("payloadFromContext() mismatch (-want +got):\n%s", diff)
}
})
}
}