@@ -246,13 +246,13 @@ def test_get_accessories_with_crypto(driver):
246
246
hap_proto .hap_crypto = MockHAPCrypto ()
247
247
hap_proto .handler .is_encrypted = True
248
248
249
- with patch .object (hap_proto .transport , "write " ) as writer :
249
+ with patch .object (hap_proto .transport , "writelines " ) as writelines :
250
250
hap_proto .data_received (
251
251
b"GET /accessories HTTP/1.1\r \n Host: Bridge\\ 032C77C47._hap._tcp.local\r \n \r \n " # pylint: disable=line-too-long
252
252
)
253
253
254
254
hap_proto .close ()
255
- assert b"accessories" in writer . call_args_list [0 ][0 ][ 0 ]
255
+ assert b"accessories" in b"" . join ( writelines . call_args_list [0 ][0 ])
256
256
257
257
258
258
def test_get_characteristics_with_crypto (driver ):
@@ -273,7 +273,7 @@ def test_get_characteristics_with_crypto(driver):
273
273
hap_proto .hap_crypto = MockHAPCrypto ()
274
274
hap_proto .handler .is_encrypted = True
275
275
276
- with patch .object (hap_proto .transport , "write " ) as writer :
276
+ with patch .object (hap_proto .transport , "writelines " ) as writelines :
277
277
hap_proto .data_received (
278
278
b"GET /characteristics?id=3762173001.7 HTTP/1.1\r \n Host: HASS\\ 032Bridge\\ 032YPHW\\ 032B223AD._hap._tcp.local\r \n \r \n " # pylint: disable=line-too-long
279
279
)
@@ -282,13 +282,15 @@ def test_get_characteristics_with_crypto(driver):
282
282
)
283
283
284
284
hap_proto .close ()
285
- assert b"Content-Length:" in writer .call_args_list [0 ][0 ][0 ]
286
- assert b"Transfer-Encoding: chunked\r \n \r \n " not in writer .call_args_list [0 ][0 ][0 ]
287
- assert b"-70402" in writer .call_args_list [0 ][0 ][0 ]
285
+ joined0 = b"" .join (writelines .call_args_list [0 ][0 ])
286
+ assert b"Content-Length:" in joined0
287
+ assert b"Transfer-Encoding: chunked\r \n \r \n " not in joined0
288
+ assert b"-70402" in joined0
288
289
289
- assert b"Content-Length:" in writer .call_args_list [1 ][0 ][0 ]
290
- assert b"Transfer-Encoding: chunked\r \n \r \n " not in writer .call_args_list [1 ][0 ][0 ]
291
- assert b"TestAcc" in writer .call_args_list [1 ][0 ][0 ]
290
+ joined1 = b"" .join (writelines .call_args_list [1 ][0 ])
291
+ assert b"Content-Length:" in joined1
292
+ assert b"Transfer-Encoding: chunked\r \n \r \n " not in joined1
293
+ assert b"TestAcc" in joined1
292
294
293
295
294
296
def test_set_characteristics_with_crypto (driver ):
@@ -309,13 +311,15 @@ def test_set_characteristics_with_crypto(driver):
309
311
hap_proto .hap_crypto = MockHAPCrypto ()
310
312
hap_proto .handler .is_encrypted = True
311
313
312
- with patch .object (hap_proto .transport , "write " ) as writer :
314
+ with patch .object (hap_proto .transport , "writelines " ) as writelines :
313
315
hap_proto .data_received (
314
316
b'PUT /characteristics HTTP/1.1\r \n Host: HASS12\\ 032AD1C22._hap._tcp.local\r \n Content-Length: 49\r \n Content-Type: application/hap+json\r \n \r \n {"characteristics":[{"aid":1,"iid":9,"ev":true}]}' # pylint: disable=line-too-long
315
317
)
316
318
317
319
hap_proto .close ()
318
- assert writer .call_args_list [0 ][0 ][0 ] == b"HTTP/1.1 204 No Content\r \n \r \n "
320
+ assert (
321
+ b"" .join (writelines .call_args_list [0 ][0 ]) == b"HTTP/1.1 204 No Content\r \n \r \n "
322
+ )
319
323
320
324
321
325
def test_crypto_failure_closes_connection (driver ):
@@ -352,14 +356,14 @@ def test_empty_encrypted_data(driver):
352
356
353
357
hap_proto .hap_crypto = MockHAPCrypto ()
354
358
hap_proto .handler .is_encrypted = True
355
- with patch .object (hap_proto .transport , "write " ) as writer :
359
+ with patch .object (hap_proto .transport , "writelines " ) as writelines :
356
360
hap_proto .data_received (b"" )
357
361
hap_proto .data_received (
358
362
b"GET /accessories HTTP/1.1\r \n Host: Bridge\\ 032C77C47._hap._tcp.local\r \n \r \n " # pylint: disable=line-too-long
359
363
)
360
364
361
365
hap_proto .close ()
362
- assert b"accessories" in writer . call_args_list [0 ][0 ][ 0 ]
366
+ assert b"accessories" in b"" . join ( writelines . call_args_list [0 ][0 ])
363
367
364
368
365
369
def test_http_11_keep_alive (driver ):
@@ -434,13 +438,13 @@ def test_camera_snapshot_without_snapshot_support(driver):
434
438
hap_proto .hap_crypto = MockHAPCrypto ()
435
439
hap_proto .handler .is_encrypted = True
436
440
437
- with patch .object (hap_proto .transport , "write " ) as writer :
441
+ with patch .object (hap_proto .transport , "writelines " ) as writelines :
438
442
hap_proto .data_received (
439
443
b'POST /resource HTTP/1.1\r \n Host: HASS\\ 032Bridge\\ 032BROZ\\ 0323BF435._hap._tcp.local\r \n Content-Length: 79\r \n Content-Type: application/hap+json\r \n \r \n {"image-height":360,"resource-type":"image","image-width":640,"aid":1411620844}' # pylint: disable=line-too-long
440
444
)
441
445
442
446
hap_proto .close ()
443
- assert b"-70402" in writer . call_args_list [0 ][0 ][ 0 ]
447
+ assert b"-70402" in b"" . join ( writelines . call_args_list [0 ][0 ])
444
448
445
449
446
450
@pytest .mark .asyncio
@@ -464,14 +468,14 @@ def _get_snapshot(*_):
464
468
hap_proto .hap_crypto = MockHAPCrypto ()
465
469
hap_proto .handler .is_encrypted = True
466
470
467
- with patch .object (hap_proto .transport , "write " ) as writer :
471
+ with patch .object (hap_proto .transport , "writelines " ) as writelines :
468
472
hap_proto .data_received (
469
473
b'POST /resource HTTP/1.1\r \n Host: HASS\\ 032Bridge\\ 032BROZ\\ 0323BF435._hap._tcp.local\r \n Content-Length: 79\r \n Content-Type: application/hap+json\r \n \r \n {"image-height":360,"resource-type":"image","image-width":640,"aid":1411620844}' # pylint: disable=line-too-long
470
474
)
471
475
await hap_proto .response .task
472
476
await asyncio .sleep (0 )
473
477
474
- assert b"fakesnap" in writer . call_args_list [0 ][0 ][ 0 ]
478
+ assert b"fakesnap" in b"" . join ( writelines . call_args_list [0 ][0 ])
475
479
476
480
hap_proto .close ()
477
481
@@ -497,14 +501,14 @@ async def _async_get_snapshot(*_):
497
501
hap_proto .hap_crypto = MockHAPCrypto ()
498
502
hap_proto .handler .is_encrypted = True
499
503
500
- with patch .object (hap_proto .transport , "write " ) as writer :
504
+ with patch .object (hap_proto .transport , "writelines " ) as writelines :
501
505
hap_proto .data_received (
502
506
b'POST /resource HTTP/1.1\r \n Host: HASS\\ 032Bridge\\ 032BROZ\\ 0323BF435._hap._tcp.local\r \n Content-Length: 79\r \n Content-Type: application/hap+json\r \n \r \n {"image-height":360,"resource-type":"image","image-width":640,"aid":1411620844}' # pylint: disable=line-too-long
503
507
)
504
508
await hap_proto .response .task
505
509
await asyncio .sleep (0 )
506
510
507
- assert b"fakesnap" in writer . call_args_list [0 ][0 ][ 0 ]
511
+ assert b"fakesnap" in b"" . join ( writelines . call_args_list [0 ][0 ])
508
512
509
513
hap_proto .close ()
510
514
@@ -532,14 +536,14 @@ async def _async_get_snapshot(*_):
532
536
hap_proto .handler .is_encrypted = True
533
537
534
538
with patch .object (hap_handler , "RESPONSE_TIMEOUT" , 0.1 ), patch .object (
535
- hap_proto .transport , "write "
536
- ) as writer :
539
+ hap_proto .transport , "writelines "
540
+ ) as writelines :
537
541
hap_proto .data_received (
538
542
b'POST /resource HTTP/1.1\r \n Host: HASS\\ 032Bridge\\ 032BROZ\\ 0323BF435._hap._tcp.local\r \n Content-Length: 79\r \n Content-Type: application/hap+json\r \n \r \n {"image-height":360,"resource-type":"image","image-width":640,"aid":1411620844}' # pylint: disable=line-too-long
539
543
)
540
544
await asyncio .sleep (0.3 )
541
545
542
- assert b"-70402" in writer . call_args_list [0 ][0 ][ 0 ]
546
+ assert b"-70402" in b"" . join ( writelines . call_args_list [0 ][0 ])
543
547
544
548
hap_proto .close ()
545
549
@@ -564,7 +568,7 @@ def _make_response(*_):
564
568
response .shared_key = b"newkey"
565
569
return response
566
570
567
- with patch .object (hap_proto .transport , "write " ), patch .object (
571
+ with patch .object (hap_proto .transport , "writelines " ), patch .object (
568
572
hap_proto .handler , "dispatch" , _make_response
569
573
):
570
574
hap_proto .data_received (
@@ -635,7 +639,7 @@ async def _async_get_snapshot(*_):
635
639
hap_proto .hap_crypto = MockHAPCrypto ()
636
640
hap_proto .handler .is_encrypted = True
637
641
638
- with patch .object (hap_proto .transport , "write " ) as writer :
642
+ with patch .object (hap_proto .transport , "writelines " ) as writelines :
639
643
hap_proto .data_received (
640
644
b'POST /resource HTTP/1.1\r \n Host: HASS\\ 032Bridge\\ 032BROZ\\ 0323BF435._hap._tcp.local\r \n Content-Length: 79\r \n Content-Type: application/hap+json\r \n \r \n {"image-height":360,"resource-type":"image","image-width":640,"aid":1411620844}' # pylint: disable=line-too-long
641
645
)
@@ -645,7 +649,7 @@ async def _async_get_snapshot(*_):
645
649
pass
646
650
await asyncio .sleep (0 )
647
651
648
- assert b"-70402" in writer . call_args_list [0 ][0 ][ 0 ]
652
+ assert b"-70402" in b"" . join ( writelines . call_args_list [0 ][0 ])
649
653
650
654
hap_proto .close ()
651
655
@@ -671,7 +675,7 @@ def _get_snapshot(*_):
671
675
hap_proto .hap_crypto = MockHAPCrypto ()
672
676
hap_proto .handler .is_encrypted = True
673
677
674
- with patch .object (hap_proto .transport , "write " ) as writer :
678
+ with patch .object (hap_proto .transport , "writelines " ) as writelines :
675
679
hap_proto .data_received (
676
680
b'POST /resource HTTP/1.1\r \n Host: HASS\\ 032Bridge\\ 032BROZ\\ 0323BF435._hap._tcp.local\r \n Content-Length: 79\r \n Content-Type: application/hap+json\r \n \r \n {"image-height":360,"resource-type":"image","image-width":640,"aid":1411620844}' # pylint: disable=line-too-long
677
681
)
@@ -681,7 +685,7 @@ def _get_snapshot(*_):
681
685
pass
682
686
await asyncio .sleep (0 )
683
687
684
- assert b"-70402" in writer . call_args_list [0 ][0 ][ 0 ]
688
+ assert b"-70402" in b"" . join ( writelines . call_args_list [0 ][0 ])
685
689
686
690
hap_proto .close ()
687
691
@@ -702,14 +706,14 @@ async def test_camera_snapshot_missing_accessory(driver):
702
706
hap_proto .hap_crypto = MockHAPCrypto ()
703
707
hap_proto .handler .is_encrypted = True
704
708
705
- with patch .object (hap_proto .transport , "write " ) as writer :
709
+ with patch .object (hap_proto .transport , "writelines " ) as writelines :
706
710
hap_proto .data_received (
707
711
b'POST /resource HTTP/1.1\r \n Host: HASS\\ 032Bridge\\ 032BROZ\\ 0323BF435._hap._tcp.local\r \n Content-Length: 79\r \n Content-Type: application/hap+json\r \n \r \n {"image-height":360,"resource-type":"image","image-width":640,"aid":1411620844}' # pylint: disable=line-too-long
708
712
)
709
713
await asyncio .sleep (0 )
710
714
711
715
assert hap_proto .response is None
712
- assert b"-70402" in writer . call_args_list [0 ][0 ][ 0 ]
716
+ assert b"-70402" in b"" . join ( writelines . call_args_list [0 ][0 ])
713
717
hap_proto .close ()
714
718
715
719
@@ -777,20 +781,22 @@ def test_explicit_close(driver: AccessoryDriver):
777
781
hap_proto .handler .is_encrypted = True
778
782
assert hap_proto .transport .is_closing () is False
779
783
780
- with patch .object (hap_proto .transport , "write " ) as writer :
784
+ with patch .object (hap_proto .transport , "writelines " ) as writelines :
781
785
hap_proto .data_received (
782
786
b"GET /characteristics?id=3762173001.7 HTTP/1.1\r \n Host: HASS\\ 032Bridge\\ 032YPHW\\ 032B223AD._hap._tcp.local\r \n \r \n " # pylint: disable=line-too-long
783
787
)
784
788
hap_proto .data_received (
785
789
b"GET /characteristics?id=1.5 HTTP/1.1\r \n Connection: close\r \n Host: HASS\\ 032Bridge\\ 032YPHW\\ 032B223AD._hap._tcp.local\r \n \r \n " # pylint: disable=line-too-long
786
790
)
787
791
788
- assert b"Content-Length:" in writer .call_args_list [0 ][0 ][0 ]
789
- assert b"Transfer-Encoding: chunked\r \n \r \n " not in writer .call_args_list [0 ][0 ][0 ]
790
- assert b"-70402" in writer .call_args_list [0 ][0 ][0 ]
792
+ join0 = b"" .join (writelines .call_args_list [0 ][0 ])
793
+ assert b"Content-Length:" in join0
794
+ assert b"Transfer-Encoding: chunked\r \n \r \n " not in join0
795
+ assert b"-70402" in join0
791
796
792
- assert b"Content-Length:" in writer .call_args_list [1 ][0 ][0 ]
793
- assert b"Transfer-Encoding: chunked\r \n \r \n " not in writer .call_args_list [1 ][0 ][0 ]
794
- assert b"TestAcc" in writer .call_args_list [1 ][0 ][0 ]
797
+ join1 = b"" .join (writelines .call_args_list [1 ][0 ])
798
+ assert b"Content-Length:" in join1
799
+ assert b"Transfer-Encoding: chunked\r \n \r \n " not in join1
800
+ assert b"TestAcc" in join1
795
801
796
802
assert hap_proto .transport .is_closing () is True
0 commit comments