Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[test] Update log checking patten after log output update #7447

Merged
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 12 additions & 14 deletions src/controller/python/test/test_scripts/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,8 @@ def TestNetworkCommissioning(self, nodeid: int, endpoint: int, group: int, datas
except Exception as ex:
self.logger.exception("Failed to send AddThreadNetwork command")
return False
self.logger.info("Send EnableNetwork command to device {}".format(nodeid))
self.logger.info(
"Send EnableNetwork command to device {}".format(nodeid))
try:
self.devCtrl.ZCLSend("NetworkCommissioning", "EnableNetwork", nodeid, endpoint, group, {
"networkID": bytes.fromhex(network_id),
Expand All @@ -88,21 +89,21 @@ def TestNetworkCommissioning(self, nodeid: int, endpoint: int, group: int, datas
return True

def TestOnOffCluster(self, nodeid: int, endpoint: int, group: int):
self.logger.info("Sending On/Off commands to device {}".format(nodeid))
try:
self.devCtrl.ZCLSend("OnOff", "On", nodeid, endpoint, group, {}, blocking=True)
except Exception as ex:
self.logger.exception("Failed to send On command")
self.logger.info(
"Sending On/Off commands to device {} endpoint {}".format(nodeid, endpoint))
err, code = self.devCtrl.ZCLSend("OnOff", "On", nodeid,
endpoint, group, {}, blocking=True)
if err != 0 or code != 0:
return False
try:
self.devCtrl.ZCLSend("OnOff", "Off", nodeid, endpoint, group, {}, blocking=True)
except Exception as ex:
self.logger.exception("Failed to send Off command")
err, code = self.devCtrl.ZCLSend("OnOff", "Off", nodeid,
endpoint, group, {}, blocking=True)
if err != 0 or code != 0:
return False
return True

def TestResolve(self, fabricid, nodeid):
self.logger.info("Resolve {} with fabric id: {}".format(nodeid, fabricid))
self.logger.info(
"Resolve {} with fabric id: {}".format(nodeid, fabricid))
try:
self.devCtrl.ResolveNode(fabricid=fabricid, nodeid=nodeid)
except Exception as ex:
Expand Down Expand Up @@ -136,6 +137,3 @@ def TestReadBasicAttribiutes(self, nodeid: int, endpoint: int, group: int):
self.logger.exception(f"Following attributes failed: {failed_zcl}")
return False
return True



27 changes: 16 additions & 11 deletions src/controller/python/test/test_scripts/mobile-device-test.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@
# The thread network dataset tlv for testing, splited into T-L-V.

TEST_THREAD_NETWORK_DATASET_TLV = "0e080000000000010000" + \
"000300000c" + \
"35060004001fffe0" + \
"0208fedcba9876543210" + \
"0708fd00000000001234" + \
"0510ffeeddccbbaa99887766554433221100" + \
"030e54657374696e674e6574776f726b" + \
"0102d252" + \
"041081cb3b2efa781cc778397497ff520fa50c0302a0ff"
"000300000c" + \
"35060004001fffe0" + \
"0208fedcba9876543210" + \
"0708fd00000000001234" + \
"0510ffeeddccbbaa99887766554433221100" + \
"030e54657374696e674e6574776f726b" + \
"0102d252" + \
"041081cb3b2efa781cc778397497ff520fa50c0302a0ff"
# Network id, for the thread network, current a const value, will be changed to XPANID of the thread network.
TEST_THREAD_NETWORK_ID = "fedcba9876543210"

Expand Down Expand Up @@ -55,26 +55,31 @@ def main():

test = BaseTestHelper(nodeid=112233)

logger.info("Testing key exchange")
FailIfNot(test.TestKeyExchange(ip=options.deviceAddress,
setuppin=20202021,
nodeid=1),
"Failed to finish key exchange")

logger.info("Testing network commissioning")
FailIfNot(test.TestNetworkCommissioning(nodeid=1,
endpoint=ENDPOINT_ID,
group=GROUP_ID,
dataset=TEST_THREAD_NETWORK_DATASET_TLV,
network_id=TEST_THREAD_NETWORK_ID),
"Failed to finish network commissioning")

logger.info("Testing on off cluster")
FailIfNot(test.TestOnOffCluster(nodeid=1,
endpoint=LIGHTING_ENDPOINT_ID,
group=GROUP_ID), "Failed to test on off cluster")

FailIfNot(test.TestOnOffCluster(nodeid=1,
endpoint=233,
group=GROUP_ID), "Failed to test on off cluster on non-exist endpoint")
logger.info("Testing sending commands to non exist endpoint")
FailIfNot(not test.TestOnOffCluster(nodeid=1,
endpoint=233,
group=GROUP_ID), "Failed to test on off cluster on non-exist endpoint")

logger.info("Testing attribute reading")
FailIfNot(test.TestReadBasicAttribiutes(nodeid=1,
endpoint=ENDPOINT_ID,
group=GROUP_ID),
Expand Down
118 changes: 47 additions & 71 deletions src/test_driver/linux-cirque/test-mobile-device.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,14 +77,16 @@ def run_controller_test(self):

req_device_id = req_ids[0]

command = "gdb -return-child-result -q -ex run -ex bt --args python3 /usr/bin/mobile-device-test.py -t 75 -a {}".format(ethernet_ip)
command = "gdb -return-child-result -q -ex run -ex bt --args python3 /usr/bin/mobile-device-test.py -t 75 -a {}".format(
ethernet_ip)
ret = self.execute_device_cmd(req_device_id, command)

self.assertEqual(ret['return_code'], '0',
"Test failed: non-zero return code")

# Check if the device is in thread network.
self.check_device_thread_state(server_ids[0], expected_role=['leader'], timeout=5)
self.check_device_thread_state(
server_ids[0], expected_role=['leader'], timeout=5)

# Check if the device is attached to the correct thread network.
for device_id in server_ids:
Expand All @@ -106,77 +108,51 @@ def run_controller_test(self):
"CHIP:ZCL: value: {value}"

for device_id in server_ids:
# VendorName
self.assertTrue(self.sequenceMatch(ret['output'],
[fmt.format(cluster='0x0028',
attr='0x0001',
attr_type='0x42',
value='TEST_VENDOR')]),
"Vendor Name was not found {}".format(device_id))
matchContent = []
matchContent += fmt.format(cluster='0x0028',
attr='0x0001',
attr_type='0x42',
value='TEST_VENDOR').split("\n")
matchContent += fmt.format(cluster='0x0028',
attr='0x0002',
attr_type='0x21',
value='0x235a').split("\n")
matchContent += fmt.format(cluster='0x0028',
attr='0x0003',
attr_type='0x42',
value='TEST_PRODUCT').split("\n")
matchContent += fmt.format(cluster='0x0028',
attr='0x0004',
attr_type='0x21',
value='0xfeff').split("\n")
matchContent += fmt.format(cluster='0x0028',
attr='0x0005',
attr_type='0x42',
value='').split("\n")
matchContent += fmt.format(cluster='0x0028',
attr='0x0006',
attr_type='0x42',
value='').split("\n")
matchContent += fmt.format(cluster='0x0028',
attr='0x0007',
attr_type='0x21',
value='0x0001').split("\n")
matchContent += fmt.format(cluster='0x0028',
attr='0x0008',
attr_type='0x42',
value='TEST_VERSION').split("\n")
matchContent += fmt.format(cluster='0x0028',
attr='0x0009',
attr_type='0x23',
value='0x00000001').split("\n")
matchContent += fmt.format(cluster='0x0028',
attr='0x000a',
attr_type='0x42',
value='prerelease').split("\n")

# VendorID
self.assertTrue(self.sequenceMatch(ret['output'],
[fmt.format(cluster='0x0028',
attr='0x0002',
attr_type='0x21',
value='0x235a')]),
"Vendor ID was not found {}".format(device_id))
# ProductName
self.assertTrue(self.sequenceMatch(ret['output'],
[fmt.format(cluster='0x0028',
attr='0x0003',
attr_type='0x42',
value='TEST_PRODUCT')]),
"Product Name was not found {}".format(device_id))
# ProductID
self.assertTrue(self.sequenceMatch(ret['output'],
[fmt.format(cluster='0x0028',
attr='0x0004',
attr_type='0x21',
value='0xfeff')]),
"ProductID was not found {}".format(device_id))
# UserLabel
self.assertTrue(self.sequenceMatch(ret['output'],
[fmt.format(cluster='0x0028',
attr='0x0005',
attr_type='0x42',
value='')]),
"UserLabel was not found {}".format(device_id))
# Location
self.assertTrue(self.sequenceMatch(ret['output'],
[fmt.format(cluster='0x0028',
attr='0x0006',
attr_type='0x42',
value='')]),
"Location was not found {}".format(device_id))
# HardwareVersion
self.assertTrue(self.sequenceMatch(ret['output'],
[fmt.format(cluster='0x0028',
attr='0x0007',
attr_type='0x21',
value='0x0001')]),
"HardwareVersion was not found {}".format(device_id))
# HardwareVersionString
self.assertTrue(self.sequenceMatch(ret['output'],
[fmt.format(cluster='0x0028',
attr='0x0008',
attr_type='0x42',
value='TEST_VERSION')]),
"HardwareVersionString was not found {}".format(device_id))
# SoftwareVersion
self.assertTrue(self.sequenceMatch(ret['output'],
[fmt.format(cluster='0x0028',
attr='0x0009',
attr_type='0x23',
value='0x00000001')]),
"SoftwareVersion was not found {}".format(device_id))
# SoftwareVersionString
self.assertTrue(self.sequenceMatch(ret['output'],
[fmt.format(cluster='0x0028',
attr='0x000a',
attr_type='0x42',
value='prerelease')]),
"SoftwareVersionString was not found {}".format(device_id))
matchContent),
"Attribute reading response was not found {}".format(device_id))


if __name__ == "__main__":
Expand Down