Skip to content

Commit e3bf1ba

Browse files
committed
Updating ChipDeviceCtrl and TC_CADMIN_1_3_4 modules:
- Removed additional commented out line of code in TC_CADMIN_1_3_4 test module. - Updated ChipDeviceCtrl module to move rcac_bytes var setting to a new function, removed additional print line. - Updated ChipDeviceCtrl module to await before setting the rcac_bytes var.
1 parent ecbeba6 commit e3bf1ba

File tree

2 files changed

+24
-23
lines changed

2 files changed

+24
-23
lines changed

src/controller/python/chip/ChipDeviceCtrl.py

+24-20
Original file line numberDiff line numberDiff line change
@@ -2260,32 +2260,36 @@ async def CommissionOnNetwork(self, nodeId: int, setupPinCode: int,
22602260
self.devCtrl, self.pairingDelegate, nodeId, setupPinCode, int(filterType), str(filter).encode("utf-8") if filter is not None else None, discoveryTimeoutMsec)
22612261
)
22622262

2263-
# If RCAC data is needed, await the result
2264-
if get_rcac:
2265-
try:
2266-
sleep(60)
2267-
rcac_data_ptr = POINTER(c_uint8)()
2268-
rcac_size = c_size_t()
2263+
res = await asyncio.futures.wrap_future(ctx.future)
22692264

2270-
# Call the C++ function to get the RCAC data
2271-
self._dmLib.pychip_GetCommissioningRCACData(byref(rcac_data_ptr), byref(rcac_size))
2265+
# If RCAC data is wanted, attempt to pull the result
2266+
if get_rcac:
2267+
rcac_bytes = self.get_rcac()
2268+
return (res, rcac_bytes)
22722269

2273-
# Check if data is available
2274-
if rcac_size.value > 0:
2275-
# Convert the data to a Python bytes object
2276-
rcac_data = cast(rcac_data_ptr, POINTER(c_uint8 * rcac_size.value)).contents
2277-
rcac_bytes = bytes(rcac_data)
2278-
else:
2279-
raise Exception("RCAC data is empty")
2270+
else:
2271+
return res
22802272

2281-
except Exception as e:
2282-
LOGGER.error(f"Error during RCAC data fetching: {e}")
2273+
def get_rcac(self):
2274+
try:
2275+
rcac_data_ptr = POINTER(c_uint8)()
2276+
rcac_size = c_size_t()
22832277

2284-
LOGGER.info(f"Commissioning RCAC Data: {rcac_bytes}")
2285-
return (await asyncio.futures.wrap_future(ctx.future), rcac_bytes)
2278+
# Call the C++ function to get the RCAC data
2279+
self._dmLib.pychip_GetCommissioningRCACData(byref(rcac_data_ptr), byref(rcac_size))
22862280

2281+
# Check if data is available
2282+
if rcac_size.value > 0:
2283+
# Convert the data to a Python bytes object
2284+
rcac_data = cast(rcac_data_ptr, POINTER(c_uint8 * rcac_size.value)).contents
2285+
rcac_bytes = bytes(rcac_data)
22872286
else:
2288-
return await asyncio.futures.wrap_future(ctx.future)
2287+
raise Exception("RCAC data is empty")
2288+
2289+
except Exception as e:
2290+
LOGGER.error(f"Error during RCAC data fetching: {e}")
2291+
2292+
return rcac_bytes
22892293

22902294
async def CommissionWithCode(self, setupPayload: str, nodeid: int, discoveryType: DiscoveryType = DiscoveryType.DISCOVERY_ALL) -> int:
22912295
''' Commission with the given nodeid from the setupPayload.

src/python_testing/TC_CADMIN_1_3_4.py

-3
Original file line numberDiff line numberDiff line change
@@ -186,8 +186,6 @@ async def test_TC_CADMIN_1_3(self):
186186

187187
# Verify that the RootPublicKey matches the root public key for TH_CR2 and the NodeID matches the node ID used when TH_CR2 commissioned the device.
188188
await self.send_single_cmd(dev_ctrl=self.th2, node_id=self.dut_node_id, cmd=Clusters.GeneralCommissioning.Commands.ArmFailSafe(10))
189-
# th2_cam_rcac = TLVReader(base64.b64decode(
190-
# self.certificate_authority_manager.activeCaList[1]._persistentStorage._jsonData["sdk-config"]["f/2/r"])).get()["Any"][9]
191189

192190
if th2_fabric_info[0].rootPublicKey != th2_rcac_decoded:
193191
asserts.fail("public keys from fabric and certs for TH1 are not the same")
@@ -368,6 +366,5 @@ async def test_TC_CADMIN_1_4(self):
368366
removeFabricCmd = Clusters.OperationalCredentials.Commands.RemoveFabric(th2_idx[outer_key][inner_key][attribute_key])
369367
await self.th1.SendCommand(nodeid=self.dut_node_id, endpoint=0, payload=removeFabricCmd)
370368

371-
372369
if __name__ == "__main__":
373370
default_matter_test_main()

0 commit comments

Comments
 (0)