Skip to content

Commit 769f2bc

Browse files
committed
scripts changes are made as per comments in PR
1 parent 075dde0 commit 769f2bc

File tree

1 file changed

+14
-25
lines changed

1 file changed

+14
-25
lines changed

src/python_testing/TC_DRLK_2_13.py

+14-25
Original file line numberDiff line numberDiff line change
@@ -146,11 +146,11 @@ def steps_TC_DRLK_2_13(self) -> list[TestStep]:
146146
"Verify that the DUT responds with SetCredentialResponse command and Status success. This step will fill the last slot with credentialType as AliroEvictableEndpointKey"),
147147
TestStep("31",
148148
"TH sends SetCredential Command to DUT with CredentialType as AliroNonEvictableEndpointKey and number of credentials for 'alirouser' exceeds the max_aliro_keys_supported",
149-
"Verify that the DUT responds with SetCredentialResponse command and Status success."),
150-
TestStep("32", "TH sends GetCredentialStatus Command with Credential as 7 startcredentialindex+1",
151-
"DUT responds with GetCredentialStatusResponse Command and CredentialExists is false"),
152-
TestStep("33", "TH sends GetCredentialStatus Command with Credential as 8 startcredentialindex+2",
153-
"Verify DUT responds with GetCredentialStatusResponse having CredentialExists is true and UserIndex as 1"),
149+
"Verify that the DUT responds with SetCredentialResponse command and Status ResourceExhausted"),
150+
TestStep("32", "TH sends GetCredentialStatus Command with Credential as 7 1",
151+
"DUT responds with GetCredentialStatusResponse Command and CredentialExists is True"),
152+
TestStep("33", "TH sends GetCredentialStatus Command with Credential as 8 max_aliro_keys_supported",
153+
"Verify DUT responds with GetCredentialStatusResponse having CredentialExists is false and UserIndex as 1"),
154154
TestStep("34", "TH sends ClearCredential Command to DUT to clear the ALIRO CredentialType",
155155
"Verify that the DUT sends SUCCESS response"),
156156
TestStep("35", "TH sends ClearUser Command to DUT with the UserIndex as 1",
@@ -250,7 +250,7 @@ async def get_credentials_status(self, credentialIndex: int, credentialType: clu
250250
self.step(step)
251251
try:
252252
flags = ["DRLK.S.F0d", "DRLK.S.C24.Rsp", "DRLK.S.C25.Tx"]
253-
if not self.pics_guard(all([self.check_pics(p) for p in flags])):
253+
if self.pics_guard(all([self.check_pics(p) for p in flags])):
254254
credentials_struct = cluster.Structs.CredentialStruct(credentialIndex=credentialIndex,
255255
credentialType=credentialType)
256256
response = await self.send_single_cmd(endpoint=self.app_cluster_endpoint, timedRequestTimeoutMs=1000,
@@ -270,7 +270,7 @@ async def get_credentials_status(self, credentialIndex: int, credentialType: clu
270270

271271
async def set_credential_cmd(self, credential_enum: Clusters.DoorLock.Enums.CredentialTypeEnum, credentialIndex,
272272
operationType, userIndex, credentialData, userStatus, userType, step=None,
273-
expected_status: list[Status] = [Status.Success]):
273+
expected_status: Status = Status.Success):
274274
if step:
275275
self.step(step)
276276
credentials = cluster.Structs.CredentialStruct(
@@ -289,7 +289,7 @@ async def set_credential_cmd(self, credential_enum: Clusters.DoorLock.Enums.Cred
289289
timedRequestTimeoutMs=1000)
290290
asserts.assert_true(type_matches(response, Clusters.Objects.DoorLock.Commands.SetCredentialResponse),
291291
"Unexpected return type for SetCredential")
292-
asserts.assert_true(response.status in expected_status,
292+
asserts.assert_true(response.status == expected_status,
293293
"Error sending SetCredential command, status={}".format(str(response.status)))
294294
except InteractionModelError as e:
295295
logging.exception(e)
@@ -618,40 +618,29 @@ async def test_TC_DRLK_2_13(self):
618618
start_credential_index += 1
619619
logging.info(f"The updated value of start_credential_index is {start_credential_index}")
620620
else:
621-
# we are adding these codes to improve readability
622-
start_credential_index -= 1
623621
break
624-
# we are adding these codes to improve readability
625-
start_credential_index_for_evictable_endpoint = start_credential_index + 1
626-
start_credential_index_for_non_evictable_endpoint = start_credential_index + 2
627-
# step 30
628-
logging.info(
629-
f"the value of start_credential_index for evictable_endpoint is "
630-
f"{start_credential_index_for_evictable_endpoint} of step 30")
631622
self.step("30")
632623
await self.set_credential_cmd(credentialData=self.alirononevictableendpointkey,
633624
operationType=cluster.Enums.DataOperationTypeEnum.kAdd,
634625
credential_enum=cluster.Enums.CredentialTypeEnum.kAliroEvictableEndpointKey,
635-
credentialIndex=start_credential_index_for_evictable_endpoint, userIndex=1, userStatus=NullValue,
626+
credentialIndex=1, userIndex=1, userStatus=NullValue,
636627
userType=NullValue)
637-
logging.info(
638-
f"the value of start_credential_index for non_evictable_endpoint is "
639-
f"{start_credential_index_for_non_evictable_endpoint} of step 31")
628+
640629
# step 31
641630
self.step("31")
642631
await self.set_credential_cmd(credentialData=self.alirononevictableendpointkey1,
643632
operationType=cluster.Enums.DataOperationTypeEnum.kAdd,
644633
credential_enum=cluster.Enums.CredentialTypeEnum.kAliroNonEvictableEndpointKey,
645-
credentialIndex=start_credential_index_for_non_evictable_endpoint, userIndex=1, userStatus=NullValue,
634+
credentialIndex=self.max_aliro_keys_supported, userIndex=1, userStatus=NullValue,
646635
userType=NullValue,
647-
expected_status=[Status.InvalidCommand, Status.ResourceExhausted])
636+
expected_status=Status.ResourceExhausted)
648637
# step 32
649-
await self.get_credentials_status(step="32", credentialIndex=start_credential_index_for_evictable_endpoint,
638+
await self.get_credentials_status(step="32", credentialIndex=1,
650639
credentialType=cluster.Enums.CredentialTypeEnum.kAliroEvictableEndpointKey,
651640
credential_exists=True, userIndex=1)
652641

653642
# step 33
654-
await self.get_credentials_status(step="33", credentialIndex=start_credential_index_for_non_evictable_endpoint,
643+
await self.get_credentials_status(step="33", credentialIndex=self.max_aliro_keys_supported,
655644
credentialType=cluster.Enums.CredentialTypeEnum.kAliroNonEvictableEndpointKey,
656645
credential_exists=False, userIndex=NullValue)
657646
# step 34

0 commit comments

Comments
 (0)