-
Notifications
You must be signed in to change notification settings - Fork 2.1k
/
Copy pathTest_TC_BRBINFO_2_1.yaml
647 lines (575 loc) · 19.7 KB
/
Test_TC_BRBINFO_2_1.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
# Copyright (c) 2021 Project CHIP Authors
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
name: 142.2.1. [TC-BRBINFO-2.1] Attributes [DUT-Server]
PICS:
- BRBINFO.S
config:
nodeId: 0x12344321
cluster: "Bridged Device Basic Information"
endpoint: 3
BRBINFO.ClusterId: 0x0039
tests:
- label: "Wait for the commissioned device to be retrieved"
cluster: "DelayCommands"
command: "WaitForCommissionee"
arguments:
values:
- name: "nodeId"
value: nodeId
- label:
"Step 2: TH reads attribute ID 0 from the DUT (matches in ID to
DataModelRevision in the parent cluster, but is absent on the
BridgedDeviceBasicInformation cluster)."
PICS: BRBINFO.S
cluster: "AnyCommands"
command: "ReadById"
arguments:
values:
- name: "ClusterId"
value: BRBINFO.ClusterId
- name: "AttributeId"
value: 0x0000
response:
error: UNSUPPORTED_ATTRIBUTE
- label: "Step 5: TH reads VendorName from the DUT."
PICS: BRBINFO.S.A0001
command: "readAttribute"
attribute: "VendorName"
response:
saveAs: VendorNameValue
constraints:
type: char_string
maxLength: 32
- label: "Step 6: TH writes VendorName as 'sample'"
PICS: BRBINFO.S.A0001
command: "writeAttribute"
attribute: "VendorName"
arguments:
value: "sample"
response:
error: UNSUPPORTED_WRITE
- label: "Step 7: TH reads VendorName from the DUT."
PICS: BRBINFO.S.A0001
command: "readAttribute"
attribute: "VendorName"
response:
value: VendorNameValue
- label: "Step 8: TH reads VendorID from the DUT."
PICS: BRBINFO.S.A0002
command: "readAttribute"
attribute: "VendorID"
response:
saveAs: VendorIDValue
constraints:
type: vendor_id
minValue: 1
maxValue: 65521
- label:
"Verify that VendorID matches the value assigned to this manufacturer"
cluster: "LogCommands"
command: "UserPrompt"
PICS: PICS_USER_PROMPT && BRBINFO.S.A0002
arguments:
values:
- name: "message"
value: "Please enter 'y' for success"
- name: "expectedValue"
value: "y"
- label: "Step 9: TH writes VendorID as '0x0011'"
PICS: BRBINFO.S.A0002
command: "writeAttribute"
attribute: "VendorID"
arguments:
value: 0x0011
response:
error: UNSUPPORTED_WRITE
- label: "Step 10: TH reads VendorID from the DUT."
PICS: BRBINFO.S.A0002
command: "readAttribute"
attribute: "VendorID"
response:
value: VendorIDValue
- label: "Step 11: TH reads ProductName from the DUT"
PICS: BRBINFO.S.A0003
command: "readAttribute"
attribute: "ProductName"
response:
saveAs: ProductNameValue
constraints:
type: char_string
maxLength: 32
- label: "Step 12: TH writes ProductName as 'newproduct'"
PICS: BRBINFO.S.A0003
command: "writeAttribute"
attribute: "ProductName"
arguments:
value: "newproduct"
response:
error: UNSUPPORTED_WRITE
- label: "Step 13: TH reads ProductName from the DUT"
PICS: BRBINFO.S.A0003
command: "readAttribute"
attribute: "ProductName"
response:
value: ProductNameValue
- label: "Step 14: TH reads ProductID from the DUT"
PICS: BRBINFO.S.A0004
command: "readAttribute"
attribute: "ProductID"
response:
constraints:
type: int16u
minValue: 1
maxValue: 65534
- label: "Step 17: TH reads NodeLabel from the DUT"
PICS: BRBINFO.S.A0005
command: "readAttribute"
attribute: "NodeLabel"
response:
saveAs: NodeLabelValue
constraints:
type: char_string
maxLength: 32
#Issue https://github.com/project-chip/connectedhomeip/issues/23509
- label: "Step 18: TH writes NodeLabel from the DUT."
PICS: BRBINFO.S.A0005 && PICS_USER_PROMPT
verification: |
./chip-tool bridgeddevicebasicinformation write node-label '"newnode"' 1 3
Via the TH (chip-tool), verify the SUCCESS response for NodeLabel attribute write function.
Current sample apps do not have this implementation. However, if the vendor has implemented it, the below response will be displayed.
NOTE the quotes: single-quote/double-quote/string/double-quote/single-quote
[1660839701.840432][2444:2449] CHIP:DMG: }
[1660839701.840505][2444:2449] CHIP:DMG:
[1660839701.840578][2444:2449] CHIP:DMG: StatusIB =
[1660839701.840661][2444:2449] CHIP:DMG: {
[1660839701.840742][2444:2449] CHIP:DMG: status = 0x00 (SUCCESS),
[1660839701.840827][2444:2449] CHIP:DMG: },
[1660839701.840905][2444:2449] CHIP:DMG:
[1660839701.840973][2444:2449] CHIP:DMG: },
cluster: "LogCommands"
command: "UserPrompt"
arguments:
values:
- name: "message"
value: "Please enter 'y' after success"
- name: "expectedValue"
value: "y"
- label: "Step 19: TH reads NodeLabel from the DUT"
PICS: BRBINFO.S.A0005 && PICS_USER_PROMPT
verification: |
./chip-tool bridgeddevicebasicinformation read node-label 1 3
Via the TH (chip-tool), verify that the NodeLabel attribute value is changed to newnode.
Current sample apps do not have this implementation. However, if the vendor has implemented it, the below response will be displayed.
[1657696463.081741][15476:15481] CHIP:TOO: Endpoint: 3 Cluster: 0x0000_0039 Attribute 0x0000_0005 DataVersion: 2577979325
[1657696463.081791][15476:15481] CHIP:TOO: NodeLabel: newnode
cluster: "LogCommands"
command: "UserPrompt"
arguments:
values:
- name: "message"
value: "Please enter 'y' after success"
- name: "expectedValue"
value: "y"
- label:
"Step 20: TH reads attribute ID 6 from the DUT (matches in ID to
Location in the parent cluster, but is absent on the
BridgedDeviceBasicInformation cluster)."
PICS: BRBINFO.S
cluster: "AnyCommands"
command: "ReadById"
arguments:
values:
- name: "ClusterId"
value: BRBINFO.ClusterId
- name: "AttributeId"
value: 0x0006
response:
error: UNSUPPORTED_ATTRIBUTE
- label: "Step 21: TH reads HardwareVersion from the DUT"
PICS: BRBINFO.S.A0007
command: "readAttribute"
attribute: "HardwareVersion"
response:
saveAs: HardwareVersionValue
constraints:
type: int16u
minValue: 0
maxValue: 65534
- label: "Step 22: TH writes HardwareVersion as '0x4531'"
PICS: BRBINFO.S.A0007
command: "writeAttribute"
attribute: "HardwareVersion"
arguments:
value: 0x4531
response:
error: UNSUPPORTED_WRITE
- label: "Step 23: TH reads HardwareVersion from the DUT"
PICS: BRBINFO.S.A0007
command: "readAttribute"
attribute: "HardwareVersion"
response:
value: HardwareVersionValue
- label: "Step 24: TH reads HardwareVersionString from the DUT."
PICS: BRBINFO.S.A0008
command: "readAttribute"
attribute: "HardwareVersionString"
response:
saveAs: HardwareVersionStringValue
constraints:
type: char_string
minLength: 1
maxLength: 64
- label: "Step 25: TH writes HardwareVersionString as 'newhardwareversion'"
PICS: BRBINFO.S.A0008
command: "writeAttribute"
attribute: "HardwareVersionString"
arguments:
value: "newhardwareversion"
response:
error: UNSUPPORTED_WRITE
- label: "Step 26: TH reads HardwareVersionString from the DUT."
PICS: BRBINFO.S.A0008
command: "readAttribute"
attribute: "HardwareVersionString"
response:
value: HardwareVersionStringValue
- label: "Step 27: TH reads SoftwareVersion from the DUT"
PICS: BRBINFO.S.A0009
command: "readAttribute"
attribute: "SoftwareVersion"
response:
saveAs: SoftwareVersionValue
constraints:
minValue: 0
maxValue: 4294967294
- label: "Step 28: TH writes SoftwareVersion as '0x8213'"
PICS: BRBINFO.S.A0009
command: "writeAttribute"
attribute: "SoftwareVersion"
arguments:
value: 0x8213
response:
error: UNSUPPORTED_WRITE
- label: "Step 29: TH reads SoftwareVersion from the DUT"
PICS: BRBINFO.S.A0009
command: "readAttribute"
attribute: "SoftwareVersion"
response:
value: SoftwareVersionValue
- label: "Step 30: TH reads SoftwareVersionString from the DUT"
PICS: BRBINFO.S.A000a
command: "readAttribute"
attribute: "SoftwareVersionString"
response:
saveAs: SoftwareVersionStringValue
constraints:
minLength: 1
maxLength: 64
- label: "Step 31: TH writes SoftwareVersionString as '1.0'"
PICS: BRBINFO.S.A000a
command: "writeAttribute"
attribute: "SoftwareVersionString"
arguments:
value: "1.0"
response:
error: UNSUPPORTED_WRITE
- label: "Step 32: TH reads SoftwareVersionString from the DUT"
PICS: BRBINFO.S.A000a
command: "readAttribute"
attribute: "SoftwareVersionString"
response:
value: SoftwareVersionStringValue
- label: "Step 33: TH reads ManufacturingDate from the DUT."
PICS: BRBINFO.S.A000b
command: "readAttribute"
attribute: "ManufacturingDate"
response:
saveAs: ManufacturingDateValue
constraints:
type: char_string
minLength: 8
maxLength: 16
- label:
"Verify if the first 8 characters specify date according to ISO 8601,
i.e, YYYYMMDD."
cluster: "LogCommands"
command: "UserPrompt"
PICS: PICS_USER_PROMPT && BRBINFO.S.A000b
arguments:
values:
- name: "message"
value: "Please enter 'y' for success"
- name: "expectedValue"
value: "y"
- label: "Step 34: TH writes ManufacturingDate as '20210814789452IN'"
PICS: BRBINFO.S.A000b
command: "writeAttribute"
attribute: "ManufacturingDate"
arguments:
value: "20210814789452IN"
response:
error: UNSUPPORTED_WRITE
- label: "Step 35: TH reads ManufacturingDate from the DUT."
PICS: BRBINFO.S.A000b
command: "readAttribute"
attribute: "ManufacturingDate"
response:
value: ManufacturingDateValue
- label: "Step 36: TH reads PartNumber from the DUT"
PICS: BRBINFO.S.A000c
command: "readAttribute"
attribute: "PartNumber"
response:
saveAs: PartNumberValue
constraints:
type: char_string
maxLength: 32
- label: "Step 37: TH writes PartNumber as 'newpart'"
PICS: BRBINFO.S.A000c
command: "writeAttribute"
attribute: "PartNumber"
arguments:
value: "newpart"
response:
error: UNSUPPORTED_WRITE
- label: "Step 38: TH reads PartNumber from the DUT"
PICS: BRBINFO.S.A000c
command: "readAttribute"
attribute: "PartNumber"
response:
value: PartNumberValue
- label: "Step 39: TH reads ProductURL from the DUT"
PICS: BRBINFO.S.A000d
command: "readAttribute"
attribute: "ProductURL"
response:
saveAs: ProductURLValue
constraints:
type: long_char_string
maxLength: 256
- label:
"Verify that it specifies a link to a specific web page, Verify that
it follows the syntax rules specified in RFC 3986."
cluster: "LogCommands"
command: "UserPrompt"
PICS: PICS_USER_PROMPT && BRBINFO.S.A000d
arguments:
values:
- name: "message"
value: "Please enter 'y' for success"
- name: "expectedValue"
value: "y"
- label: "Step 40: TH writes ProductURL as 'https://www.example.com'"
PICS: BRBINFO.S.A000d
command: "writeAttribute"
attribute: "ProductURL"
arguments:
value: "https://www.example.com"
response:
error: UNSUPPORTED_WRITE
- label: "Step 41: TH reads ProductURL from the DUT"
PICS: BRBINFO.S.A000d
command: "readAttribute"
attribute: "ProductURL"
response:
value: ProductURLValue
- label: "Step 42: TH reads ProductLabel from the DUT."
PICS: BRBINFO.S.A000e
command: "readAttribute"
attribute: "ProductLabel"
response:
saveAs: ProductLabelValue
constraints:
type: char_string
maxLength: 64
- label:
"Verify that it does not include the name of the vendor as defined
within the VendorName attribute"
cluster: "LogCommands"
command: "UserPrompt"
PICS: PICS_USER_PROMPT && BRBINFO.S.A000e
arguments:
values:
- name: "message"
value: "Please enter 'y' for success"
- name: "expectedValue"
value: "y"
- label: "Step 43: TH writes ProductLabel as 'newproductlabel'"
PICS: BRBINFO.S.A000e
command: "writeAttribute"
attribute: "ProductLabel"
arguments:
value: "newproductlabel"
response:
error: UNSUPPORTED_WRITE
- label: "Step 44: TH reads ProductLabel from the DUT."
PICS: BRBINFO.S.A000e
command: "readAttribute"
attribute: "ProductLabel"
response:
value: ProductLabelValue
- label: "Step 45: TH reads SerialNumber from the DUT."
PICS: BRBINFO.S.A000f
command: "readAttribute"
attribute: "SerialNumber"
response:
saveAs: SerialNumberValue
constraints:
type: char_string
maxLength: 32
- label: "Step 46: TH writes SerialNumber_test as 'newserialnumber'"
PICS: BRBINFO.S.A000f
command: "writeAttribute"
attribute: "SerialNumber"
arguments:
value: "newserialnumber"
response:
error: UNSUPPORTED_WRITE
- label: "Step 47: TH reads SerialNumber from the DUT."
PICS: BRBINFO.S.A000f
command: "readAttribute"
attribute: "SerialNumber"
response:
value: SerialNumberValue
- label:
"Step 48: TH reads attribute ID 0x0010 from the DUT (matches in ID to
LocalConfigDisabled in the parent cluster, but is absent on the
BridgedDeviceBasicInformation cluster)."
PICS: BRBINFO.S
cluster: "AnyCommands"
command: "ReadById"
arguments:
values:
- name: "ClusterId"
value: BRBINFO.ClusterId
- name: "AttributeId"
value: 0x0010
response:
error: UNSUPPORTED_ATTRIBUTE
- label: "Step 51: TH reads Reachable from the DUT."
PICS: BRBINFO.S.A0011
command: "readAttribute"
attribute: "Reachable"
response:
value: true
constraints:
type: boolean
- label:
"Step 52: TH sends Write request message to DUT to change value of
Reachable to 'false'"
PICS: BRBINFO.S.A0011
command: "writeAttribute"
attribute: "Reachable"
arguments:
value: false
response:
error: UNSUPPORTED_WRITE
- label: "Step 52b: TH reads Reachable from the DUT."
PICS: BRBINFO.S.A0011
command: "readAttribute"
attribute: "Reachable"
response:
value: true
constraints:
type: boolean
- label: "Step 53: TH reads UniqueID from the DUT."
PICS: BRBINFO.S.A0012
command: "readAttribute"
attribute: "UniqueID"
response:
saveAs: UniqueIDValue
constraints:
type: char_string
maxLength: 32
- label: "Step 54: TH writes UniqueID as 'newid'"
PICS: BRBINFO.S.A0012
command: "writeAttribute"
attribute: "UniqueID"
arguments:
value: "newid"
response:
error: UNSUPPORTED_WRITE
- label: "Step 55: TH reads UniqueID from the DUT."
PICS: BRBINFO.S.A0012
command: "readAttribute"
attribute: "UniqueID"
response:
value: UniqueIDValue
- label:
"Step 56: TH reads attribute ID 0x0013 from the DUT (matches in ID to
CapabilityMinima in the parent cluster, but is absent on the
BridgedDeviceBasicInformation cluster)."
PICS: BRBINFO.S
cluster: "AnyCommands"
command: "ReadById"
arguments:
values:
- name: "ClusterId"
value: BRBINFO.ClusterId
- name: "AttributeId"
value: 0x0013
response:
error: UNSUPPORTED_ATTRIBUTE
- label: "Step 59: TH reads ProductAppearance from the DUT."
PICS: BRBINFO.S.A0014
command: "readAttribute"
attribute: "ProductAppearance"
response:
saveAs: ProductAppearancevalue
constraints:
type: ProductAppearanceStruct
- label: "Step 60: TH writes ProductAppearance to the DUT."
PICS: BRBINFO.S.A0014
command: "writeAttribute"
attribute: "ProductAppearance"
arguments:
value: { "Finish": 3, "PrimaryColor": 4 }
response:
error: UNSUPPORTED_WRITE
- label: "Step 61: TH reads ProductAppearance attribute from the DUT."
PICS: BRBINFO.S.A0014
command: "readAttribute"
attribute: "ProductAppearance"
response:
value: ProductAppearancevalue
- label:
"Step 62: TH reads attribute ID 0x0015 from the DUT (matches in ID to
CapabilityMinima in the parent cluster, but is absent on the
BridgedDeviceBasicInformation cluster)."
PICS: BRBINFO.S
cluster: "AnyCommands"
command: "ReadById"
arguments:
values:
- name: "ClusterId"
value: BRBINFO.ClusterId
- name: "AttributeId"
value: 0x0015
response:
error: UNSUPPORTED_ATTRIBUTE
- label:
"Step 63: TH reads attribute ID 0x0016 from the DUT (matches in ID to
CapabilityMinima in the parent cluster, but is absent on the
BridgedDeviceBasicInformation cluster)."
PICS: BRBINFO.S
cluster: "AnyCommands"
command: "ReadById"
arguments:
values:
- name: "ClusterId"
value: BRBINFO.ClusterId
- name: "AttributeId"
value: 0x0016
response:
error: UNSUPPORTED_ATTRIBUTE