Skip to content

Commit aac3e3f

Browse files
authored
TC-VALCC: Update wording on test steps (project-chip#36860)
* TC-VALCC: Update wording on test steps Test: Tests are all run in repl CI. * You know what really helps? Adding all your changes before pushing smooth moves, freeman.
1 parent ddc48d9 commit aac3e3f

File tree

3 files changed

+14
-13
lines changed

3 files changed

+14
-13
lines changed

src/python_testing/TC_VALCC_3_1.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -49,15 +49,15 @@ def desc_TC_VALCC_3_1(self) -> str:
4949

5050
def steps_TC_VALCC_3_1(self) -> list[TestStep]:
5151
steps = [
52-
TestStep(1, "Commissioning, already done", is_commissioning=True),
52+
TestStep(1, "Commission DUT if required", is_commissioning=True),
5353
TestStep(2, "Set up a subscription to all attributes on the DUT"),
5454
TestStep(3, "Send a close command to the DUT and wait until the CurrentState is closed", "DUT returns SUCCESS"),
5555
TestStep(4, "Send Open command", "DUT returns SUCCESS"),
56-
TestStep(5, "Wait until TH receives and data report for TargetState set to NULL and an attribute report for CurrentState set to Open (ordering does not matter)",
56+
TestStep(5, "Wait until TH receives the following reports (ordering does not matter): TargetState set to NULL, CurrentState set to Open",
5757
"Expected attribute reports are received"),
5858
TestStep(6, "Read CurrentState and TargetState attribute", "CurrentState is Open, TargetState is NULL"),
5959
TestStep(7, "Send Close command", "DUT returns SUCCESS"),
60-
TestStep(8, "Wait until TH receives and data report for TargetState set to NULL and an attribute report for CurrentState set to Closed (ordering does not matter)",
60+
TestStep(8, "Wait until TH receives the following reports (ordering does not matter): TargetState set to NULL, CurrentState set to Closed",
6161
"Expected attribute reports are received"),
6262
TestStep(9, "Read CurrentState and TargetState attribute", "CurrentState is Closed, TargetState is NULL"),
6363
]

src/python_testing/TC_VALCC_3_2.py

+8-7
Original file line numberDiff line numberDiff line change
@@ -51,19 +51,20 @@ def desc_TC_VALCC_3_2(self) -> str:
5151

5252
def steps_TC_VALCC_3_2(self) -> list[TestStep]:
5353
steps = [
54-
TestStep(1, "Commissioning, already done", is_commissioning=True),
54+
TestStep(1, "Commission DUT if required", is_commissioning=True),
5555
TestStep(2, "Set up a subscription to all attributes on the DUT"),
5656
TestStep(3, "Send a close command to the DUT and wait until the CurrentState is closed", "DUT returns SUCCESS"),
5757
TestStep(4, "TH sends command Open command with TargetLevel field set to 100 and the remaining fields not populated.",
5858
"Verify DUT responds w/ status SUCCESS(0x00)."),
59-
TestStep(5, "Wait until TH receives data reports for TargetState set to NULL, TargetLevel set to NULL, CurrentState set to Open and CurrentLevel set to 100 (ordering does not matter)",
60-
"Expected attribute reports are received"),
59+
TestStep(5, "Wait until TH receives the following reports (ordering does not matter): TargetState set to NULL, TargetLevel set to NULL, CurrentState set to Open, CurrentLevel set to 100",
60+
"Expected reports are received"),
6161
TestStep(6, "Read CurrentState, CurrentLevel, TargetState and TargetLevel attributes",
62-
"CurrentState is Open, CurrentLevel is 100, TargetState is NULL and TargetLevel is NULL"),
62+
"CurrentState is Open, CurrentLevel is 100, TargetState is NULL, TargetLevel is NULL"),
6363
TestStep(7, "Send Close command", "DUT returns SUCCESS"),
64-
TestStep(8, "Wait until TH receives and data report for TargetState set to NULL and an attribute report for CurrentState set to Closed (ordering does not matter)",
65-
"Expected attribute reports are received"),
66-
TestStep(9, "Read CurrentState and TargetState attribute", "CurrentState is Closed, TargetState is NULL"),
64+
TestStep(8, "Wait until TH receives the following reports (ordering does not matter): TargetState set to NULL, TargetLevel set to NULL, CurrentState set to Closed, CurrentLevel set to 0",
65+
"Expected reports are received"),
66+
TestStep(9, "Read CurrentState, CurrentLevel, TargetState and TargetLevel attributes",
67+
"CurrentState is Closed, CurrentLevel is 0, TargetState is NULL, TargetLevel is NULL"),
6768
]
6869
return steps
6970

src/python_testing/TC_VALCC_3_3.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -49,20 +49,20 @@ def desc_TC_VALCC_3_3(self) -> str:
4949

5050
def steps_TC_VALCC_3_3(self) -> list[TestStep]:
5151
steps = [
52-
TestStep(1, "Commissioning, already done", is_commissioning=True),
52+
TestStep(1, "Commission DUT if required", is_commissioning=True),
5353
TestStep(2, "Read AttributeList attribute", "Verify that the DUT response contains the AttributeList attribute."),
5454
TestStep(3, "If the DefaultOpenLevel is not supported, skip all remaining steps in this test"),
5555
TestStep(4, "TH reads from the DUT the DefaultOpenLevel attribute. Store the value as defaultOpenLevel."),
5656
TestStep(5, "Set up a subscription to all attributes on the DUT", "Subscription is successful"),
5757
TestStep(6, "Send a close command to the DUT and wait until the CurrentState is reported as closed", "DUT returns SUCCESS"),
5858
# TODO: this test should probably SET the default open attribute as well and un-set it at the end, so we're not testing against the default.
5959
TestStep(7, "Send Open command with no fields populated", "DUT returns SUCCESS"),
60-
TestStep(8, "Wait until TH receives the following data reports (ordering not checked): TargetState set to NULL, TargetLevel set to NULL, CurrentState set to Open, CurrentLevel set to defaultOpenLevel",
60+
TestStep(8, "Wait until TH receives the following reports (ordering does not matter): TargetState set to NULL, TargetLevel set to NULL, CurrentState set to Open, CurrentLevel set to defaultOpenLevel",
6161
"Expected attribute reports are received"),
6262
TestStep(9, "Read CurrentState and TargetState attribute", "CurrentState is Open, TargetState is NULL"),
6363
TestStep(10, "Read CurrentLevel and TargetLevel attribute", "CurrentLevel is defaultOpenLevel, TargetLevel is NULL"),
6464
TestStep(11, "Send Close command", "DUT returns SUCCESS"),
65-
TestStep(12, "Wait until TH receives the following data reports (ordering not checked): TargetState set to NULL, TargetLevel set to NULL, CurrentState set to Closed, CurrentLevel set to 0",
65+
TestStep(12, "Wait until TH receives the following reports (ordering does not matter): TargetState set to NULL, TargetLevel set to NULL, CurrentState set to Closed, CurrentLevel set to 0",
6666
"Expected attribute reports are received"),
6767
TestStep(13, "Read CurrentState and TargetState attribute", "CurrentState is Closed, TargetState is NULL"),
6868
TestStep(14, "Read CurrentLevel and TargetLevel attribute", "CurrentLevel is 0, TargetLevel is NULL"),

0 commit comments

Comments
 (0)