-
Notifications
You must be signed in to change notification settings - Fork 370
/
Copy pathtests.py
268 lines (219 loc) · 9.48 KB
/
tests.py
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
#!/usr/bin/env python
# coding: utf-8
from contextlib import contextmanager
from apns import *
from apns import _wait_for_socket
from binascii import a2b_hex
from random import random
import socket
import hashlib
import os
import time
import unittest
TEST_CERTIFICATE = "certificate.pem" # replace with path to test certificate
NUM_MOCK_TOKENS = 10
mock_tokens = []
for i in range(0, NUM_MOCK_TOKENS):
mock_tokens.append(bytes(hashlib.sha256(("%.12f" % random()).encode("utf-8")).hexdigest().encode("utf-8")))
def mock_chunks_generator():
BUF_SIZE = 64
# Create fake data feed
data = b''
for t in mock_tokens:
token_bin = a2b_hex(t)
token_length = len(token_bin)
data += APNs.packed_uint_big_endian(int(time.time()))
data += APNs.packed_ushort_big_endian(token_length)
data += token_bin
while data:
yield data[0:BUF_SIZE]
data = data[BUF_SIZE:]
class TestAPNs(unittest.TestCase):
"""Unit tests for PyAPNs"""
def setUp(self):
"""docstring for setUp"""
pass
def tearDown(self):
"""docstring for tearDown"""
pass
def testConfigs(self):
apns_test = APNs(use_sandbox=True)
apns_prod = APNs(use_sandbox=False)
self.assertEqual(apns_test.gateway_server.port, 2195)
self.assertEqual(apns_test.gateway_server.server,
'gateway.sandbox.push.apple.com')
self.assertEqual(apns_test.feedback_server.port, 2196)
self.assertEqual(apns_test.feedback_server.server,
'feedback.sandbox.push.apple.com')
self.assertEqual(apns_prod.gateway_server.port, 2195)
self.assertEqual(apns_prod.gateway_server.server,
'gateway.push.apple.com')
self.assertEqual(apns_prod.feedback_server.port, 2196)
self.assertEqual(apns_prod.feedback_server.server,
'feedback.push.apple.com')
def testGatewayServer(self):
pem_file = TEST_CERTIFICATE
apns = APNs(use_sandbox=True, cert_file=pem_file, key_file=pem_file)
gateway_server = apns.gateway_server
self.assertEqual(gateway_server.cert_file, apns.cert_file)
self.assertEqual(gateway_server.key_file, apns.key_file)
token_hex = 'b5bb9d8014a0f9b1d61e21e796d78dccdf1352f23cd32812f4850b878ae4944c'
payload = Payload(
alert = "Hello World!",
sound = "default",
badge = 4
)
notification = gateway_server._get_notification(token_hex, payload)
expected_length = (
1 # leading null byte
+ 2 # length of token as a packed short
+ len(token_hex) / 2 # length of token as binary string
+ 2 # length of payload as a packed short
+ len(payload.json()) # length of JSON-formatted payload
)
self.assertEqual(len(notification), expected_length)
self.assertEqual(notification[0:1], b'\0')
def testFeedbackServer(self):
pem_file = TEST_CERTIFICATE
apns = APNs(use_sandbox=True, cert_file=pem_file, key_file=pem_file)
feedback_server = apns.feedback_server
self.assertEqual(feedback_server.cert_file, apns.cert_file)
self.assertEqual(feedback_server.key_file, apns.key_file)
# Overwrite _chunks() to call a mock chunk generator
feedback_server._chunks = mock_chunks_generator
i = 0;
for (token_hex, fail_time) in list(feedback_server.items()):
self.assertEqual(token_hex, mock_tokens[i])
i += 1
self.assertEqual(i, NUM_MOCK_TOKENS)
def testPayloadAlert(self):
pa = PayloadAlert('foo')
d = pa.dict()
self.assertEqual(d['body'], 'foo')
self.assertFalse('action-loc-key' in d)
self.assertFalse('loc-key' in d)
self.assertFalse('loc-args' in d)
self.assertFalse('launch-image' in d)
pa = PayloadAlert('foo', action_loc_key='bar', loc_key='wibble',
loc_args=['king','kong'], launch_image='wobble')
d = pa.dict()
self.assertEqual(d['body'], 'foo')
self.assertEqual(d['action-loc-key'], 'bar')
self.assertEqual(d['loc-key'], 'wibble')
self.assertEqual(d['loc-args'], ['king','kong'])
self.assertEqual(d['launch-image'], 'wobble')
pa = PayloadAlert(loc_key='wibble')
d = pa.dict()
self.assertTrue('body' not in d)
self.assertEqual(d['loc-key'], 'wibble')
def testPayload(self):
# Payload with just alert
p = Payload(alert=PayloadAlert('foo'))
d = p.dict()
self.assertTrue('alert' in d['aps'])
self.assertTrue('sound' not in d['aps'])
self.assertTrue('badge' not in d['aps'])
# Payload with just sound
p = Payload(sound="foo")
d = p.dict()
self.assertTrue('sound' in d['aps'])
self.assertTrue('alert' not in d['aps'])
self.assertTrue('badge' not in d['aps'])
# Payload with just badge
p = Payload(badge=1)
d = p.dict()
self.assertTrue('badge' in d['aps'])
self.assertTrue('alert' not in d['aps'])
self.assertTrue('sound' not in d['aps'])
# Payload with just badge removal
p = Payload(badge=0)
d = p.dict()
self.assertTrue('badge' in d['aps'])
self.assertTrue('alert' not in d['aps'])
self.assertTrue('sound' not in d['aps'])
# Test plain string alerts
alert_str = 'foobar'
p = Payload(alert=alert_str)
d = p.dict()
self.assertEqual(d['aps']['alert'], alert_str)
self.assertTrue('sound' not in d['aps'])
self.assertTrue('badge' not in d['aps'])
# Test custom payload
alert_str = 'foobar'
custom_dict = {'foo': 'bar'}
p = Payload(alert=alert_str, custom=custom_dict)
d = p.dict()
self.assertEqual(d, {'foo': 'bar', 'aps': {'alert': 'foobar'}})
def testFrame(self):
identifier = 1
expiry = 3600
token_hex = 'b5bb9d8014a0f9b1d61e21e796d78dccdf1352f23cd32812f4850b878ae4944c'
payload = Payload(
alert = "Hello World!",
sound = "default",
badge = 4
)
priority = 10
frame = Frame()
frame.add_item(token_hex, payload, identifier, expiry, priority)
f1 = bytearray(b'\x02\x00\x00\x00t\x01\x00 \xb5\xbb\x9d\x80\x14\xa0\xf9\xb1\xd6\x1e!\xe7\x96\xd7\x8d\xcc\xdf\x13R\xf2<\xd3(\x12\xf4\x85\x0b\x87\x8a\xe4\x94L\x02\x00<{"aps":{"sound":"default","badge":4,"alert":"Hello World!"}}\x03\x00\x04\x00\x00\x00\x01\x04\x00\x04\x00\x00\x0e\x10\x05\x00\x01\n')
f2 = bytearray(b'\x02\x00\x00\x00t\x01\x00 \xb5\xbb\x9d\x80\x14\xa0\xf9\xb1\xd6\x1e!\xe7\x96\xd7\x8d\xcc\xdf\x13R\xf2<\xd3(\x12\xf4\x85\x0b\x87\x8a\xe4\x94L\x02\x00<{"aps":{"sound":"default","alert":"Hello World!","badge":4}}\x03\x00\x04\x00\x00\x00\x01\x04\x00\x04\x00\x00\x0e\x10\x05\x00\x01\n')
self.assertTrue(f1 == frame.get_frame() or f2 == frame.get_frame())
def testPayloadTooLargeError(self):
# The maximum size of the JSON payload is MAX_PAYLOAD_LENGTH
# bytes. First determine how many bytes this allows us in the
# raw payload (i.e. before JSON serialisation)
json_overhead_bytes = len(Payload('.').json()) - 1
max_raw_payload_bytes = MAX_PAYLOAD_LENGTH - json_overhead_bytes
# Test ascii characters payload
Payload('.' * max_raw_payload_bytes)
self.assertRaises(PayloadTooLargeError, Payload,
'.' * (max_raw_payload_bytes + 1))
# Test unicode 2-byte characters payload
Payload(u'\u0100' * int(max_raw_payload_bytes / 2))
self.assertRaises(PayloadTooLargeError, Payload,
u'\u0100' * (int(max_raw_payload_bytes / 2) + 1))
def testWaitForSocket(self):
@contextmanager
def assert_timing(expected, delta):
start = time.time()
yield
end = time.time()
took = end - start
self.assertTrue(expected > took - delta / 2)
self.assertTrue(expected < took + delta / 2)
socket1, socket2 = socket.socketpair()
socket1.setblocking(False)
socket2.setblocking(False)
# Nothing was written, therefore waiting for reading should time out
with assert_timing(1, 0.1):
result = _wait_for_socket(socket1, WAIT_READ, 1)
self.assertFalse(result)
# Send-buffer is empty, waiting for write shouldn't block
with assert_timing(0, 0.1):
result = _wait_for_socket(socket1, WAIT_WRITE, 5)
self.assertTrue(result)
socket2.send('test')
# We just sent something, reading on the other ending shouldn't block now
with assert_timing(0, 0.1):
result = _wait_for_socket(socket1, WAIT_READ, 5)
self.assertTrue(result)
self.assertEquals(socket1.recv(1024), 'test')
# Fill up the write-buffer
try:
while socket1.send(1024 * 'a') == 1024:
continue
except socket.error:
pass
# Waiting for write should block now
with assert_timing(1, 0.1):
result = _wait_for_socket(socket1, WAIT_WRITE, 1)
self.assertFalse(result)
# Closed socket returns being readable
socket2.close()
with assert_timing(0, 0.1):
result = _wait_for_socket(socket1, WAIT_READ)
self.assertTrue(result)
socket1.close()
if __name__ == '__main__':
unittest.main()