forked from Coccodrillo/apns
-
Notifications
You must be signed in to change notification settings - Fork 0
/
push_notification_test.go
106 lines (89 loc) · 2.35 KB
/
push_notification_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
package apns
import (
"testing"
)
// Create a new Payload that specifies simple text,
// a badge counter, and a custom notification sound.
func mockPayload() (payload *Payload) {
payload = NewPayload()
payload.Alert = "You have mail!"
payload.Badge = 42
payload.Sound = "bingbong.aiff"
return
}
// See the commentary in push_notification.go for information
// on why we're testing a badge of value 0.
func mockZeroBadgePayload() (payload *Payload) {
payload = mockPayload()
payload.Badge = 0
return
}
// Create a new AlertDictionary. Apple recommends you not use
// the more complex alert style unless absolutely necessary.
func mockAlertDictionary() (dict *AlertDictionary) {
args := make([]string, 1)
args[0] = "localized args"
dict = NewAlertDictionary()
dict.Body = "Complex Message"
dict.ActionLocKey = "Play a Game!"
dict.LocKey = "localized key"
dict.LocArgs = args
dict.LaunchImage = "image.jpg"
return
}
func TestBasicAlert(t *testing.T) {
payload := mockPayload()
pn := NewPushNotification()
pn.AddPayload(payload)
bytes, _ := pn.ToBytes()
json, _ := pn.PayloadJSON()
if len(bytes) != 98 {
t.Error("expected 98 bytes; got", len(bytes))
}
if len(json) != 69 {
t.Error("expected 69 bytes; got", len(json))
}
}
func TestAlertDictionary(t *testing.T) {
dict := mockAlertDictionary()
payload := mockPayload()
payload.Alert = dict
pn := NewPushNotification()
pn.AddPayload(payload)
bytes, _ := pn.ToBytes()
json, _ := pn.PayloadJSON()
if len(bytes) != 223 {
t.Error("expected 223 bytes; got", len(bytes))
}
if len(json) != 194 {
t.Error("expected 194 bytes; got", len(bytes))
}
}
func TestCustomParameters(t *testing.T) {
payload := mockPayload()
pn := NewPushNotification()
pn.AddPayload(payload)
pn.Set("foo", "bar")
if pn.Get("foo") != "bar" {
t.Error("unable to set a custom property")
}
if pn.Get("not_set") != nil {
t.Error("expected a missing key to return nil")
}
bytes, _ := pn.ToBytes()
json, _ := pn.PayloadJSON()
if len(bytes) != 110 {
t.Error("expected 110 bytes; got", len(bytes))
}
if len(json) != 81 {
t.Error("expected 81 bytes; got", len(json))
}
}
func TestZeroBadgeChangesToNegativeOne(t *testing.T) {
payload := mockZeroBadgePayload()
pn := NewPushNotification()
pn.AddPayload(payload)
if payload.Badge != -1 {
t.Error("expected 0 badge value to be converted to -1; got", payload.Badge)
}
}