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
|
package webpush
import (
"net/http"
"strings"
"testing"
)
type testHTTPClient struct{}
func (*testHTTPClient) Do(*http.Request) (*http.Response, error) {
return &http.Response{StatusCode: 201}, nil
}
func getURLEncodedTestSubscription() *Subscription {
return &Subscription{
Endpoint: "https://updates.push.services.mozilla.com/wpush/v2/gAAAAA",
Keys: Keys{
P256dh: "BNNL5ZaTfK81qhXOx23-wewhigUeFb632jN6LvRWCFH1ubQr77FE_9qV1FuojuRmHP42zmf34rXgW80OvUVDgTk",
Auth: "zqbxT6JKstKSY9JKibZLSQ",
},
}
}
func getStandardEncodedTestSubscription() *Subscription {
return &Subscription{
Endpoint: "https://updates.push.services.mozilla.com/wpush/v2/gAAAAA",
Keys: Keys{
P256dh: "BNNL5ZaTfK81qhXOx23+wewhigUeFb632jN6LvRWCFH1ubQr77FE/9qV1FuojuRmHP42zmf34rXgW80OvUVDgTk=",
Auth: "zqbxT6JKstKSY9JKibZLSQ==",
},
}
}
func TestSendNotificationToURLEncodedSubscription(t *testing.T) {
resp, err := SendNotification([]byte("Test"), getURLEncodedTestSubscription(), &Options{
HTTPClient: &testHTTPClient{},
RecordSize: 3070,
Subscriber: "<EMAIL@EXAMPLE.COM>",
Topic: "test_topic",
TTL: 0,
Urgency: "low",
VAPIDPublicKey: "test-public",
VAPIDPrivateKey: "test-private",
})
if err != nil {
t.Fatal(err)
}
if resp.StatusCode != 201 {
t.Fatalf(
"Incorreect status code, expected=%d, got=%d",
resp.StatusCode,
201,
)
}
}
func TestSendNotificationToStandardEncodedSubscription(t *testing.T) {
resp, err := SendNotification([]byte("Test"), getStandardEncodedTestSubscription(), &Options{
HTTPClient: &testHTTPClient{},
Subscriber: "<EMAIL@EXAMPLE.COM>",
Topic: "test_topic",
TTL: 0,
Urgency: "low",
VAPIDPrivateKey: "testKey",
})
if err != nil {
t.Fatal(err)
}
if resp.StatusCode != 201 {
t.Fatalf(
"Incorreect status code, expected=%d, got=%d",
resp.StatusCode,
201,
)
}
}
func TestSendTooLargeNotification(t *testing.T) {
_, err := SendNotification([]byte(strings.Repeat("Test", int(MaxRecordSize))), getStandardEncodedTestSubscription(), &Options{
HTTPClient: &testHTTPClient{},
Subscriber: "<EMAIL@EXAMPLE.COM>",
Topic: "test_topic",
TTL: 0,
Urgency: "low",
VAPIDPrivateKey: "testKey",
})
if err == nil {
t.Fatalf("Error is nil, expected=%s", ErrMaxPadExceeded)
}
}
|