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
|
"""Unit test for KNX/IP ConnectRequests."""
import pytest
from xknx.exceptions import CouldNotParseKNXIP
from xknx.knxip import (
HPAI,
ConnectRequest,
ConnectRequestInformation,
ConnectRequestType,
KNXIPFrame,
TunnellingLayer,
)
from xknx.telegram import IndividualAddress
class TestKNXIPConnectRequest:
"""Test class for KNX/IP ConnectRequests."""
def test_tunnel_connect_request(self) -> None:
"""Test parsing and streaming connection request KNX/IP packet."""
raw = bytes.fromhex(
"06 10 02 05 00 1A 08 01 C0 A8 2A 01 84 95 08 01"
"C0 A8 2A 01 CC A9 04 04 02 00"
)
knxipframe, _ = KNXIPFrame.from_knx(raw)
assert isinstance(knxipframe.body, ConnectRequest)
assert knxipframe.body.control_endpoint == HPAI(
ip_addr="192.168.42.1", port=33941
)
assert knxipframe.body.data_endpoint == HPAI(ip_addr="192.168.42.1", port=52393)
assert (
knxipframe.body.cri.connection_type is ConnectRequestType.TUNNEL_CONNECTION
)
assert knxipframe.body.cri.knx_layer is TunnellingLayer.DATA_LINK_LAYER
assert knxipframe.body.cri.individual_address is None
cri = ConnectRequestInformation(
connection_type=ConnectRequestType.TUNNEL_CONNECTION,
knx_layer=TunnellingLayer.DATA_LINK_LAYER,
individual_address=None,
)
connect_request = ConnectRequest(
control_endpoint=HPAI(ip_addr="192.168.42.1", port=33941),
data_endpoint=HPAI(ip_addr="192.168.42.1", port=52393),
cri=cri,
)
knxipframe2 = KNXIPFrame.init_from_body(connect_request)
assert knxipframe2.to_knx() == raw
def test_mgmt_connect_request(self) -> None:
"""Test parsing and streaming connection request KNX/IP packet."""
raw = bytes.fromhex(
"06 10 02 05 00 18 08 01 C0 A8 2A 01 84 95 08 01 C0 A8 2A 01 CC A9 02 03"
)
knxipframe, _ = KNXIPFrame.from_knx(raw)
assert isinstance(knxipframe.body, ConnectRequest)
assert knxipframe.body.control_endpoint == HPAI(
ip_addr="192.168.42.1", port=33941
)
assert knxipframe.body.data_endpoint == HPAI(ip_addr="192.168.42.1", port=52393)
assert (
knxipframe.body.cri.connection_type
is ConnectRequestType.DEVICE_MGMT_CONNECTION
)
assert knxipframe.body.cri.individual_address is None
cri = ConnectRequestInformation(
connection_type=ConnectRequestType.DEVICE_MGMT_CONNECTION,
individual_address=None,
)
connect_request = ConnectRequest(
control_endpoint=HPAI(ip_addr="192.168.42.1", port=33941),
data_endpoint=HPAI(ip_addr="192.168.42.1", port=52393),
cri=cri,
)
knxipframe2 = KNXIPFrame.init_from_body(connect_request)
assert knxipframe2.to_knx() == raw
def test_connect_request_extended_cri(self) -> None:
"""Test parsing and streaming connection request KNX/IP packet."""
raw = bytes.fromhex(
"06 10 02 05 00 1C 08 01 C0 A8 2A 01 84 95 08 01"
"C0 A8 2A 01 CC A9 06 04 02 00 01 02"
)
knxipframe, _ = KNXIPFrame.from_knx(raw)
assert isinstance(knxipframe.body, ConnectRequest)
assert knxipframe.body.control_endpoint == HPAI(
ip_addr="192.168.42.1", port=33941
)
assert knxipframe.body.data_endpoint == HPAI(ip_addr="192.168.42.1", port=52393)
assert (
knxipframe.body.cri.connection_type is ConnectRequestType.TUNNEL_CONNECTION
)
assert knxipframe.body.cri.knx_layer is TunnellingLayer.DATA_LINK_LAYER
assert knxipframe.body.cri.individual_address == IndividualAddress("0.1.2")
cri = ConnectRequestInformation(
connection_type=ConnectRequestType.TUNNEL_CONNECTION,
knx_layer=TunnellingLayer.DATA_LINK_LAYER,
individual_address=IndividualAddress("0.1.2"),
)
connect_request = ConnectRequest(
control_endpoint=HPAI(ip_addr="192.168.42.1", port=33941),
data_endpoint=HPAI(ip_addr="192.168.42.1", port=52393),
cri=cri,
)
knxipframe2 = KNXIPFrame.init_from_body(connect_request)
assert knxipframe2.to_knx() == raw
def test_from_knx_wrong_length_of_cri(self) -> None:
"""Test parsing and streaming wrong ConnectRequest."""
raw = bytes.fromhex(
"06 10 02 05 00 1A 08 01 C0 A8 2A 01 84 95 08 01"
"C0 A8 2A 01 CC A9 02 04 02 00"
)
with pytest.raises(CouldNotParseKNXIP):
KNXIPFrame.from_knx(raw)
def test_from_knx_wrong_length_of_cri2(self) -> None:
"""Test parsing and streaming wrong ConnectRequest."""
raw = bytes.fromhex(
"06 10 02 05 00 18 08 01 C0 A8 2A 01 84 95 08 01"
+ "C0 A8 2A 01 CC A9 03 03"
)
with pytest.raises(CouldNotParseKNXIP):
KNXIPFrame.from_knx(raw)
def test_from_knx_wrong_length_of_cri3(self) -> None:
"""Test parsing and streaming wrong ConnectRequest."""
raw = bytes.fromhex(
"06 10 02 05 00 18 08 01 C0 A8 2A 01 84 95 08 01"
+ "C0 A8 2A 01 CC A9 01 03"
)
with pytest.raises(CouldNotParseKNXIP):
KNXIPFrame.from_knx(raw)
def test_from_knx_wrong_length_of_cri4(self) -> None:
"""Test parsing and streaming wrong ConnectRequest."""
raw = bytes.fromhex(
"06 10 02 05 00 19 08 01 C0 A8 2A 01 84 95 08 01"
+ "C0 A8 2A 01 CC A9 03 03 01"
)
with pytest.raises(CouldNotParseKNXIP):
KNXIPFrame.from_knx(raw)
def test_from_knx_wrong_cri(self) -> None:
"""Test parsing and streaming wrong ConnectRequest."""
raw = bytes.fromhex(
"06 10 02 05 00 1A 08 01 C0 A8 2A 01 84 95 08 01"
+ "C0 A8 2A 01 CC A9 04 04 02"
)
with pytest.raises(CouldNotParseKNXIP):
KNXIPFrame.from_knx(raw)
|