31
31
# quiet: true
32
32
# === END CI TEST ARGUMENTS ===
33
33
34
- import logging
35
34
import chip .clusters as Clusters
36
35
from chip .testing .matter_testing import MatterBaseTest , TestStep , async_test_body , default_matter_test_main
37
36
from chip .interaction_model import Status
38
37
from mobly import asserts
39
38
40
- logger = logging .getLogger (__name__ )
41
-
42
39
43
40
class Test_TC_FLABEL_2_1 (MatterBaseTest ):
44
41
def pics_TC_FLABEL_2_1 (self ) -> list [str ]:
@@ -64,36 +61,29 @@ async def test_TC_FLABEL_2_1(self):
64
61
attribute = Clusters .Objects .FixedLabel .Attributes .LabelList
65
62
)
66
63
asserts .assert_true (isinstance (initial_labels , list ), "LabelList should be a list type" )
67
- logger .info (f"Initial LabelList: { initial_labels } " )
68
64
69
65
# Step 3: Attempt to write LabelList (should fail)
70
66
self .step (3 )
71
- test_label = [Clusters .Objects .FixedLabel .Structs .LabelStruct (
72
- label = "Test_Label" ,
73
- value = "Test_Value"
74
- )]
75
- logger .info (f"Attempting to write LabelList: { test_label } " )
67
+ test_label = Clusters .Objects .FixedLabel .Attributes .LabelList (
68
+ [Clusters .Objects .FixedLabel .Structs .LabelStruct (
69
+ label = "Test_Label" ,
70
+ value = "Test_Value"
71
+ )]
72
+ )
76
73
77
- try :
78
- result = await self .default_controller .WriteAttribute (
79
- self .dut_node_id ,
80
- [(1 , Clusters .Objects .FixedLabel .Attributes .LabelList (test_label ))]
81
- )
82
- logger .info (f"Write result: { result } " )
83
- logger .info (f"Write status: { result [0 ]} " )
84
- asserts .assert_equal (result [0 ].Status , Status .UnsupportedWrite , "Expected UNSUPPORTED_WRITE status" )
85
- except Exception as e :
86
- logger .error (f"Unexpected error during write: { str (e )} " )
87
- asserts .fail (f"Unexpected error during write: { str (e )} " )
74
+ # Use write_single_attribute with expect_success=False since we expect it to fail
75
+ write_status = await self .write_single_attribute (
76
+ attribute_value = test_label ,
77
+ expect_success = False
78
+ )
79
+ asserts .assert_equal (write_status , Status .UnsupportedWrite , "Expected UNSUPPORTED_WRITE status" )
88
80
89
81
# Step 4: Verify LabelList hasn't changed
90
82
self .step (4 )
91
83
final_labels = await self .read_single_attribute_check_success (
92
84
cluster = Clusters .Objects .FixedLabel ,
93
85
attribute = Clusters .Objects .FixedLabel .Attributes .LabelList
94
86
)
95
- logger .info (f"Final LabelList: { final_labels } " )
96
-
97
87
asserts .assert_equal (initial_labels , final_labels ,
98
88
"LabelList should remain unchanged after write attempt" )
99
89
0 commit comments