-
-
Notifications
You must be signed in to change notification settings - Fork 215
/
Copy pathtest_read_dtc_information.py
executable file
·2583 lines (1971 loc) · 111 KB
/
test_read_dtc_information.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
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
from udsoncan.client import Client
from udsoncan import services, DidCodec
from udsoncan.exceptions import *
from test.ClientServerTest import ClientServerTest
from udsoncan import Dtc
import struct
class GenericTest_RequestStatusMask_ResponseNumberOfDTC():
def __init__(self, subfunction, client_function):
self.sb = struct.pack('B', subfunction)
self.badsb = struct.pack('B', subfunction+1)
self.client_function = client_function
def test_normal_behaviour_param_int(self):
request = self.conn.touserqueue.get(timeout=0.2)
self.assertEqual(request, b"\x19"+self.sb+b"\x5A")
self.conn.fromuserqueue.put(b"\x59"+self.sb+b"\xFB\x01\x12\x34")
def _test_normal_behaviour_param_int(self):
response = getattr(self.udsclient, self.client_function).__call__(0x5A)
self.assertEqual(response.service_data.dtc_format, Dtc.Format.ISO14229_1)
self.assertEqual(response.service_data.dtc_count, 0x1234)
def test_normal_behaviour_param_instance(self):
request = self.conn.touserqueue.get(timeout=0.2)
self.assertEqual(request, b"\x19"+self.sb+b"\x5A")
self.conn.fromuserqueue.put(b"\x59"+self.sb+b"\xFB\x01\x12\x34")
def _test_normal_behaviour_param_instance(self):
response = getattr(self.udsclient, self.client_function).__call__(Dtc.Status(test_failed_this_operation_cycle = True, confirmed = True, test_not_completed_since_last_clear = True, test_not_completed_this_operation_cycle = True))
self.assertEqual(response.service_data.dtc_format, Dtc.Format.ISO14229_1)
self.assertEqual(response.service_data.dtc_count, 0x1234)
def test_normal_behaviour_harmless_extra_byte(self):
self.wait_request_and_respond(b"\x59"+self.sb+b"\xFB\x01\x12\x34\x00\x11\x22")
def _test_normal_behaviour_harmless_extra_byte(self):
response = getattr(self.udsclient, self.client_function).__call__(0x5A)
self.assertEqual(response.service_data.dtc_format, Dtc.Format.ISO14229_1)
self.assertEqual(response.service_data.dtc_count, 0x1234)
def test_bad_response_subfn_exception(self):
self.wait_request_and_respond(b"\x59"+self.badsb+b"\xFB\x01\x12\x34")
def _test_bad_response_subfn_exception(self):
with self.assertRaises(UnexpectedResponseException):
getattr(self.udsclient, self.client_function).__call__(0x5A)
def test_bad_response_subfn_no_exception(self):
self.wait_request_and_respond(b"\x59"+self.badsb+b"\xFB\x01\x12\x34")
def _test_bad_response_subfn_no_exception(self):
self.udsclient.config['exception_on_unexpected_response'] = False
response = getattr(self.udsclient, self.client_function).__call__(0x5A)
self.assertTrue(response.valid)
self.assertTrue(response.unexpected)
def test_bad_response_service_exception(self):
self.wait_request_and_respond(b"\x6F"+self.sb+b"\xFB\x01\x12\x34")
def _test_bad_response_service_exception(self):
with self.assertRaises(UnexpectedResponseException):
getattr(self.udsclient, self.client_function).__call__(0x5A)
def test_bad_response_service_no_exception(self):
self.wait_request_and_respond(b"\x6F"+self.sb+b"\xFB\x01\x12\x34")
def _test_bad_response_service_no_exception(self):
self.udsclient.config['exception_on_unexpected_response'] = False
response = getattr(self.udsclient, self.client_function).__call__(0x5A)
self.assertTrue(response.valid)
self.assertTrue(response.unexpected)
def test_bad_length_response_exception(self):
self.wait_request_and_respond(b"\x59")
self.wait_request_and_respond(b"\x59"+self.sb)
self.wait_request_and_respond(b"\x59"+self.sb+b"\xFB")
self.wait_request_and_respond(b"\x59"+self.sb+b"\xFB\x01")
self.wait_request_and_respond(b"\x59"+self.sb+b"\xFB\x01\x12")
def _test_bad_length_response_exception(self):
for i in range(5):
with self.assertRaises(InvalidResponseException):
getattr(self.udsclient, self.client_function).__call__(0x5A)
def test_bad_length_response_no_exception(self):
self.udsclient.config['exception_on_invalid_response'] = False
self.wait_request_and_respond(b"\x59")
self.wait_request_and_respond(b"\x59"+self.sb)
self.wait_request_and_respond(b"\x59"+self.sb+b"\xFB")
self.wait_request_and_respond(b"\x59"+self.sb+b"\xFB\x01")
self.wait_request_and_respond(b"\x59"+self.sb+b"\xFB\x01\x12")
def _test_bad_length_response_no_exception(self):
for i in range(5):
response = getattr(self.udsclient, self.client_function).__call__(0x5A)
self.assertFalse(response.valid)
def test_oob_value(self):
pass
def _test_oob_value(self):
with self.assertRaises(ValueError):
self.udsclient.get_number_of_dtc_by_status_mask(0x100)
with self.assertRaises(ValueError):
self.udsclient.get_number_of_dtc_by_status_mask(-1)
with self.assertRaises(ValueError):
self.udsclient.get_number_of_dtc_by_status_mask('aaa')
class TestReportNumberOfDTCByStatusMask(ClientServerTest, GenericTest_RequestStatusMask_ResponseNumberOfDTC): # Subfn = 0x1
def __init__(self, *args, **kwargs):
ClientServerTest.__init__(self, *args, **kwargs)
GenericTestStatusMaskRequest_DtcAndStatusMaskResponse.__init__(self, subfunction=0x1, client_function = 'get_number_of_dtc_by_status_mask')
class GenericTestStatusMaskRequest_DtcAndStatusMaskResponse():
def __init__(self, subfunction, client_function):
self.sb = struct.pack('B', subfunction)
self.badsb = struct.pack('B', subfunction+1)
self.client_function = client_function
def client_assert_response(self, response, expect_all_zero_third_dtc=False):
self.assertEqual(response.service_data.status_availability.get_byte_as_int(), 0xFB)
number_of_dtc = 3 if expect_all_zero_third_dtc else 2
self.assertEqual(len(response.service_data.dtcs), number_of_dtc)
self.assertEqual(response.service_data.dtc_count, number_of_dtc)
self.assertEqual(response.service_data.dtcs[0].id, 0x123456)
self.assertEqual(response.service_data.dtcs[0].status.get_byte_as_int(), 0x20)
self.assertEqual(response.service_data.dtcs[0].severity.get_byte_as_int(), 0x00)
self.assertEqual(response.service_data.dtcs[1].id, 0x123457)
self.assertEqual(response.service_data.dtcs[1].status.get_byte_as_int(), 0x60)
self.assertEqual(response.service_data.dtcs[1].severity.get_byte_as_int(), 0x00)
if expect_all_zero_third_dtc:
self.assertEqual(response.service_data.dtcs[2].id, 0)
self.assertEqual(response.service_data.dtcs[2].status.get_byte_as_int(), 0x00)
self.assertEqual(response.service_data.dtcs[2].severity.get_byte_as_int(), 0x00)
def test_normal_behaviour(self):
request = self.conn.touserqueue.get(timeout=0.2)
self.assertEqual(request, b"\x19"+self.sb+b"\x5A")
self.conn.fromuserqueue.put(b"\x59"+self.sb+b"\xFB\x12\x34\x56\x20\x12\x34\x57\x60")
def _test_normal_behaviour(self):
response = getattr(self.udsclient, self.client_function).__call__(0x5A)
self.client_assert_response(response)
def test_dtc_duplicate(self):
self.wait_request_and_respond(b"\x59"+self.sb+b"\xFB\x12\x34\x56\x20\x12\x34\x56\x60")
def _test_dtc_duplicate(self):
response = getattr(self.udsclient, self.client_function).__call__(0x5A)
self.assertEqual(len(response.service_data.dtcs), 2) # We want both of them. Server should avoid duplicate
self.assertEqual(response.service_data.dtcs[0].id, 0x123456)
self.assertEqual(response.service_data.dtcs[0].status.get_byte_as_int(), 0x20)
self.assertEqual(response.service_data.dtcs[1].id, 0x123456)
self.assertEqual(response.service_data.dtcs[1].status.get_byte_as_int(), 0x60)
def test_normal_behaviour_param_instance(self):
request = self.conn.touserqueue.get(timeout=0.2)
self.assertEqual(request, b"\x19"+self.sb+b"\x5A")
self.conn.fromuserqueue.put(b"\x59"+self.sb+b"\xFB\x12\x34\x56\x20\x12\x34\x57\x60")
def _test_normal_behaviour_param_instance(self):
getattr(self.udsclient, self.client_function).__call__(Dtc.Status(test_failed_this_operation_cycle = True, confirmed = True, test_not_completed_since_last_clear = True, test_not_completed_this_operation_cycle = True))
def test_normal_behaviour_zeropadding_ok_ignore_allzero(self):
data = b'\x59'+self.sb+b'\xFB\x12\x34\x56\x20\x12\x34\x57\x60'
for i in range(5):
self.wait_request_and_respond(data + b'\x00' * (i+1))
def _test_normal_behaviour_zeropadding_ok_ignore_allzero(self):
self.udsclient.config['tolerate_zero_padding'] = True
self.udsclient.config['ignore_all_zero_dtc'] = True
for i in range(5):
response = getattr(self.udsclient, self.client_function).__call__(0x5A)
self.client_assert_response(response, expect_all_zero_third_dtc=False)
def test_normal_behaviour_zeropadding_ok_consider_allzero(self):
data = b'\x59'+self.sb+b'\xFB\x12\x34\x56\x20\x12\x34\x57\x60'
for i in range(5):
self.wait_request_and_respond(data + b'\x00' * (i+1))
def _test_normal_behaviour_zeropadding_ok_consider_allzero(self):
self.udsclient.config['tolerate_zero_padding'] = True
self.udsclient.config['ignore_all_zero_dtc'] = False
expect_all_zero_third_dtc_values = [False, False, False, True, True]
for i in range(5):
response = getattr(self.udsclient, self.client_function).__call__(0x5A)
self.client_assert_response(response, expect_all_zero_third_dtc=expect_all_zero_third_dtc_values[i])
# Since we ignore all 0 DTC, we consider case number 4 with 4 extra 0 like a valid answer just like these 0 were not ther
def test_normal_behaviour_zeropadding_notok_ignore_allzero_exception(self):
data = b'\x59'+self.sb+b'\xFB\x12\x34\x56\x20\x12\x34\x57\x60'
for i in range(5):
self.wait_request_and_respond(data + b'\x00' * (i+1))
def _test_normal_behaviour_zeropadding_notok_ignore_allzero_exception(self):
self.udsclient.config['tolerate_zero_padding'] = False
self.udsclient.config['ignore_all_zero_dtc'] = True
exception_values = [True, True, True, False, True]
expect_all_zero_third_dtc_values = [None, None, None, False, None]
for i in range(5):
if exception_values[i]:
with self.assertRaises(InvalidResponseException):
getattr(self.udsclient, self.client_function).__call__(0x5A)
else:
response = getattr(self.udsclient, self.client_function).__call__(0x5A)
self.client_assert_response(response, expect_all_zero_third_dtc=expect_all_zero_third_dtc_values[i])
# Since we ignore all 0 DTC, we consider case number 4 with 4 extra 0 like a valid answer just like these 0 were not ther
def test_normal_behaviour_zeropadding_notok_ignore_allzero_no_exception(self):
data = b'\x59'+self.sb+b'\xFB\x12\x34\x56\x20\x12\x34\x57\x60'
for i in range(5):
self.wait_request_and_respond(data + b'\x00' * (i+1))
def _test_normal_behaviour_zeropadding_notok_ignore_allzero_no_exception(self):
self.udsclient.config['exception_on_invalid_response'] = False
self.udsclient.config['tolerate_zero_padding'] = False
self.udsclient.config['ignore_all_zero_dtc'] = True
exception_values = [True, True, True, False, True]
expect_all_zero_third_dtc_values = [None, None, None, False, None]
for i in range(5):
response = getattr(self.udsclient, self.client_function).__call__(0x5A)
if exception_values[i]:
self.assertFalse(response.valid)
else:
self.client_assert_response(response, expect_all_zero_third_dtc=expect_all_zero_third_dtc_values[i])
# Since we consider all 0 DTC, case number 4 with 4 extra 0 bytes is a valid response where DTC ID=0
def test_normal_behaviour_zeropadding_notok_consider_allzero_exception(self):
data = b'\x59'+self.sb+b'\xFB\x12\x34\x56\x20\x12\x34\x57\x60'
for i in range(5):
self.wait_request_and_respond(data + b'\x00' * (i+1))
def _test_normal_behaviour_zeropadding_notok_consider_allzero_exception(self):
self.udsclient.config['tolerate_zero_padding'] = False
self.udsclient.config['ignore_all_zero_dtc'] = False
exception_values = [True, True, True, False, True]
expect_all_zero_third_dtc_values = [None, None, None, True, None]
for i in range(5):
if exception_values[i]:
with self.assertRaises(InvalidResponseException):
getattr(self.udsclient, self.client_function).__call__(0x5A)
else:
response = getattr(self.udsclient, self.client_function).__call__(0x5A)
self.client_assert_response(response, expect_all_zero_third_dtc=expect_all_zero_third_dtc_values[i])
# Since we consider all 0 DTC, case number 4 with 4 extra 0 bytes is a valid response where DTC ID=0
def test_normal_behaviour_zeropadding_notok_consider_allzero_no_exception(self):
data = b'\x59'+self.sb+b'\xFB\x12\x34\x56\x20\x12\x34\x57\x60'
for i in range(5):
self.wait_request_and_respond(data + b'\x00' * (i+1))
def _test_normal_behaviour_zeropadding_notok_consider_allzero_no_exception(self):
self.udsclient.config['exception_on_invalid_response'] = False
self.udsclient.config['tolerate_zero_padding'] = False
self.udsclient.config['ignore_all_zero_dtc'] = False
error_values = [True, True, True, False, True]
expect_all_zero_third_dtc_values = [None, None, None, True, None]
for i in range(5):
response = getattr(self.udsclient, self.client_function).__call__(0x5A)
if error_values[i]:
self.assertFalse(response.valid)
else:
self.client_assert_response(response, expect_all_zero_third_dtc=expect_all_zero_third_dtc_values[i])
def test_no_dtc(self):
self.wait_request_and_respond(b"\x59"+self.sb+b"\xFB")
def _test_no_dtc(self):
response = getattr(self.udsclient, self.client_function).__call__(0x5A)
self.assertEqual(len(response.service_data.dtcs), 0)
def test_bad_response_subfunction_exception(self):
self.wait_request_and_respond(b"\x59"+self.badsb+b"\xFB")
def _test_bad_response_subfunction_exception(self):
with self.assertRaises(UnexpectedResponseException):
getattr(self.udsclient, self.client_function).__call__(0x5A)
def test_bad_response_subfunction_no_exception(self):
self.wait_request_and_respond(b"\x59"+self.badsb+b"\xFB")
def _test_bad_response_subfunction_no_exception(self):
self.udsclient.config['exception_on_unexpected_response'] = False
response = getattr(self.udsclient, self.client_function).__call__(0x5A)
self.assertTrue(response.valid)
self.assertTrue(response.unexpected)
def test_bad_response_service_exception(self):
self.wait_request_and_respond(b"\x6F"+self.sb+b"\xFB")
def _test_bad_response_service_exception(self):
with self.assertRaises(UnexpectedResponseException):
getattr(self.udsclient, self.client_function).__call__(0x5A)
def test_bad_response_service_no_exception(self):
self.wait_request_and_respond(b"\x6F"+self.sb+b"\xFB")
def _test_bad_response_service_no_exception(self):
self.udsclient.config['exception_on_unexpected_response'] = False
response = getattr(self.udsclient, self.client_function).__call__(0x5A)
self.assertTrue(response.valid)
self.assertTrue(response.unexpected)
def test_bad_response_length_exception(self):
self.wait_request_and_respond(b"\x59")
self.wait_request_and_respond(b"\x59"+self.sb)
def _test_bad_response_length_exception(self):
with self.assertRaises(InvalidResponseException):
getattr(self.udsclient, self.client_function).__call__(0x5A)
with self.assertRaises(InvalidResponseException):
getattr(self.udsclient, self.client_function).__call__(0x5A)
def test_bad_response_length_no_exception(self):
self.wait_request_and_respond(b"\x59")
self.wait_request_and_respond(b"\x59"+self.sb)
def _test_bad_response_length_no_exception(self):
self.udsclient.config['exception_on_invalid_response'] = False
response = getattr(self.udsclient, self.client_function).__call__(0x5A)
self.assertFalse(response.valid)
response = getattr(self.udsclient, self.client_function).__call__(0x5A)
self.assertFalse(response.valid)
def test_oob_value(self):
pass
def _test_oob_value(self):
with self.assertRaises(ValueError):
getattr(self.udsclient, self.client_function).__call__(0x100)
with self.assertRaises(ValueError):
getattr(self.udsclient, self.client_function).__call__(-1)
with self.assertRaises(ValueError):
getattr(self.udsclient, self.client_function).__call__('aaa')
class TestReportDTCByStatusMask(ClientServerTest, GenericTestStatusMaskRequest_DtcAndStatusMaskResponse): # Subfn = 0x2
def __init__(self, *args, **kwargs):
ClientServerTest.__init__(self, *args, **kwargs)
GenericTestStatusMaskRequest_DtcAndStatusMaskResponse.__init__(self, subfunction=0x2, client_function = 'get_dtc_by_status_mask')
class TestReportDTCSnapshotIdentification(ClientServerTest): # Subfn = 0x3
def client_assert_response(self, response, expect_all_zero_third_dtc=False):
number_of_dtc = 3 if expect_all_zero_third_dtc else 2
self.assertEqual(len(response.service_data.dtcs), number_of_dtc)
self.assertEqual(response.service_data.dtc_count, number_of_dtc)
self.assertEqual(response.service_data.dtcs[0].id, 0x123456)
self.assertEqual(len(response.service_data.dtcs[0].snapshots), 2)
self.assertEqual(response.service_data.dtcs[0].snapshots[0], 1)
self.assertEqual(response.service_data.dtcs[0].snapshots[1], 2)
self.assertEqual(response.service_data.dtcs[1].id, 0x789abc)
self.assertEqual(len(response.service_data.dtcs[1].snapshots), 1)
self.assertEqual(response.service_data.dtcs[1].snapshots[0], 3)
if expect_all_zero_third_dtc:
self.assertEqual(response.service_data.dtcs[2].id, 0)
self.assertEqual(len(response.service_data.dtcs[2].snapshots), 1)
self.assertEqual(response.service_data.dtcs[2].snapshots[0], 0)
def test_normal_behaviour(self):
request = self.conn.touserqueue.get(timeout=0.2)
self.assertEqual(request, b"\x19\x03")
self.conn.fromuserqueue.put(b"\x59\x03\x12\x34\x56\x01\x12\x34\x56\x02\x78\x9a\xbc\x03")
def _test_normal_behaviour(self):
response = self.udsclient.get_dtc_snapshot_identification()
self.client_assert_response(response)
def test_normal_behaviour_zeropadding_ok_ignore_allzero(self):
data = b'\x59\x03\x12\x34\x56\x01\x12\x34\x56\x02\x78\x9a\xbc\x03'
for i in range(5):
self.wait_request_and_respond(data + b'\x00' * (i+1))
def _test_normal_behaviour_zeropadding_ok_ignore_allzero(self):
self.udsclient.config['tolerate_zero_padding'] = True
self.udsclient.config['ignore_all_zero_dtc'] = True
for i in range(5):
response = self.udsclient.get_dtc_snapshot_identification()
self.client_assert_response(response, expect_all_zero_third_dtc=False)
def test_normal_behaviour_zeropadding_ok_consider_allzero(self):
data = b'\x59\x03\x12\x34\x56\x01\x12\x34\x56\x02\x78\x9a\xbc\x03'
for i in range(5):
self.wait_request_and_respond(data + b'\x00' * (i+1))
def _test_normal_behaviour_zeropadding_ok_consider_allzero(self):
self.udsclient.config['tolerate_zero_padding'] = True
self.udsclient.config['ignore_all_zero_dtc'] = False
expect_all_zero_third_dtc_values = [False, False, False, True, True]
for i in range(5):
response = self.udsclient.get_dtc_snapshot_identification()
self.client_assert_response(response, expect_all_zero_third_dtc=expect_all_zero_third_dtc_values[i])
def test_normal_behaviour_zeropadding_notok_ignore_allzero_exception(self):
data = b'\x59\x03\x12\x34\x56\x01\x12\x34\x56\x02\x78\x9a\xbc\x03'
for i in range(5):
self.wait_request_and_respond(data + b'\x00' * (i+1))
def _test_normal_behaviour_zeropadding_notok_ignore_allzero_exception(self):
self.udsclient.config['tolerate_zero_padding'] = False
self.udsclient.config['ignore_all_zero_dtc'] = True
must_return_invalid = [True, True, True, False, True]
expect_all_zero_third_dtc_values = [None, None, None, False, None]
for i in range(5):
if must_return_invalid[i]:
with self.assertRaises(InvalidResponseException):
self.udsclient.get_dtc_snapshot_identification()
else:
response = self.udsclient.get_dtc_snapshot_identification()
self.client_assert_response(response, expect_all_zero_third_dtc=expect_all_zero_third_dtc_values[i])
def test_normal_behaviour_zeropadding_notok_ignore_allzero_no_exception(self):
data = b'\x59\x03\x12\x34\x56\x01\x12\x34\x56\x02\x78\x9a\xbc\x03'
for i in range(5):
self.wait_request_and_respond(data + b'\x00' * (i+1))
def _test_normal_behaviour_zeropadding_notok_ignore_allzero_no_exception(self):
self.udsclient.config['exception_on_invalid_response'] = False
self.udsclient.config['tolerate_zero_padding'] = False
self.udsclient.config['ignore_all_zero_dtc'] = True
must_return_invalid = [True, True, True, False, True]
expect_all_zero_third_dtc_values = [None, None, None, False, None]
for i in range(5):
response = self.udsclient.get_dtc_snapshot_identification()
if must_return_invalid[i]:
self.assertFalse(response.valid)
else:
self.client_assert_response(response, expect_all_zero_third_dtc=expect_all_zero_third_dtc_values[i])
def test_normal_behaviour_zeropadding_notok_consider_allzero_exception(self):
data = b'\x59\x03\x12\x34\x56\x01\x12\x34\x56\x02\x78\x9a\xbc\x03'
for i in range(5):
self.wait_request_and_respond(data + b'\x00' * (i+1))
def _test_normal_behaviour_zeropadding_notok_consider_allzero_exception(self):
self.udsclient.config['tolerate_zero_padding'] = False
self.udsclient.config['ignore_all_zero_dtc'] = False
must_return_invalid = [True, True, True, False, True]
expect_all_zero_third_dtc_values = [None, None, None, True, None]
for i in range(5):
if must_return_invalid[i]:
with self.assertRaises(InvalidResponseException):
self.udsclient.get_dtc_snapshot_identification()
else:
response = self.udsclient.get_dtc_snapshot_identification()
self.client_assert_response(response, expect_all_zero_third_dtc=expect_all_zero_third_dtc_values[i])
def test_normal_behaviour_zeropadding_notok_consider_allzero_no_exception(self):
data = b'\x59\x03\x12\x34\x56\x01\x12\x34\x56\x02\x78\x9a\xbc\x03'
for i in range(5):
self.wait_request_and_respond(data + b'\x00' * (i+1))
def _test_normal_behaviour_zeropadding_notok_consider_allzero_no_exception(self):
self.udsclient.config['exception_on_invalid_response'] = False
self.udsclient.config['tolerate_zero_padding'] = False
self.udsclient.config['ignore_all_zero_dtc'] = False
must_return_invalid = [True, True, True, False, True]
expect_all_zero_third_dtc_values = [None, None, None, True, None]
for i in range(5):
response = self.udsclient.get_dtc_snapshot_identification()
if must_return_invalid[i]:
self.assertFalse(response.valid)
else:
self.client_assert_response(response, expect_all_zero_third_dtc=expect_all_zero_third_dtc_values[i])
def test_no_dtc(self):
self.wait_request_and_respond(b"\x59\x03")
def _test_no_dtc(self):
response = self.udsclient.get_dtc_snapshot_identification()
self.assertEqual(len(response.service_data.dtcs), 0)
def test_bad_response_subfunction_exception(self):
self.wait_request_and_respond(b"\x59\x04")
def _test_bad_response_subfunction_exception(self):
with self.assertRaises(UnexpectedResponseException):
self.udsclient.get_dtc_snapshot_identification()
def test_bad_response_subfunction_no_exception(self):
self.wait_request_and_respond(b"\x59\x04")
def _test_bad_response_subfunction_no_exception(self):
self.udsclient.config['exception_on_unexpected_response'] = False
response = self.udsclient.get_dtc_snapshot_identification()
self.assertTrue(response.valid)
self.assertTrue(response.unexpected)
def test_bad_response_service_exception(self):
self.wait_request_and_respond(b"\x6F\x03")
def _test_bad_response_service_exception(self):
with self.assertRaises(UnexpectedResponseException):
self.udsclient.get_dtc_snapshot_identification()
def test_bad_response_service_no_exception(self):
self.wait_request_and_respond(b"\x6F\x03")
def _test_bad_response_service_no_exception(self):
self.udsclient.config['exception_on_unexpected_response'] = False
response = self.udsclient.get_dtc_snapshot_identification()
self.assertTrue(response.valid)
self.assertTrue(response.unexpected)
def test_bad_response_length_exception(self):
self.wait_request_and_respond(b'\x59')
self.wait_request_and_respond(b'\x59\x03\x12')
self.wait_request_and_respond(b'\x59\x03\x12\x34')
self.wait_request_and_respond(b'\x59\x03\x12\x34\x56')
self.wait_request_and_respond(b'\x59\x03\x12\x34\x56\x01\x12')
def _test_bad_response_length_exception(self):
for i in range(5):
with self.assertRaises(InvalidResponseException):
self.udsclient.get_dtc_snapshot_identification()
def test_bad_response_length_no_exception(self):
self.wait_request_and_respond(b'\x59')
self.wait_request_and_respond(b'\x59\x03\x12')
self.wait_request_and_respond(b'\x59\x03\x12\x34')
self.wait_request_and_respond(b'\x59\x03\x12\x34\x56')
self.wait_request_and_respond(b'\x59\x03\x12\x34\x56\x01\x12')
def _test_bad_response_length_no_exception(self):
self.udsclient.config['exception_on_invalid_response'] = False
for i in range(5):
response = self.udsclient.get_dtc_snapshot_identification()
self.assertFalse(response.valid)
class TestReportDTCSnapshotRecordByDTCNumber(ClientServerTest): # Subfn = 0x4
class Codec4711(DidCodec):
def encode(self, did_value):
return struct.pack('>BBHB', did_value['ect'], did_value['tp'], did_value['rpm'], did_value['map'])
def decode(self, did_payload):
v = dict(ect=0, tp=0, rpm=0, map=0)
(v['ect'], v['tp'], v['rpm'], v['map']) = struct.unpack('>BBHB', did_payload)
return v
def __len__(self):
return 5
class Codec4455(DidCodec):
def encode(self, did_value):
return struct.pack('>H', did_value)
def decode(self, did_payload):
return struct.unpack('>H', did_payload)[0]
def __len__(self):
return 2
def postClientSetUp(self):
self.udsclient.config["data_identifiers"] = {
0x4455 : self.__class__.Codec4455,
0x4711 : self.__class__.Codec4711,
0x6789 : 'BBB'
}
def single_snapshot_assert_response(self, response):
self.assertEqual(len(response.service_data.dtcs), 1)
self.assertEqual(response.service_data.dtc_count, 1)
dtc = response.service_data.dtcs[0]
self.assertEqual(dtc.id, 0x123456)
self.assertEqual(dtc.status.get_byte_as_int(), 0x24)
self.assertEqual(len(dtc.snapshots), 1)
snapshot = dtc.snapshots[0]
self.assertTrue(isinstance(snapshot, Dtc.Snapshot))
self.assertEqual(snapshot.record_number, 0x02)
self.assertEqual(snapshot.did, 0x4711)
self.assertEqual(dtc.snapshots[0].data['ect'], 0xA6) # Engine Coolant Temp
self.assertEqual(dtc.snapshots[0].data['tp'], 0x66) # Throttle Position
self.assertEqual(dtc.snapshots[0].data['rpm'], 0x750) # Engine speed
self.assertEqual(dtc.snapshots[0].data['map'], 0x20) # Manifoled Absolute Value
def single_snapshot_2_dids_assert_response(self, response):
self.assertEqual(len(response.service_data.dtcs), 1)
self.assertEqual(response.service_data.dtc_count, 1)
dtc = response.service_data.dtcs[0]
self.assertEqual(dtc.id, 0x123456)
self.assertEqual(dtc.status.get_byte_as_int(), 0x24)
self.assertEqual(len(dtc.snapshots), 2)
self.assertTrue(isinstance(dtc.snapshots[0], Dtc.Snapshot))
self.assertEqual(dtc.snapshots[0].record_number, 0x02)
self.assertEqual(dtc.snapshots[0].did, 0x4711)
self.assertTrue(isinstance(dtc.snapshots[1], Dtc.Snapshot))
self.assertEqual(dtc.snapshots[1].record_number, 0x02)
self.assertEqual(dtc.snapshots[1].did, 0x6789)
self.assertEqual(dtc.snapshots[0].data['ect'], 0xA6) # Engine Coolant Temp
self.assertEqual(dtc.snapshots[0].data['tp'], 0x66) # Throttle Position
self.assertEqual(dtc.snapshots[0].data['rpm'], 0x750) # Engine speed
self.assertEqual(dtc.snapshots[0].data['map'], 0x20) # Manifoled Absolute Value
self.assertEqual(dtc.snapshots[1].data[0], 0x99)
self.assertEqual(dtc.snapshots[1].data[1], 0x88)
self.assertEqual(dtc.snapshots[1].data[2], 0x77)
def test_single_snapshot(self): # Example provided in standard
request = self.conn.touserqueue.get(timeout=0.2)
self.assertEqual(request, b"\x19\x04\x12\x34\x56\x02")
self.conn.fromuserqueue.put(b"\x59\x04\x12\x34\x56\x24\x02\x01\x47\x11\xa6\x66\x07\x50\x20")
def _test_single_snapshot(self):
response = self.udsclient.get_dtc_snapshot_by_dtc_number(dtc=0x123456, record_number=2)
self.single_snapshot_assert_response(response)
def test_single_snapshot_with_instance_param(self): # Example provided in standard
request = self.conn.touserqueue.get(timeout=0.2)
self.assertEqual(request, b"\x19\x04\x12\x34\x56\x02")
self.conn.fromuserqueue.put(b"\x59\x04\x12\x34\x56\x24\x02\x01\x47\x11\xa6\x66\x07\x50\x20")
def _test_single_snapshot_with_instance_param(self):
response = self.udsclient.get_dtc_snapshot_by_dtc_number(dtc=Dtc(0x123456), record_number=2)
self.single_snapshot_assert_response(response)
def test_single_snapshot_zeropadding_ok(self): # Example provided in standard
data = b'\x59\x04\x12\x34\x56\x24\x02\x01\x47\x11\xa6\x66\x07\x50\x20'
self.udsclient.config['tolerate_zero_padding'] = True
for i in range(7):
self.wait_request_and_respond(data + b'\x00' * (i+1))
def _test_single_snapshot_zeropadding_ok(self):
for i in range(7):
response = self.udsclient.get_dtc_snapshot_by_dtc_number(dtc=0x123456, record_number=2)
self.single_snapshot_assert_response(response)
def test_single_snapshot_zeropadding_notok_exception(self): # Example provided in standard
data = b'\x59\x04\x12\x34\x56\x24\x02\x01\x47\x11\xa6\x66\x07\x50\x20'
for i in range(7):
self.wait_request_and_respond(data + b'\x00' * (i+1))
def _test_single_snapshot_zeropadding_notok_exception(self):
self.udsclient.config['tolerate_zero_padding'] = False
for i in range (7):
with self.assertRaises(InvalidResponseException):
self.udsclient.get_dtc_snapshot_by_dtc_number(dtc=0x123456, record_number=2)
def test_single_snapshot_zeropadding_notok_no_exception(self): # Example provided in standard
data = b'\x59\x04\x12\x34\x56\x24\x02\x01\x47\x11\xa6\x66\x07\x50\x20'
for i in range(7):
self.wait_request_and_respond(data + b'\x00' * (i+1))
def _test_single_snapshot_zeropadding_notok_no_exception(self):
self.udsclient.config['tolerate_zero_padding'] = False
self.udsclient.config['exception_on_invalid_response'] = False
for i in range (7):
response = self.udsclient.get_dtc_snapshot_by_dtc_number(dtc=0x123456, record_number=2)
self.assertFalse(response.valid)
def test_single_snapshot_2_did(self): # Example provided in standard
request = self.conn.touserqueue.get(timeout=0.2)
self.assertEqual(request, b"\x19\x04\x12\x34\x56\x02")
self.conn.fromuserqueue.put(b"\x59\x04\x12\x34\x56\x24\x02\x02\x47\x11\xa6\x66\x07\x50\x20\x67\x89\x99\x88\x77")
def _test_single_snapshot_2_did(self):
response = self.udsclient.get_dtc_snapshot_by_dtc_number(dtc=0x123456, record_number=2)
self.single_snapshot_2_dids_assert_response(response)
def test_multiple_snapshot_multiple_did(self):
request = self.conn.touserqueue.get(timeout=0.2)
self.assertEqual(request, b"\x19\x04\x12\x34\x56\xFF")
self.conn.fromuserqueue.put(b"\x59\x04\x12\x34\x56\x24\x02\x02\x47\x11\xa6\x66\x07\x50\x20\x67\x89\x99\x88\x77\x03\x01\x44\x55\x43\x21")
def _test_multiple_snapshot_multiple_did(self):
response = self.udsclient.get_dtc_snapshot_by_dtc_number(dtc=0x123456, record_number=0xFF)
self.assertEqual(len(response.service_data.dtcs), 1)
self.assertEqual(response.service_data.dtc_count, 1)
dtc = response.service_data.dtcs[0]
self.assertEqual(dtc.id, 0x123456)
self.assertEqual(dtc.status.get_byte_as_int(), 0x24)
self.assertEqual(len(dtc.snapshots), 3)
self.assertTrue(isinstance(dtc.snapshots[0], Dtc.Snapshot))
self.assertEqual(dtc.snapshots[0].record_number, 0x02)
self.assertEqual(dtc.snapshots[0].did, 0x4711)
self.assertTrue(isinstance(dtc.snapshots[1], Dtc.Snapshot))
self.assertEqual(dtc.snapshots[1].record_number, 0x02)
self.assertEqual(dtc.snapshots[1].did, 0x6789)
self.assertTrue(isinstance(dtc.snapshots[2], Dtc.Snapshot))
self.assertEqual(dtc.snapshots[2].record_number, 0x03)
self.assertEqual(dtc.snapshots[2].did, 0x4455)
# data
self.assertEqual(dtc.snapshots[0].data['ect'], 0xA6) # Engine Coolant Temp
self.assertEqual(dtc.snapshots[0].data['tp'], 0x66) # Throttle Position
self.assertEqual(dtc.snapshots[0].data['rpm'], 0x750) # Engine speed
self.assertEqual(dtc.snapshots[0].data['map'], 0x20) # Manifoled Absolute Value
self.assertEqual(dtc.snapshots[1].data[0], 0x99)
self.assertEqual(dtc.snapshots[1].data[1], 0x88)
self.assertEqual(dtc.snapshots[1].data[2], 0x77)
self.assertEqual(dtc.snapshots[2].data, 0x4321)
def test_invalid_length_incomplete_dtc_exception(self):
self.wait_request_and_respond(b'\x59\x04\x12')
self.wait_request_and_respond(b'\x59\x04\x12\x34')
def _test_invalid_length_incomplete_dtc_exception(self):
for i in range(2):
with self.assertRaises(InvalidResponseException):
self.udsclient.get_dtc_snapshot_by_dtc_number(dtc=0x123456, record_number=0x02)
def test_invalid_length_incomplete_dtc_no_exception(self):
self.wait_request_and_respond(b'\x59\x04\x12')
self.wait_request_and_respond(b'\x59\x04\x12\x34')
def _test_invalid_length_incomplete_dtc_no_exception(self):
self.udsclient.config['exception_on_invalid_response'] = False
for i in range(2):
response = self.udsclient.get_dtc_snapshot_by_dtc_number(dtc=0x123456, record_number=0x02)
self.assertFalse(response.valid)
def test_invalid_length_missing_status_exception(self):
self.wait_request_and_respond(b'\x59\x04\x12\x34\x56')
def _test_invalid_length_missing_status_exception(self):
with self.assertRaises(InvalidResponseException):
self.udsclient.get_dtc_snapshot_by_dtc_number(dtc=0x123456, record_number=0x02)
def test_invalid_length_missing_status_no_exception(self):
self.wait_request_and_respond(b'\x59\x04\x12\x34\x56')
def _test_invalid_length_missing_status_no_exception(self):
self.udsclient.config['exception_on_invalid_response'] = False
response = self.udsclient.get_dtc_snapshot_by_dtc_number(dtc=0x123456, record_number=0x02)
self.assertFalse(response.valid)
def test_invalid_length_missing_identifier_number_exception(self):
self.wait_request_and_respond(b'\x59\x04\x12\x34\x56\x24\x02')
self.wait_request_and_respond(b'\x59\x04\x12\x34\x56\x24\x02\x01\x47\x11\xa6\x66\x07\x50\x20\x03')
def _test_invalid_length_missing_identifier_number_exception(self):
for i in range(2):
with self.assertRaises(InvalidResponseException):
self.udsclient.get_dtc_snapshot_by_dtc_number(dtc=0x123456, record_number=0x02)
def test_invalid_length_missing_identifier_number_no_exception(self):
self.wait_request_and_respond(b'\x59\x04\x12\x34\x56\x24\x02')
self.wait_request_and_respond(b'\x59\x04\x12\x34\x56\x24\x02\x01\x47\x11\xa6\x66\x07\x50\x20\x03')
def _test_invalid_length_missing_identifier_number_no_exception(self):
self.udsclient.config['exception_on_invalid_response'] = False
for i in range(2):
response = self.udsclient.get_dtc_snapshot_by_dtc_number(dtc=0x123456, record_number=0x02)
self.assertFalse(response.valid)
def invalid_length_missing_did_server_task(self):
self.wait_request_and_respond(b'\x59\x04\x12\x34\x56\x24\x02')
self.wait_request_and_respond(b'\x59\x04\x12\x34\x56\x24\x02\x01\x47')
self.wait_request_and_respond(b'\x59\x04\x12\x34\x56\x24\x02\x01\x47\x11\xa6\x66\x07\x50\x20\x03\x01')
self.wait_request_and_respond(b'\x59\x04\x12\x34\x56\x24\x02\x01\x47\x11\xa6\x66\x07\x50\x20\x03\x01\x67')
def test_invalid_length_missing_did_exception(self):
self.invalid_length_missing_did_server_task()
def _test_invalid_length_missing_did_exception(self):
for i in range(4):
with self.assertRaises(InvalidResponseException):
self.udsclient.get_dtc_snapshot_by_dtc_number(dtc=0x123456, record_number=0xFF)
def test_invalid_length_missing_did_no_exception(self):
self.invalid_length_missing_did_server_task()
def _test_invalid_length_missing_did_no_exception(self):
self.udsclient.config['exception_on_invalid_response'] = False
for i in range(4):
response = self.udsclient.get_dtc_snapshot_by_dtc_number(dtc=0x123456, record_number=0xFF)
self.assertFalse(response.valid)
def invalid_length_missing_data_server_task(self):
self.wait_request_and_respond(b'\x59\x04\x12\x34\x56\x24\x02\x01\x47')
self.wait_request_and_respond(b'\x59\x04\x12\x34\x56\x24\x02\x01\x47\x11')
self.wait_request_and_respond(b'\x59\x04\x12\x34\x56\x24\x02\x01\x47\x11\xa6')
self.wait_request_and_respond(b'\x59\x04\x12\x34\x56\x24\x02\x01\x47\x11\xa6\x66')
self.wait_request_and_respond(b'\x59\x04\x12\x34\x56\x24\x02\x01\x47\x11\xa6\x66\x07')
self.wait_request_and_respond(b'\x59\x04\x12\x34\x56\x24\x02\x01\x47\x11\xa6\x66\x07\x50')
self.wait_request_and_respond(b'\x59\x04\x12\x34\x56\x24\x02\x01\x47\x11\xa6\x66\x07\x50\x20\x03\x01\x67\x89')
self.wait_request_and_respond(b'\x59\x04\x12\x34\x56\x24\x02\x01\x47\x11\xa6\x66\x07\x50\x20\x03\x01\x67\x89\x99')
self.wait_request_and_respond(b'\x59\x04\x12\x34\x56\x24\x02\x01\x47\x11\xa6\x66\x07\x50\x20\x03\x01\x67\x89\x99\x88')
def test_invalid_length_missing_data_exception(self):
self.invalid_length_missing_data_server_task()
def _test_invalid_length_missing_data_exception(self):
for i in range(9):
with self.assertRaises(InvalidResponseException):
self.udsclient.get_dtc_snapshot_by_dtc_number(dtc=0x123456, record_number=0xff)
def test_invalid_length_missing_data_no_exception(self):
self.invalid_length_missing_data_server_task()
def _test_invalid_length_missing_data_no_exception(self):
self.udsclient.config['exception_on_invalid_response'] = False
for i in range(9):
response = self.udsclient.get_dtc_snapshot_by_dtc_number(dtc=0x123456, record_number=0xff)
self.assertFalse(response.valid)
def test_bad_subfunction_exception(self):
self.wait_request_and_respond(b'\x59\x05\x12\x34\x56\x24\x02\x01\x47\x11\xa6\x66\x07\x50\x20')
def _test_bad_subfunction_exception(self):
with self.assertRaises(UnexpectedResponseException):
self.udsclient.get_dtc_snapshot_by_dtc_number(dtc=0x123456, record_number=0x02)
def test_bad_subfunction_no_exception(self):
self.wait_request_and_respond(b'\x59\x05\x12\x34\x56\x24\x02\x01\x47\x11\xa6\x66\x07\x50\x20')
def _test_bad_subfunction_no_exception(self):
self.udsclient.config['exception_on_unexpected_response'] = False
response = self.udsclient.get_dtc_snapshot_by_dtc_number(dtc=0x123456, record_number=0x02)
self.assertTrue(response.valid)
self.assertTrue(response.unexpected)
def test_bad_dtc_exception(self):
self.wait_request_and_respond(b'\x59\x04\x12\x34\x57\x24\x02\x01\x47\x11\xa6\x66\x07\x50\x20')
def _test_bad_dtc_exception(self):
with self.assertRaises(UnexpectedResponseException):
self.udsclient.get_dtc_snapshot_by_dtc_number(dtc=0x123456, record_number=0x02)
def test_bad_dtc_no_exception(self):
self.wait_request_and_respond(b'\x59\x04\x12\x34\x57\x24\x02\x01\x47\x11\xa6\x66\x07\x50\x20')
def _test_bad_dtc_no_exception(self):
self.udsclient.config['exception_on_unexpected_response'] = False
response = self.udsclient.get_dtc_snapshot_by_dtc_number(dtc=0x123456, record_number=0x02)
self.assertTrue(response.valid)
self.assertTrue(response.unexpected)
def test_bad_record_number_exception(self):
self.wait_request_and_respond(b'\x59\x04\x12\x34\x56\x24\x03\x01\x47\x11\xa6\x66\x07\x50\x20')
def _test_bad_record_number_exception(self):
with self.assertRaises(UnexpectedResponseException):
self.udsclient.get_dtc_snapshot_by_dtc_number(dtc=0x123456, record_number=0x02)
def test_bad_record_number_no_exception(self):
self.wait_request_and_respond(b'\x59\x04\x12\x34\x56\x24\x03\x01\x47\x11\xa6\x66\x07\x50\x20')
def _test_bad_record_number_no_exception(self):
self.udsclient.config['exception_on_unexpected_response'] = False
response = self.udsclient.get_dtc_snapshot_by_dtc_number(dtc=0x123456, record_number=0x02)
self.assertTrue(response.valid)
self.assertTrue(response.unexpected)
def test_no_record(self):
self.wait_request_and_respond(b'\x59\x04\x12\x34\x56\x24')
def _test_no_record(self):
response = self.udsclient.get_dtc_snapshot_by_dtc_number(dtc=0x123456, record_number=0x02)
self.assertEqual(len(response.service_data.dtcs), 1)
self.assertEqual(response.service_data.dtc_count, 1)
dtc = response.service_data.dtcs[0]
self.assertEqual(dtc.id, 0x123456)
self.assertEqual(dtc.status.get_byte_as_int(), 0x24)
self.assertEqual(len(dtc.snapshots), 0)
def test_no_record_zero_padding_ok(self):
data = b'\x59\x04\x12\x34\x56\x24'
for i in range(8):
self.wait_request_and_respond(data + b'\x00' * (i+1))
def _test_no_record_zero_padding_ok(self):
self.udsclient.config['tolerate_zero_padding'] = True
for i in range(8):
response = self.udsclient.get_dtc_snapshot_by_dtc_number(dtc=0x123456, record_number=0x02)
self.assertEqual(len(response.service_data.dtcs), 1)
self.assertEqual(response.service_data.dtc_count, 1)
dtc = response.service_data.dtcs[0]
self.assertEqual(dtc.id, 0x123456)
self.assertEqual(dtc.status.get_byte_as_int(), 0x24)
self.assertEqual(len(dtc.snapshots), 0)
def test_no_record_zero_padding_not_ok_exception(self):
data = b'\x59\x04\x12\x34\x56\x24'
for i in range(8):
self.wait_request_and_respond(data + b'\x00' * (i+1))
def _test_no_record_zero_padding_not_ok_exception(self):
self.udsclient.config['tolerate_zero_padding'] = False
for i in range(8):
with self.assertRaises(InvalidResponseException):
self.udsclient.get_dtc_snapshot_by_dtc_number(dtc=0x123456, record_number=0x02)
def test_no_record_zero_padding_not_ok_no_exception(self):
data = b'\x59\x04\x12\x34\x56\x24'
for i in range(8):
self.wait_request_and_respond(data + b'\x00' * (i+1))
def _test_no_record_zero_padding_not_ok_no_exception(self):
self.udsclient.config['exception_on_invalid_response'] = False
self.udsclient.config['tolerate_zero_padding'] = False
for i in range(8):
response = self.udsclient.get_dtc_snapshot_by_dtc_number(dtc=0x123456, record_number=0x02)
self.assertFalse(response.valid)
def test_oob_values(self):
pass
def _test_oob_values(self):
with self.assertRaises(ValueError):
self.udsclient.get_dtc_snapshot_by_dtc_number(dtc=-1, record_number=0x02)
with self.assertRaises(ValueError):
self.udsclient.get_dtc_snapshot_by_dtc_number(dtc=0x1000000, record_number=0x02)
with self.assertRaises(ValueError):
self.udsclient.get_dtc_snapshot_by_dtc_number(dtc=0x123456, record_number=-1)
with self.assertRaises(ValueError):
self.udsclient.get_dtc_snapshot_by_dtc_number(dtc=0x123456, record_number=0x100)
class TestReportDTCSnapshotRecordByRecordNumber(ClientServerTest): # Subfn = 0x5
class Codec4711(DidCodec):
def encode(self, did_value):
return struct.pack('>BBHB', did_value['ect'], did_value['tp'], did_value['rpm'], did_value['map'])
def decode(self, did_payload):
v = dict(ect=0, tp=0, rpm=0, map=0)
(v['ect'], v['tp'], v['rpm'], v['map']) = struct.unpack('>BBHB', did_payload)
return v
def __len__(self):
return 5
class Codec4455(DidCodec):
def encode(self, did_value):
return struct.pack('>H', did_value)
def decode(self, did_payload):
return struct.unpack('>H', did_payload)[0]
def __len__(self):
return 2
def postClientSetUp(self):
self.udsclient.config["data_identifiers"] = {
0x4455 : self.__class__.Codec4455,