forked from brendan-w/python-OBD
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_protocol.py
77 lines (55 loc) · 2.31 KB
/
test_protocol.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
from obd.protocols import *
from obd.protocols.protocol import Frame, Message
def test_ECU():
# make sure none of the ECU ID values overlap
tested = []
# NOTE: does't include ECU.ALL
for ecu in [ECU.UNKNOWN, ECU.ENGINE, ECU.TRANSMISSION]:
assert (ECU.ALL & ecu) > 0, "ECU: %d is not included in ECU.ALL" % ecu
for other_ecu in tested:
assert (ecu & other_ecu) == 0, "ECU: %d has a conflicting bit with another ECU constant" % ecu
tested.append(ecu)
def test_frame():
# constructor
frame = Frame("asdf")
assert frame.raw == "asdf", "Frame failed to accept raw data as __init__ argument"
assert frame.priority is None
assert frame.addr_mode is None
assert frame.rx_id is None
assert frame.tx_id is None
assert frame.type is None
assert frame.seq_index is 0
assert frame.data_len is None
def test_message():
# constructor
frame = Frame("raw input from OBD tool")
frame.tx_id = 42
frames = [frame]
# a message is simply a special container for a bunch of frames
message = Message(frames)
assert message.frames == frames
assert message.ecu == ECU.UNKNOWN
assert message.tx_id == 42 # this is dynamically read from the first frame
assert Message([]).tx_id is None # if no frames are given, then we can't report a tx_id
def test_message_hex():
message = Message([])
message.data = b'\x00\x01\x02'
assert message.hex() == b'000102'
assert int(message.hex()[0:2], 16) == 0x00
assert int(message.hex()[2:4], 16) == 0x01
assert int(message.hex()[4:6], 16) == 0x02
assert int(message.hex(), 16) == 0x000102
def test_populate_ecu_map():
# parse from messages
# use primary ECU when multiple are present
p = SAE_J1850_PWM(["48 6B 10 41 00 BE 1F B8 11 AA", "48 6B 12 41 00 BE 1F B8 11 AA"])
assert p.ecu_map[0x10] == ECU.ENGINE
# use lone responses regardless
p = SAE_J1850_PWM(["48 6B 12 41 00 BE 1F B8 11 AA"])
assert p.ecu_map[0x12] == ECU.ENGINE
# if primary ECU is not listed, use response with most PIDs supported
p = SAE_J1850_PWM(["48 6B 12 41 00 BE 1F B8 11 AA", "48 6B 14 41 00 00 00 B8 11 AA"])
assert p.ecu_map[0x12] == ECU.ENGINE
# if no messages were received, then the map is empty
p = SAE_J1850_PWM([])
assert len(p.ecu_map) == 0