forked from chrysn/aiocoap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_encoding.py
235 lines (206 loc) · 11 KB
/
test_encoding.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
# This file is part of the Python aiocoap library project.
#
# Copyright (c) 2012-2014 Maciej Wasilak <http://sixpinetrees.blogspot.com/>,
# 2013-2014 Christian Amsüss <[email protected]>
#
# aiocoap is free software, this file is published under the MIT license as
# described in the accompanying LICENSE file.
import struct
import copy
import aiocoap
import aiocoap.optiontypes
import unittest
class TestMessage(unittest.TestCase):
def test_encode(self):
msg1 = aiocoap.Message(mtype=aiocoap.CON, mid=0, code=aiocoap.EMPTY)
binary1 = bytes((64,0,0,0))
self.assertEqual(msg1.encode(), binary1, "wrong encode operation for empty CON message")
msg2 = aiocoap.Message(mtype=aiocoap.ACK, mid=0xBC90, code=aiocoap.CONTENT, payload=b"temp = 22.5 C", token=b'q')
msg2.opt.etag = b"abcd"
binary2 = bytes((97,69,188,144,113,68))+b"abcd"+bytes((255,))+b"temp = 22.5 C"
self.assertEqual(msg2.encode(), binary2, "wrong encode operation for ACK message with payload, and Etag option")
msg2short = binary2[0:5] + binary2[10:] # header, token, marker, data
msg2a = copy.deepcopy(msg2)
del msg2a.opt.etag
self.assertEqual(msg2a.encode(), msg2short, "deleting single property did not succeed")
msg2b = copy.deepcopy(msg2)
del msg2b.opt.etags
self.assertEqual(msg2b.encode(), msg2short, "deleting list property did not succeed")
msg2c = copy.deepcopy(msg2)
msg2c.opt.etags = []
self.assertEqual(msg2c.encode(), msg2short, "emptying list property did not succeed")
msg2d = copy.deepcopy(msg2)
msg2d.opt.etag = None
self.assertEqual(msg2d.encode(), msg2short, "setting single property to None did not succeed")
msg3 = aiocoap.Message()
self.assertRaises(TypeError, msg3.encode)
msg4 = aiocoap.Message(mtype=aiocoap.CON, mid=2<<16)
self.assertRaises(Exception, msg4.encode)
msg5 = aiocoap.Message(mtype=aiocoap.CON, mid=0, code=aiocoap.EMPTY)
o = aiocoap.optiontypes.OpaqueOption(1234, value=b"abcd")
msg5.opt.add_option(o)
binary5 = binary1 + bytes((0xe4, 0x03, 0xc5)) + b"abcd"
self.assertEqual(msg5.encode(), binary5, "wrong encoding for high option numbers")
msg6 = aiocoap.Message(mtype=aiocoap.CON, mid=0, code=aiocoap.EMPTY)
o = aiocoap.optiontypes.OpaqueOption(12345678, value=b"abcd")
msg6.opt.add_option(o)
self.assertRaises(ValueError, msg6.encode)
msg7 = aiocoap.Message(mtype=aiocoap.CON, mid=0, code=aiocoap.EMPTY)
def set_unknown_opt():
msg7.opt.foobar = 42
self.assertRaises(AttributeError, set_unknown_opt)
def test_decode(self):
rawdata1 = bytes((64,0,0,0))
self.assertEqual(aiocoap.Message.decode(rawdata1).mtype, aiocoap.CON, "wrong message type for decode operation")
self.assertEqual(aiocoap.Message.decode(rawdata1).mid, 0, "wrong message ID for decode operation")
self.assertEqual(aiocoap.Message.decode(rawdata1).code, aiocoap.EMPTY, "wrong message code for decode operation")
self.assertEqual(aiocoap.Message.decode(rawdata1).token, b'', "wrong message token for decode operation")
self.assertEqual(aiocoap.Message.decode(rawdata1).payload, b'', "wrong message payload for decode operation")
rawdata2 = bytes((97,69,188,144,113,68))+b"abcd"+bytes((255,))+b"temp = 22.5 C"
self.assertEqual(aiocoap.Message.decode(rawdata2).mtype, aiocoap.ACK, "wrong message type for decode operation")
self.assertEqual(aiocoap.Message.decode(rawdata2).mid, 0xBC90, "wrong message ID for decode operation")
self.assertEqual(aiocoap.Message.decode(rawdata2).code, aiocoap.CONTENT, "wrong message code for decode operation")
self.assertEqual(aiocoap.Message.decode(rawdata2).token, b'q', "wrong message token for decode operation")
self.assertEqual(aiocoap.Message.decode(rawdata2).payload, b'temp = 22.5 C', "wrong message payload for decode operation")
self.assertEqual(aiocoap.Message.decode(rawdata2).opt.etags, (b"abcd",), "problem with etag option decoding for decode operation")
self.assertEqual(len(aiocoap.Message.decode(rawdata2).opt._options), 1, "wrong number of options after decode operation")
rawdata3 = rawdata1 + bytes((0xf0,))
self.assertRaises(ValueError, aiocoap.Message.decode, rawdata3) # message with option delta reserved for payload marker
class TestReadExtendedFieldValue(unittest.TestCase):
def test_read_extended_field_value(self):
arguments = ((0, b"aaaa"),
(0, b""),
(1, b"aaaa"),
(12,b"aaaa"),
(13,b"aaaa"),
(13,b"a"),
(14,b"aaaa"),
(14,b"aa"))
results = ((0, b"aaaa"),
(0, b""),
(1, b"aaaa"),
(12,b"aaaa"),
(110,b"aaa"),
(110,b""),
(25198,b"aa"),
(25198,b""))
for argument, result in zip(arguments, results):
self.assertEqual(aiocoap.options._read_extended_field_value(argument[0], argument[1]), result,'wrong result for value : '+ repr(argument[0]) + ' , rawdata : ' + repr(argument[1]))
class TestUintOption(unittest.TestCase):
def test_encode(self):
arguments = (0,
1,
2,
40,
50,
255,
256,
1000)
results = (b"",
bytes((1,)),
bytes((2,)),
bytes((40,)),
bytes((50,)),
bytes((255,)),
bytes((1,0)),
bytes((3,232)))
for argument, result in zip(arguments, results):
self.assertEqual(aiocoap.optiontypes.UintOption(0,argument).encode(), result,'wrong encode operation for option value : '+ str(argument))
def test_decode(self):
arguments = ("",
bytes((1,)),
bytes((2,)),
bytes((40,)),
bytes((50,)),
bytes((255,)),
bytes((1,0)),
bytes((3,232)))
results = (0,
1,
2,
40,
50,
255,
256,
1000)
for argument, result in zip(arguments, results):
self.assertEqual(aiocoap.optiontypes.UintOption(0).decode(argument).value, result,'wrong decode operation for rawdata : '+ str(argument))
def test_length(self):
arguments = (0,
1,
2,
40,
50,
255,
256,
1000)
results = (0,
1,
1,
1,
1,
1,
2,
2)
for argument, result in zip(arguments, results):
self.assertEqual(aiocoap.optiontypes.UintOption(0,argument)._length(), result,'wrong length for option value : '+ str(argument))
class TestOptions(unittest.TestCase):
def test_set_uri_path(self):
opt1 = aiocoap.options.Options()
opt1.uri_path = ["core"]
self.assertEqual(len(opt1.get_option(aiocoap.OptionNumber.URI_PATH)), 1, 'wrong uri_path setter operation for single string argument')
self.assertEqual(opt1.get_option(aiocoap.OptionNumber.URI_PATH)[0].value, "core", 'wrong uri_path setter operation for single string argument')
opt2 = aiocoap.options.Options()
opt2.uri_path = ("core",".well-known")
self.assertEqual(len(opt2.get_option(aiocoap.OptionNumber.URI_PATH)), 2, 'wrong uri_path setter operation for 2-element tuple argument')
self.assertEqual(opt2.get_option(aiocoap.OptionNumber.URI_PATH)[0].value, "core", 'wrong uri_path setter operation for 2-element tuple argument')
self.assertEqual(opt2.get_option(aiocoap.OptionNumber.URI_PATH)[1].value, ".well-known", 'wrong uri_path setter operation for 2-element tuple argument')
opt3 = aiocoap.options.Options()
self.assertRaises(TypeError, setattr, opt3, "uri_path", 42)
class TestOptiontypes(unittest.TestCase):
def test_optiontypes(self):
# from rfc725 table 4
on = aiocoap.numbers.OptionNumber
options = {
on.IF_MATCH: "C",
on.URI_HOST: "CU",
on.ETAG: "",
on.MAX_AGE: "U",
on.SIZE1: "N"
}
for o, expected in options.items():
self.assertEqual("C" in expected, o.is_critical(), "Unexpected criticalness of %r"%o)
self.assertEqual("C" not in expected, o.is_elective(), "Unexpected electiveness of %r"%o)
self.assertEqual("U" in expected, o.is_unsafe(), "Unexpected unsafeness of %r"%o)
self.assertEqual("U" not in expected, o.is_safetoforward(), "Unexpected safetoforwardness of %r"%o)
if o.is_safetoforward():
self.assertEqual("N" in expected, o.is_nocachekey(), "Unexpected nocachekeyness of %r"%o)
self.assertEqual("N" not in expected, o.is_cachekey(), "Unexpected cachekeyness of %r"%o)
else:
self.assertRaises(ValueError, o.is_nocachekey)
self.assertRaises(ValueError, o.is_cachekey)
class TestMessageOptionConstruction(unittest.TestCase):
def test_uri_construction(self):
message = aiocoap.Message(uri="coap://localhost:1234/some/path/")
self.assertEqual(message.opt.uri_host, "localhost")
self.assertEqual(message.opt.uri_port, 1234)
self.assertEqual(message.opt.uri_path, ("some", "path", ""))
def test_opt_construction(self):
message = aiocoap.Message(content_format=40, observe=0, uri_path=())
self.assertEqual(message.opt.content_format, 40)
self.assertEqual(message.opt.observe, 0)
self.assertEqual(message.opt.uri_path, ())
def test_copy(self):
message = aiocoap.Message()
original_state = repr(message)
new_one = message.copy(payload=b"x", mid=42, code=0, mtype=3, token=b"xyz", observe=0, content_format=1234)
self.assertEqual(original_state, repr(message), "Message.copy mutated original")
self.assertEqual(new_one.payload, b"x")
self.assertEqual(new_one.mid, 42)
self.assertEqual(new_one.token, b"xyz")
self.assertEqual(str(new_one.code), "EMPTY")
self.assertEqual(str(new_one.mtype), "Type.RST") # "RST" is also ok if the enum decides to have a different str, but it should be of mtype class and not just a number
self.assertEqual(new_one.opt.observe, 0)
self.assertEqual(new_one.opt.content_format, 1234)
new_two = new_one.copy(uri="coap://localhost/some/path")
self.assertEqual(new_two.opt.uri_path, ('some', 'path'))