-
Notifications
You must be signed in to change notification settings - Fork 30
/
test_dvrip.py
686 lines (577 loc) · 24 KB
/
test_dvrip.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
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
677
678
679
680
681
682
683
684
685
686
from datetime import datetime
from hypothesis import given
from hypothesis.strategies import booleans, characters, integers, none, \
sampled_from, text
from io import BytesIO, RawIOBase
from mock import Mock
from pytest import fixture, raises
from socket import socket as Socket
# pylint: disable=wildcard-import,unused-wildcard-import
from dvrip import DVRIP_PORT
from dvrip.discover import _json_to_ip, _json_to_mask, _ip_for_json, \
_mask_for_json
from dvrip.errors import *
from dvrip.info import *
from dvrip.info import _json_to_version, _version_for_json, _versiontype
from dvrip.io import *
from dvrip.log import *
from dvrip.login import *
from dvrip.message import *
from dvrip.message import _ChunkReader, _datetime_for_json, EPOCH, \
_json_to_datetime
from dvrip.packet import *
from dvrip.packet import _mirrorproperty
from dvrip.typing import *
def test_xmmd5_empty():
assert xmmd5('') == 'tlJwpbo6'
def test_xmmd5_tluafed():
assert xmmd5('tluafed') == 'OxhlwSG8'
def test_mirrorproperty():
class Test: # pylint: disable=too-few-public-methods
y = _mirrorproperty('x')
test = Test()
test.y = 'hello'
assert test.x == 'hello'
del test.y
assert getattr(test, 'x', None) is None
test.x = 'goodbye'
assert test.y == 'goodbye'
def test_datetime_for_json():
assert (_datetime_for_json(datetime(2019, 4, 30, 15, 0, 0)) ==
'2019-04-30 15:00:00')
assert (_datetime_for_json(datetime(2000, 1, 1, 0, 0, 0)) ==
'2000-00-00 00:00:00')
assert (_datetime_for_json(None) == '0000-00-00 00:00:00')
with raises(ValueError, match='datetime not after the epoch'):
_datetime_for_json(datetime(1999, 1, 1, 0, 0, 0))
def test_json_to_datetime():
assert (_json_to_datetime('2019-04-30 15:00:00') ==
datetime(2019, 4, 30, 15, 0, 0))
assert (_json_to_datetime('2000-00-00 00:00:00') ==
datetime(2000, 1, 1, 0, 0, 0) ==
EPOCH)
assert (_json_to_datetime('0000-00-00 00:00:00') == None)
with raises(DVRIPDecodeError, match='not a datetime string'):
_json_to_datetime('SPAM')
with raises(DVRIPDecodeError, match='datetime not after the epoch'):
_json_to_datetime('1999-01-01 00:00:00')
def test_ChunkReader():
r = _ChunkReader([b'hel', b'lo'])
assert r.readable()
assert r.readall() == b'hello'
def test_Packet_encode():
p = Packet(0xabcd, 0xdefa, 0x7856, b'hello',
fragments=0x12, fragment=0x34)
assert p.encode().hex() == ('ff010000cdab0000fade0000'
'123456780500000068656c6c6f')
assert p.size == len(p.encode())
def test_Packet_decode():
data = bytes.fromhex('ff010000cdab0000fade0000'
'123456780500000068656c6c6f')
assert Packet.decode(data).encode() == data
def test_Packet_decode_invalid():
with raises(DVRIPDecodeError, match='invalid DVRIP magic'):
Packet.decode(bytes.fromhex('fe010000cdab0000fade0000'
'123456780500000068656c6c6f'))
with raises(DVRIPDecodeError, match='unknown DVRIP version'):
Packet.decode(bytes.fromhex('ff020000cdab0000fade0000'
'123456780500000068656c6c6f'))
with raises(DVRIPDecodeError, match='DVRIP packet too long'):
Packet.decode(bytes.fromhex('ff010000cdab0000fade0000'
'12345678ffffffff68656c6c6f'))
def test_Status_repr():
assert repr(Status.OK) == 'Status(100)'
assert repr(Status.ERROR) == 'Status(101)'
def test_Status_str():
assert str(Status.OK) == 'OK'
assert str(Status.ERROR) == 'Unknown error'
def test_Status_bool():
# pylint: disable=no-value-for-parameter
assert Status(100)
assert not Status(101)
def test_Status_for_json():
# pylint: disable=no-value-for-parameter
assert Status(100).for_json() == 100
assert Status(101).for_json() == 101
def test_Status_json_to():
# pylint: disable=no-value-for-parameter
assert Status.json_to(100) == Status(100)
with raises(DVRIPDecodeError, match="not a known status code"):
Status.json_to('SPAM')
@given(integers(min_value=0, max_value=0xFFFFFFFF))
def test_Session_repr(s):
assert repr(Session(s)) == 'Session(0x{:08X})'.format(s)
@given(integers(min_value=0, max_value=0xFFFFFFFF),
integers(min_value=0, max_value=0xFFFFFFFF))
def test_Session_eq(s, t):
assert (Session(s) == Session(t)) == (s == t)
assert Session(s) != False
@given(integers(min_value=0, max_value=0xFFFFFFFF))
def test_Session_hash(s):
assert hash(Session(s)) == hash(s)
@given(integers(min_value=0, max_value=0xFFFFFFFF))
def test_Session_forjson(s):
assert Session(s).for_json() == '0x{:08X}'.format(s)
def test_Session_jsonto():
assert Session.json_to('0x00000057') == Session(0x57)
with raises(DVRIPDecodeError, match="not a session ID"):
Session.json_to('SPAM')
with raises(DVRIPDecodeError, match="not a session ID"):
Session.json_to('0xSPAM')
class PseudoSocket(RawIOBase):
def __init__(self, rfile, wfile):
self.rfile = rfile
self.wfile = wfile
def readable(self):
return True
def readinto(self, *args, **named):
return self.rfile.readinto(*args, **named)
def writable(self):
return True
def write(self, *args, **named):
return self.wfile.write(*args, **named)
def test_Hash_repr():
assert repr(Hash.XMMD5) == 'Hash.XMMD5'
def test_Hash_str():
assert str(Hash.XMMD5) == 'MD5'
def test_Hash_forjson():
assert Hash.XMMD5.for_json() == 'MD5'
def test_Hash_jsonto():
assert Hash.json_to('MD5') == Hash.XMMD5
with raises(DVRIPDecodeError, match='not a known hash function'):
Hash.json_to('SPAM')
@fixture
def clitosrv():
return BytesIO()
@fixture
def srvtocli():
return BytesIO()
@fixture
def clifile(clitosrv, srvtocli):
return PseudoSocket(srvtocli, clitosrv)
@fixture
def srvfile(clitosrv, srvtocli):
return PseudoSocket(clitosrv, srvtocli)
@fixture
def clisock(clifile):
return Mock(Socket, makefile=Mock(return_value=clifile))
@fixture
def srvsock(srvfile):
return Mock(Socket, makefile=Mock(return_value=srvfile))
@fixture
def cliconn(clisock):
return DVRIPClient(clisock)
@fixture
def srvconn(srvsock):
return DVRIPServer(srvsock)
@fixture
def session():
return Session(0x57)
@fixture
def clinoconn(cliconn, session):
cliconn.session = session
return cliconn
@fixture
def srvnoconn(srvconn, session):
srvconn.session = session
return srvconn
def test_ClientLogin_topackets(session):
p, = tuple(ClientLogin(username='admin',
passhash='tlJwpbo6',
hash=Hash.XMMD5,
service='DVRIP-Web')
.topackets(session, 0))
assert (p.encode() == b'\xFF\x01\x00\x00\x57\x00\x00\x00\x00\x00'
b'\x00\x00\x00\x00\xE8\x03\x5D\x00\x00\x00'
b'{"UserName": "admin", '
b'"PassWord": "tlJwpbo6", '
b'"EncryptType": "MD5", '
b'"LoginType": "DVRIP-Web"}')
def test_ClientLogin_topackets_chunked(session):
p, q = tuple(ClientLogin(username='a'*32768,
passhash='tlJwpbo6',
hash=Hash.XMMD5,
service='DVRIP-Web')
.topackets(session, 0))
assert (p.encode() == b'\xFF\x01\x00\x00\x57\x00\x00\x00\x00\x00'
b'\x00\x00\x02\x00\xE8\x03\x00\x80\x00\x00'
b'{"UserName": "' + b'a' * (32768 - 14))
assert (q.encode() == b'\xFF\x01\x00\x00\x57\x00\x00\x00\x00\x00'
b'\x00\x00\x02\x01\xE8\x03\x58\x00\x00\x00' +
b'a' * 14 + b'", '
b'"PassWord": "tlJwpbo6", '
b'"EncryptType": "MD5", '
b'"LoginType": "DVRIP-Web"}')
def test_ClientLogin_frompackets_invalid():
packet = p = Packet(0x57, 0, 1000,
b'{"UserName": "admin", "PassWord": "tlJwpbo6", '
b'"EncryptType": "SPAM", "LoginType": "DVRIP-Web"}'
b'\x0A\x00',
fragments=0, fragment=0)
with raises(DVRIPDecodeError,
match='not a known hash function'):
ClientLogin.frompackets([packet])
def test_ClientLoginReply_frompackets():
chunks = [b'\xFF\x01\x00\x00\x57\x00\x00\x00\x00\x00',
b'\x00\x00\x00\x00\xE9\x03\x96\x00\x00\x00'
b'{ "AliveInterval" : 21, "ChannelNum" : 4, '
b'"DataUseAES" : false, "DeviceType " : "HVR", ',
b'"ExtraChannel" : 0, "Ret" : 100, '
b'"SessionID" : "0x00000057" }\x0A\x00']
m = ClientLoginReply.frompackets([Packet.load(_ChunkReader(chunks))])
assert (m.keepalive == 21 and m.channels == 4 and m.encrypt is False and
m.views == 0 and m.status == Status(100) and # pylint: disable=no-value-for-parameter
m.session == Session(0x57))
def test_ClientLoginReply_fromchunks_empty():
with raises(DVRIPDecodeError, match='no data in DVRIP packet'):
ClientLoginReply.fromchunks([])
def test_controlfilter_send():
chunks = [b'\xFF\x01\x00\x00\x57\x00\x00\x00\x00\x00',
b'\x00\x00\x00\x00\xe9\x03\x96\x00\x00\x00'
b'{ "AliveInterval" : 21, "ChannelNum" : 4, '
b'"DataUseAES" : false, "DeviceType " : "HVR", ',
b'"ExtraChannel" : 0, "Ret" : 100, '
b'"SessionID" : "0x00000057" }\x0A\x00']
replies = ClientLogin.replies(0)
assert replies.send(None) is None
m = replies.send(Packet.load(_ChunkReader(chunks)))
assert (m.keepalive == 21 and m.channels == 4 and m.encrypt is False and
m.views == 0 and m.status == Status(100) and # pylint: disable=no-value-for-parameter
m.session == Session(0x57))
with raises(StopIteration):
replies.send(None)
def test_controlfilter_send_chunked():
p = Packet(0x57, 0, 1001,
b'{ "AliveInterval" : 21, "ChannelNum" : 4, '
b'"DataUseAES" : false, "DeviceType " : "HVR", ',
fragments=2, fragment=0)
q = Packet(0x57, 0, 1001,
b'"ExtraChannel" : 0, "Ret" : 100, '
b'"SessionID" : "0x00000057" }\x0A\x00',
fragments=2, fragment=1)
replies = ClientLogin.replies(0)
assert replies.send(None) is None
assert replies.send(p) is None
assert replies.send(None) is None
m = replies.send(q)
assert (m.keepalive == 21 and m.channels == 4 and m.encrypt is False and
m.views == 0 and m.status == Status(100) and # pylint: disable=no-value-for-parameter
m.session == Session(0x57))
with raises(StopIteration):
replies.send(None)
def test_controlfilter_send_wrong_type():
p = Packet(0x57, 0, 1002,
b'{ "AliveInterval" : 21, "ChannelNum" : 4, '
b'"DataUseAES" : false, "DeviceType " : "HVR", ',
fragments=2, fragment=0)
replies = ClientLogin.replies(0)
assert replies.send(None) is None
assert replies.send(p) is NotImplemented
def test_controlfilter_send_wrong_number():
p = Packet(0x3F, 0, 1001,
b'{ "AliveInterval" : 21, "ChannelNum" : 4, '
b'"DataUseAES" : false, "DeviceType " : "HVR", ',
fragments=2, fragment=0)
q = Packet(0x3F, 57, 1001,
b'"ExtraChannel" : 0, "Ret" : 100, '
b'"SessionID" : "0x00000057" }\x0A\x00',
fragments=2, fragment=1)
replies = ClientLogin.replies(0)
assert replies.send(None) is None
assert replies.send(p) is None
assert replies.send(None) is None
assert replies.send(q) is NotImplemented
def test_controlfilter_send_invalid_fragments():
p = Packet(0x3F, 0, 1001,
b'{ "AliveInterval" : 21, "ChannelNum" : 4, '
b'"DataUseAES" : false, "DeviceType " : "HVR", ',
fragments=2, fragment=0)
q = Packet(0x3F, 0, 1001,
b'"ExtraChannel" : 0, "Ret" : 100, '
b'"SessionID" : "0x00000057" }\x0A\x00',
fragments=3, fragment=1)
replies = ClientLogin.replies(0)
assert replies.send(None) is None
assert replies.send(p) is None
assert replies.send(None) is None
with raises(DVRIPDecodeError, match='conflicting fragment counts'):
replies.send(q)
def test_controlfilter_send_invalid_overrun():
p = Packet(0x3F, 0, 1001,
b'{ "AliveInterval" : 21, "ChannelNum" : 4, '
b'"DataUseAES" : false, "DeviceType " : "HVR", ',
fragments=2, fragment=4)
replies = ClientLogin.replies(0)
assert replies.send(None) is None
with raises(DVRIPDecodeError, match='invalid fragment number'):
replies.send(p)
def test_controlfilter_send_invalid_overlap():
p = Packet(0x3F, 0, 1001,
b'{ "AliveInterval" : 21, "ChannelNum" : 4, '
b'"DataUseAES" : false, "DeviceType " : "HVR", ',
fragments=2, fragment=0)
q = Packet(0x3F, 0, 1001,
b'"ExtraChannel" : 0, "Ret" : 100, '
b'"SessionID" : "0x00000057" }\x0A\x00',
fragments=2, fragment=0)
replies = ClientLogin.replies(0)
assert replies.send(None) is None
assert replies.send(p) is None
assert replies.send(None) is None
with raises(DVRIPDecodeError, match='overlapping fragments'):
replies.send(q)
def test_streamfilter_send(session):
p = Packet(session.id, 0, 1426, b'hello', channel=0, end=0)
r = Packet(session.id, 2, 1425, b'world', channel=0, end=0)
q = Packet(session.id, 1, 1426, b'', channel=0, end=0)
s = Packet(session.id, 2, 1426, b'world', channel=0, end=1)
f = streamfilter(1426) # pylint: disable=
assert f.send(None) is None # prime
assert f.send(p) == b'hello'
assert f.send(None) is None # re-prime
assert f.send(q) is None
assert f.send(None) is None
assert f.send(r) is NotImplemented
assert f.send(s) == b'world'
with raises(StopIteration):
f.send(None) # re-prime
class ExampleRequest(Request):
type = 57
reply = None # FIXME
data = 42
def for_json(self):
return 'example'
@classmethod
def json_to(cls):
return cls()
def test_Message_stream(session):
p = Packet(session.id, 0, 42, b'hello', channel=0, end=1)
r = ExampleRequest()
f = r.stream()
assert f.send(None) is None # prime
assert f.send(p) == b'hello'
with raises(StopIteration):
f.send(None) # re-prime
def test_ClientLogout_topackets(session):
p, = (ClientLogout(session=session).topackets(session, 0))
assert p.encode() == (b'\xFF\x01\x00\x00\x57\x00\x00\x00\x00\x00'
b'\x00\x00\x00\x00\xEA\x03\x27\x00\x00\x00'
b'{"Name": "", "SessionID": "0x00000057"}')
def test_ClientLogoutReply_replies():
data = (b'\xFF\x01\x00\x00\x57\x00\x00\x00\x00\x00'
b'\x00\x00\x00\x00\xeb\x03\x3A\x00\x00\x00'
b'{ "Name" : "", "Ret" : 100, '
b'"SessionID" : "0x00000057" }'
b'\x0A\x00')
replies = ClientLogout.replies(0)
assert replies.send(None) is None
m = replies.send(Packet.decode(data))
assert m.status == Status(100) and m.session == Session(0x57)
with raises(StopIteration):
replies.send(None)
def test_Client_logout(capsys, session, clinoconn, clitosrv, srvtocli):
p, = (ClientLogoutReply(status=Status.OK,
session=session)
.topackets(session, 2))
p.dump(srvtocli)
srvtocli.seek(0)
clinoconn.logout()
clitosrv.seek(0); m = ClientLogout.frompackets([Packet.load(clitosrv)])
assert m == ClientLogout(session=session)
def test_Client_logout_stray(capsys, session, clinoconn, clitosrv, srvtocli):
p, = (ClientLogoutReply(status=Status.OK,
session=session)
.topackets(session, 57))
p.dump(srvtocli)
srvtocli.seek(0)
with raises(DVRIPDecodeError, match='stray packet'):
clinoconn.logout()
def test_Client_login(session, cliconn, clitosrv, srvtocli):
p, = (ClientLoginReply(status=Status.OK,
session=session,
keepalive=21,
channels=4,
views=0,
chassis='HVR',
encrypt=False)
.topackets(session, 2))
p.dump(srvtocli); srvtocli.seek(0)
cliconn.connect(('example.com', DVRIP_PORT), 'admin', '')
clitosrv.seek(0); m = ClientLogin.frompackets([Packet.load(clitosrv)])
assert (m.username == 'admin' and m.passhash == xmmd5('') and
m.hash == Hash.XMMD5 and m.service == 'DVRIP-Web')
def test_Client_login_invalid(session, cliconn, clitosrv, srvtocli):
p, = (ClientLoginReply(status=Status.ERROR,
session=session,
keepalive=21,
channels=4,
views=0,
chassis='HVR',
encrypt=False)
.topackets(session, 2))
p.dump(srvtocli); srvtocli.seek(0)
with raises(DVRIPRequestError, match='Unknown error'):
try:
cliconn.connect(('example.com', DVRIP_PORT),
'admin', '')
except DVRIPRequestError as e:
assert e.code == Status.ERROR.code
raise
@given(text())
def test_version_jsonto(s):
assert _json_to_version('Unknown') is None
assert s == 'Unknown' or _json_to_version(s) == s
@given(none() | text())
def test_version_forjson(s):
assert _version_for_json(None) == 'Unknown'
assert s is None or _version_for_json(s) == s
with raises(ValueError, match='argument must not be'):
_version_for_json('Unknown')
def test_version():
assert _versiontype == (_json_to_version, _version_for_json)
@given(sampled_from(list(Info.__members__.values())))
def test_Info_repr(cmd):
assert repr(cmd) == 'Info.{}'.format(cmd.name)
@given(sampled_from(list(Info.__members__.values())))
def test_Info_str(cmd):
assert str(cmd) == cmd.value
@given(sampled_from(list(Info.__members__.values())))
def test_Info_forjson(cmd):
assert cmd.for_json() == cmd.value
@given(sampled_from(list(Info.__members__.values())))
def test_info_jsonto(cmd):
assert Info.json_to(cmd.value) == cmd
with raises(DVRIPDecodeError, match='not a known'):
Info.json_to('SPAM')
octets = lambda: integers(min_value=0, max_value=255)
@given(octets(), octets(), octets(), octets())
def test_ip_forjson(a, b, c, d):
assert (_ip_for_json('{}.{}.{}.{}'.format(a, b, c, d)) ==
'0x{3:02X}{2:02X}{1:02X}{0:02X}'.format(a, b, c, d))
@given(octets(), octets(), octets(), octets())
def test_ip_jsonto(a, b, c, d):
assert (_json_to_ip('0x{3:02X}{2:02X}{1:02X}{0:02X}'
.format(a, b, c, d)) ==
'{}.{}.{}.{}'.format(a, b, c, d))
@given(octets(), octets(), octets(), octets())
def test_ip_forjson_jsonto(a, b, c, d):
value = '{}.{}.{}.{}'.format(a, b, c, d)
assert _json_to_ip(_ip_for_json(value)) == value
@given(octets(), octets(), octets(), octets())
def test_ip_jsonto_forjson(a, b, c, d):
value = '0x{3:02X}{2:02X}{1:02X}{0:02X}'.format(a, b, c, d)
assert _ip_for_json(_json_to_ip(value)) == value
def test_mask_forjson():
assert _mask_for_json(24) == '0x00FFFFFF'
assert _mask_for_json(20) == '0x000FFFFF'
assert _mask_for_json(16) == '0x0000FFFF'
assert _mask_for_json(8) == '0x000000FF'
def test_mask_jsonto():
assert _json_to_mask('0x00FFFFFF') == 24
assert _json_to_mask('0x000FFFFF') == 20
assert _json_to_mask('0x0000FFFF') == 16
assert _json_to_mask('0x000000FF') == 8
def idtext():
return text(alphabet=characters(blacklist_characters=',:'))
@given(idtext(), idtext(), idtext())
def test_ConnectionEntry_str(user, service, host):
assert (str(ConnectionEntry(user=user, service=service)) ==
'user {} service {}'.format(user, service))
assert (str(ConnectionEntry(user=user, service=service, host=host)) ==
'user {} service {} host {}'.format(user, service, host))
@given(idtext(), idtext(), none() | idtext())
def test_ConnectionEntry_repr(user, service, host):
assert (repr(ConnectionEntry(user=user, service=service)) ==
'ConnectionEntry(user={!r}, service={!r}, host=None)'
.format(user, service, host))
assert (repr(ConnectionEntry(user=user, service=service, host=host)) ==
'ConnectionEntry(user={!r}, service={!r}, host={!r})'
.format(user, service, host))
@given(idtext(), idtext(), none() | idtext(),
idtext(), idtext(), none() | idtext())
def test_ConnectionEntry_eq(auser, aservice, ahost, buser, bservice, bhost):
assert ((ConnectionEntry(user=auser, service=aservice, host=ahost) ==
ConnectionEntry(user=buser, service=bservice, host=bhost)) ==
(auser == buser and aservice == bservice and ahost == bhost))
assert ConnectionEntry(user=auser, service=aservice, host=ahost) != False
@given(idtext(), idtext(), idtext())
def test_ConnectionEntry_forjson(user, service, host):
assert (ConnectionEntry(user=user, service=service).for_json() ==
'{},{}'.format(user, service))
assert (ConnectionEntry(user=user, service=service, host=host)
.for_json() ==
'{},{}:{}'.format(user, service, host))
@given(idtext(), idtext(), idtext())
def test_ConnectionEntry_jsonto(user, service, host):
assert (ConnectionEntry.json_to('{},{}'.format(user, service)) ==
ConnectionEntry(user=user, service=service))
assert (ConnectionEntry.json_to('{},{}:{}'
.format(user, service, host)) ==
ConnectionEntry(user=user, service=service, host=host))
with raises(DVRIPDecodeError, match='not a valid connection entry'):
ConnectionEntry.json_to('admin')
@given(idtext(), idtext(), none() | idtext())
def test_ConnectionEntry_forjson_jsonto(user, service, host):
value = ConnectionEntry(user=user, service=service, host=host)
assert ConnectionEntry.json_to(value.for_json()) == value
@given(idtext(), idtext(), none() | idtext())
def test_ConnectionEntry_jsonto_forjson(user, service, host):
datum = '{},{}'.format(user, service)
if host is not None:
datum += ':' + host
assert ConnectionEntry.json_to(datum).for_json() == datum
@given(integers(), sampled_from(RecordTrigger))
def test_RecordEntry_str(channel, trigger):
assert (str(RecordEntry(channel=channel, trigger=trigger)) ==
'channel {} trigger {}'.format(channel, trigger.name.lower()))
@given(integers(), sampled_from(RecordTrigger))
def test_RecordEntry_repr(channel, trigger):
assert (repr(RecordEntry(channel=channel, trigger=trigger)) ==
'RecordEntry(channel={!r}, trigger={!r})'
.format(channel, trigger))
@given(integers(), sampled_from(RecordTrigger),
integers(), sampled_from(RecordTrigger))
def test_RecordEntry_eq(achannel, atrigger, bchannel, btrigger):
assert ((RecordEntry(channel=achannel, trigger=atrigger) ==
RecordEntry(channel=bchannel, trigger=btrigger)) ==
(achannel == bchannel and atrigger == btrigger))
assert RecordEntry(channel=achannel, trigger=atrigger) != False
@given(integers(), sampled_from(RecordTrigger))
def test_RecordEntry_forjson(channel, trigger):
assert (RecordEntry(channel=channel, trigger=trigger).for_json() ==
'{},{}'.format(trigger.value, channel))
@given(integers(), sampled_from(RecordTrigger))
def test_RecordEntry_jsonto(channel, trigger):
assert (RecordEntry.json_to('{},{}'.format(trigger.value, channel)) ==
RecordEntry(channel=channel, trigger=trigger))
with raises(DVRIPDecodeError, match='not a valid record entry'):
RecordEntry.json_to('spam')
with raises(DVRIPDecodeError, match='not a valid record entry'):
RecordEntry.json_to('spam,1,eggs')
with raises(DVRIPDecodeError, match='not a valid record entry'):
RecordEntry.json_to('MotionDetect,spam')
@given(integers(), sampled_from(RecordTrigger))
def test_RecordEntry_forjson_jsonto(channel, trigger):
value = RecordEntry(channel=channel, trigger=trigger)
assert RecordEntry.json_to(value.for_json()) == value
@given(integers(), sampled_from(RecordTrigger))
def test_RecordEntry_jsonto_forjson(channel, trigger):
datum = '{},{}'.format(trigger.value, channel)
assert RecordEntry.json_to(datum).for_json() == datum
@given(sampled_from(EntryType))
def test_EntryType_repr(value):
assert repr(value) == 'EntryType.{}'.format(value.name)
@given(sampled_from(EntryType))
def test_EntryType_forjson(value):
assert value.for_json() == value.value
@given(sampled_from(EntryType))
def test_EntryType_jsonto(value):
assert EntryType.json_to(value.value) == value
with raises(DVRIPDecodeError, match='not a known entry type'):
EntryType.json_to('Spam')
@given(sampled_from(EntryType))
def test_EntryType_forjson_jsonto(value):
assert EntryType.json_to(value.for_json()) == value
@given(sampled_from(EntryType))
def test_EntryType_jsonto_forjson(value):
assert EntryType.json_to(value.value).for_json() == value.value