Skip to content

Commit 2a62d3d

Browse files
committed
Merged test cases
1 parent e48e04a commit 2a62d3d

File tree

2 files changed

+67
-143
lines changed

2 files changed

+67
-143
lines changed

src/python_testing/TC_MWOCTRL_2_2.py

+67-20
Original file line numberDiff line numberDiff line change
@@ -39,16 +39,25 @@ def desc_TC_MWOCTRL_2_2(self) -> str:
3939
def steps_TC_MWOCTRL_2_2(self) -> list[TestStep]:
4040
steps = [
4141
TestStep(1, "Commissioning, already done", is_commissioning=True),
42-
TestStep(2, "Read the PowerSetting attribute"),
43-
TestStep(3, "Send the SetCookingParameters command"),
44-
TestStep(4, "Read and verify the PowerSetting attribute"),
45-
TestStep(5, "Cause constraint error response"),
42+
TestStep(2, "Set MinPowerValue variable"),
43+
TestStep(3, "Read the MinPower attribute"),
44+
TestStep(4, "Set the MaxPowerValue variable"),
45+
TestStep(5, "Read the MaxPower attribute"),
46+
TestStep(6, "Set the PowerStepValue variable"),
47+
TestStep(7, "Read the PowerStep attribute"),
48+
TestStep(8, "Read the PowerSetting attribute"),
49+
TestStep(9, "Send the SetCookingParameters command"),
50+
TestStep(10, "Read and verify the PowerSetting attribute"),
51+
TestStep(11, "Set the PowerSetting attribute to the minimum value"),
52+
TestStep(12, "Set the PowerSetting attribute to the maximum value"),
53+
TestStep(13, "Cause constraint error response"),
4654
]
4755
return steps
4856

4957
def pics_TC_MWOCTRL_2_2(self) -> list[str]:
5058
pics = [
5159
"MWOCTRL.S",
60+
"MWOCTRL.S.F00",
5261
]
5362
return pics
5463

@@ -63,40 +72,78 @@ async def test_TC_MWOCTRL_2_2(self):
6372
features = Clusters.MicrowaveOvenControl.Bitmaps.Feature
6473
commands = Clusters.Objects.MicrowaveOvenControl.Commands
6574

66-
feature_map = await self.read_mwoctrl_attribute_expect_success(endpoint=endpoint, attribute=attributes.FeatureMap)
67-
68-
only_pwrnum_supported = feature_map == features.kPowerAsNumber
69-
70-
if not only_pwrnum_supported:
71-
logging.info("More than PWRNUM is supported so skipping remaining test steps")
75+
if not feature_map & features.kPowerAsNumber:
76+
logging.info("PWRNUM is not supported so skipping remaining test steps")
7277
self.skip_all_remaining_steps(2)
7378
return
7479

75-
logging.info("Only the PWRNUM feature is supported so continuing with remaining test steps")
80+
logging.info("The PWRNUM feature is supported so continuing with remaining test steps")
81+
7682
self.step(2)
77-
powerValue = await self.read_mwoctrl_attribute_expect_success(endpoint=endpoint, attribute=attributes.PowerSetting)
78-
asserts.assert_greater_equal(powerValue, 10, "PowerSetting is less than 10")
79-
asserts.assert_less_equal(powerValue, 100, "PowerSetting is greater than 100")
80-
asserts.assert_true(powerValue % 10 == 0, "PowerSetting is not a multiple of 10")
83+
minPowerValue = 10
8184

8285
self.step(3)
83-
newPowerValue = (powerValue+10) % 100
86+
if self.pics_guard(self.check_pics("MWOCTRL.S.F02")):
87+
minPowerValue = await self.read_mwoctrl_attribute_expect_success(endpoint=endpoint, attribute=attributes.MinPower)
88+
logging.info("MinPower is %s" % minPowerValue)
89+
asserts.assert_true(minPowerValue >= 1, "MinPower is less than 1")
90+
91+
self.step(4)
92+
maxPowerValue = 100
93+
94+
self.step(5)
95+
if self.pics_guard(self.check_pics("MWOCTRL.S.F02")):
96+
maxPowerValue = await self.read_mwoctrl_attribute_expect_success(endpoint=endpoint, attribute=attributes.MaxPower)
97+
logging.info("MaxPower is %s" % maxPowerValue)
98+
asserts.assert_true(maxPowerValue >= minPowerValue, "MaxPower is less than MinPower")
99+
asserts.assert_true(maxPowerValue <= 100, "MaxPower is greater than 100")
100+
101+
self.step(6)
102+
powerStepValue = 10
103+
104+
self.step(7)
105+
if self.pics_guard(self.check_pics("MWOCTRL.S.F02")):
106+
powerStepValue = await self.read_mwoctrl_attribute_expect_success(endpoint=endpoint, attribute=attributes.PowerStep)
107+
logging.info("PowerStep is %s" % powerStepValue)
108+
asserts.assert_true(powerStepValue >= 1, "PowerStep is less than 1")
109+
asserts.assert_true(powerStepValue <= maxPowerValue, "PowerStep is greater than MaxPower")
110+
111+
self.step(8)
112+
powerValue = await self.read_mwoctrl_attribute_expect_success(endpoint=endpoint, attribute=attributes.PowerSetting)
113+
asserts.assert_greater_equal(powerValue, minPowerValue, "PowerSetting is less than the minimum.")
114+
asserts.assert_less_equal(powerValue, maxPowerValue, "PowerSetting is greater than the maxium")
115+
asserts.assert_true((powerValue-minPowerValue) % powerStepValue == 0, "PowerSetting is not a multiple of power step")
116+
117+
self.step(9)
118+
newPowerValue = (powerValue-minPowerValue) % (maxPowerValue-minPowerValue)+powerStepValue+minPowerValue
84119
try:
85120
await self.send_single_cmd(cmd=commands.SetCookingParameters(powerSetting=newPowerValue), endpoint=endpoint)
86121
except InteractionModelError as e:
87122
asserts.assert_equal(e.status, Status.Success, "Unexpected error returned")
88123

89-
self.step(4)
124+
self.step(10)
90125
powerValue = await self.read_mwoctrl_attribute_expect_success(endpoint=endpoint, attribute=attributes.PowerSetting)
91126
asserts.assert_true(powerValue == newPowerValue, "PowerSetting was not correctly set")
92127

93-
self.step(5)
94-
newPowerValue = 125
128+
self.step(11)
129+
try:
130+
await self.send_single_cmd(cmd=commands.SetCookingParameters(powerSetting=minPowerValue), endpoint=endpoint)
131+
except InteractionModelError as e:
132+
asserts.assert_equal(e.status, Status.Success, "Unable to set power value to minimum")
133+
134+
self.step(12)
135+
try:
136+
await self.send_single_cmd(cmd=commands.SetCookingParameters(powerSetting=maxPowerValue), endpoint=endpoint)
137+
except InteractionModelError as e:
138+
asserts.assert_equal(e.status, Status.Success, "Unable to set power value to maximum")
139+
140+
self.step(13)
141+
newPowerValue = maxPowerValue+1
95142
try:
96143
await self.send_single_cmd(cmd=commands.SetCookingParameters(powerSetting=newPowerValue), endpoint=endpoint)
97144
asserts.assert_fail("Expected an exception but received none.")
98145
except InteractionModelError as e:
99-
asserts.assert_equal(e.status, Status.ConstraintError, "Expected ConstraintError but received a different error.")
146+
asserts.assert_equal(e.status, Status.ConstraintError, "Expected ConstraintError but received a different response.")
100147

101148

102149
if __name__ == "__main__":

src/python_testing/TC_MWOCTRL_2_3.py

-123
This file was deleted.

0 commit comments

Comments
 (0)