-
Notifications
You must be signed in to change notification settings - Fork 2.1k
/
Copy pathTest_TC_BR_2.yaml
1691 lines (1231 loc) · 81.4 KB
/
Test_TC_BR_2.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
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# 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.
# Auto-generated scripts for harness use only, please review before automation. The endpoints and cluster names are currently set to default
name: 3.1.2. [TC-BR-2] Changing the set of Bridged Devices
PICS:
- MCORE.BRIDGE
config:
nodeId: 0x12344321
cluster: "Basic"
endpoint: 0
tests:
- label: "Precondition"
verification: |
1. DUT has been commissioned to TH
2.Two or more bridged devices of a supported type connected via non-Matter network/protocol to DUT (bridge)
disabled: true
- label:
"Read PartsList and DeviceTypeList attributes of the Descriptor
cluster of endpoint 0 For each endpoint listed in the PartsList
attribute of the Descriptor cluster of endpoint 0: read the PartsList
and DeviceTypeList attributes of the Descriptor cluster at that
endpoint"
PICS: MCORE.BRIDGE
verification: |
Read parts-list and device-list with endpoint 0, and for each of the endpoint listed for endpoint 0 read device-list and parts-list and verify the below log in TH
./chip-tool descriptor read parts-list 1 0
Verify in TH(chip-tool) Log
[1657004688.484502][4828:4833] CHIP:TOO: Endpoint: 0 Cluster: 0x0000_001D Attribute 0x0000_0003 DataVersion: 3573910940
[1657004688.484597][4828:4833] CHIP:TOO: parts list: 12 entries
[1657004688.484633][4828:4833] CHIP:TOO: [1]: 1
[1657004688.484662][4828:4833] CHIP:TOO: [2]: 3
[1657004688.484690][4828:4833] CHIP:TOO: [3]: 4
[1657004688.484718][4828:4833] CHIP:TOO: [4]: 5
[1657004688.484746][4828:4833] CHIP:TOO: [5]: 6
[1657004688.484774][4828:4833] CHIP:TOO: [6]: 7
[1657004688.484802][4828:4833] CHIP:TOO: [7]: 8
[1657004688.484830][4828:4833] CHIP:TOO: [8]: 9
[1657004688.484859][4828:4833] CHIP:TOO: [9]: 10
[1657004688.484888][4828:4833] CHIP:TOO: [10]: 11
[1657004688.484916][4828:4833] CHIP:TOO: [11]: 12
[1657004688.484944][4828:4833] CHIP:TOO: [12]: 13
./chip-tool descriptor read parts-list 1 1
Verify in TH(chip-tool) Log
[1657013897.304642][5792:5797] CHIP:TOO: Endpoint: 1 Cluster: 0x0000_001D Attribute 0x0000_0003 DataVersion: 1583672815
[1657013897.304741][5792:5797] CHIP:TOO: parts list: 11 entries
[1657013897.304778][5792:5797] CHIP:TOO: [1]: 3
[1657013897.304809][5792:5797] CHIP:TOO: [2]: 4
[1657013897.304840][5792:5797] CHIP:TOO: [3]: 5
[1657013897.304870][5792:5797] CHIP:TOO: [4]: 6
[1657013897.304900][5792:5797] CHIP:TOO: [5]: 7
[1657013897.304930][5792:5797] CHIP:TOO: [6]: 8
[1657013897.304960][5792:5797] CHIP:TOO: [7]: 9
[1657013897.304990][5792:5797] CHIP:TOO: [8]: 10
[1657013897.305020][5792:5797] CHIP:TOO: [9]: 11
[1657013897.305051][5792:5797] CHIP:TOO: [10]: 12
[1657013897.305081][5792:5797] CHIP:TOO: [11]: 13
./chip-tool descriptor read parts-list 1 3
Verify in TH(chip-tool) Log
[1657013905.333904][5805:5810] CHIP:TOO: Endpoint: 3 Cluster: 0x0000_001D Attribute 0x0000_0003 DataVersion: 4168180
[1657013905.333984][5805:5810] CHIP:TOO: parts list: 0 entries
./chip-tool descriptor read parts-list 1 4
Verify in TH(chip-tool) Log
[1657014011.276060][5822:5827] CHIP:TOO: Endpoint: 4 Cluster: 0x0000_001D Attribute 0x0000_0003 DataVersion: 2935336058
[1657014011.276141][5822:5827] CHIP:TOO: parts list: 0 entries
./chip-tool descriptor read parts-list 1 5
Verify in TH(chip-tool) Log
[1657014034.298958][5829:5834] CHIP:TOO: Endpoint: 5 Cluster: 0x0000_001D Attribute 0x0000_0003 DataVersion: 3372622835
[1657014034.299041][5829:5834] CHIP:TOO: parts list: 0 entries
./chip-tool descriptor read parts-list 1 6
Verify in TH(chip-tool) Log
[1657014056.893995][5847:5852] CHIP:TOO: Endpoint: 6 Cluster: 0x0000_001D Attribute 0x0000_0003 DataVersion: 1565587733
[1657014056.894072][5847:5852] CHIP:TOO: parts list: 3 entries
[1657014056.894104][5847:5852] CHIP:TOO: [1]: 7
[1657014056.894130][5847:5852] CHIP:TOO: [2]: 8
[1657014056.894154][5847:5852] CHIP:TOO: [3]: 9
./chip-tool descriptor read parts-list 1 7
Verify in TH(chip-tool) Log
[1657014071.347535][5854:5859] CHIP:TOO: Endpoint: 7 Cluster: 0x0000_001D Attribute 0x0000_0003 DataVersion: 1352552269
[1657014071.347611][5854:5859] CHIP:TOO: parts list: 0 entries
./chip-tool descriptor read parts-list 1 8
Verify in TH(chip-tool) Log
[1663236558.589003][5550:5555] CHIP:TOO: Endpoint: 8 Cluster: 0x0000_001D Attribute 0x0000_0003 DataVersion: 310844624
[1663236558.589059][5550:5555] CHIP:TOO: PartsList: 0 entries
./chip-tool descriptor read parts-list 1 9
Verify in TH(chip-tool) Log
[1663236593.607523][5556:5561] CHIP:TOO: Endpoint: 9 Cluster: 0x0000_001D Attribute 0x0000_0003 DataVersion: 3304459819
[1663236593.607583][5556:5561] CHIP:TOO: PartsList: 0 entries
./chip-tool descriptor read parts-list 1 10
Verify in TH(chip-tool) Log
[1663236642.682033][5565:5570] CHIP:TOO: Endpoint: 10 Cluster: 0x0000_001D Attribute 0x0000_0003 DataVersion: 2389378730
[1663236642.682091][5565:5570] CHIP:TOO: PartsList: 0 entries
./chip-tool descriptor read parts-list 1 11
Verify in TH(chip-tool) Log
[1663236682.900934][5573:5578] CHIP:TOO: Endpoint: 11 Cluster: 0x0000_001D Attribute 0x0000_0003 DataVersion: 3007496001
[1663236682.900988][5573:5578] CHIP:TOO: PartsList: 0 entries
./chip-tool descriptor read parts-list 1 12
Verify in TH(chip-tool) Log
[1663236715.610271][5579:5584] CHIP:TOO: Endpoint: 12 Cluster: 0x0000_001D Attribute 0x0000_0003 DataVersion: 2445783348
[1663236715.610328][5579:5584] CHIP:TOO: PartsList: 0 entries
./chip-tool descriptor read parts-list 1 13
Verify in TH(chip-tool) Log
[1663236752.985450][5590:5595] CHIP:TOO: Endpoint: 13 Cluster: 0x0000_001D Attribute 0x0000_0003 DataVersion: 4223376445
[1663236752.985512][5590:5595] CHIP:TOO: PartsList: 0 entries
./chip-tool descriptor read device-list 1 0
Verify in TH(chip-tool) Log
[1659500855.723987][2484:2490] CHIP:TOO: Endpoint: 0 Cluster: 0x0000_001D Attribute 0x0000_0000 DataVersion: 3659645514
[1659500855.724078][2484:2490] CHIP:TOO: device list: 1 entries
[1659500855.724161][2484:2490] CHIP:TOO: [1]: {
[1659500855.724190][2484:2490] CHIP:TOO: Type: 22
[1659500855.724219][2484:2490] CHIP:TOO: Revision: 1
[1659500855.724245][2484:2490] CHIP:TOO: }
[1659500855.724382][2484:2490] CHIP:EM: Sending Standalone Ack for MessageCounter:115141829 on exchange 59132i
./chip-tool descriptor read device-list 1 1
Verify in TH(chip-tool) Log
[1657014181.180101][5978:5983] CHIP:TOO: Endpoint: 1 Cluster: 0x0000_001D Attribute 0x0000_0000 DataVersion: 1583672815
[1657014181.180163][5978:5983] CHIP:TOO: device list: 1 entries
[1657014181.180244][5978:5983] CHIP:TOO: [1]: {
[1657014181.180289][5978:5983] CHIP:TOO: Type: 14
[1657014181.180319][5978:5983] CHIP:TOO: Revision: 1
[1657014181.180347][5978:5983] CHIP:TOO: }
./chip-tool descriptor read device-list 1 3
Verify in TH(chip-tool) Log
[1657003925.553294][4664:4669] CHIP:TOO: Endpoint: 3 Cluster: 0x0000_001D Attribute 0x0000_0000 DataVersion: 2452512872
[1657003925.553368][4664:4669] CHIP:TOO: device list: 2 entries
[1657003925.553430][4664:4669] CHIP:TOO: [1]: {
[1657003925.553492][4664:4669] CHIP:TOO: Type: 256
[1657003925.553527][4664:4669] CHIP:TOO: Revision: 1
[1657003925.553557][4664:4669] CHIP:TOO: }
[1657003925.553608][4664:4669] CHIP:TOO: [2]: {
[1657003925.553638][4664:4669] CHIP:TOO: Type: 19
[1657003925.553682][4664:4669] CHIP:TOO: Revision: 1
[1657003925.553714][4664:4669] CHIP:TOO: }
./chip-tool descriptor read device-list 1 4
Verify in TH(chip-tool) Log
[1657004014.927308][4678:4683] CHIP:TOO: Endpoint: 4 Cluster: 0x0000_001D Attribute 0x0000_0000 DataVersion: 1398882309
[1663141236.408628][40968:40973] CHIP:TOO: device list: 2 entries
[1663141236.408688][40968:40973] CHIP:TOO: [1]: {
[1663141236.408723][40968:40973] CHIP:TOO: Type: 770
[1663141236.408744][40968:40973] CHIP:TOO: Revision: 1
[1663141236.408762][40968:40973] CHIP:TOO: }
[1663141236.408791][40968:40973] CHIP:TOO: [2]: {
[1663141236.408812][40968:40973] CHIP:TOO: Type: 19
[1663141236.408836][40968:40973] CHIP:TOO: Revision: 1
[1663141236.408860][40968:40973] CHIP:TOO: }
./chip-tool descriptor read device-list 1 5
Verify in TH(chip-tool) Log
[1663141236.408519][40968:40973] CHIP:TOO: Endpoint: 5 Cluster: 0x0000_001D Attribute 0x0000_0000 DataVersion: 934498373
[1663141236.408628][40968:40973] CHIP:TOO: device list: 2 entries
[1663141236.408688][40968:40973] CHIP:TOO: [1]: {
[1663141236.408723][40968:40973] CHIP:TOO: Type: 770
[1663141236.408744][40968:40973] CHIP:TOO: Revision: 1
[1663141236.408762][40968:40973] CHIP:TOO: }
[1663141236.408791][40968:40973] CHIP:TOO: [2]: {
[1663141236.408812][40968:40973] CHIP:TOO: Type: 19
[1663141236.408836][40968:40973] CHIP:TOO: Revision: 1
[1663141236.408860][40968:40973] CHIP:TOO: }
./chip-tool descriptor read device-list 1 6
Verify in TH(chip-tool) Log
[1657004053.597061][4698:4703] CHIP:TOO: Endpoint: 6 Cluster: 0x0000_001D Attribute 0x0000_0000 DataVersion: 295450100
[1657004053.597116][4698:4703] CHIP:TOO: device list: 1 entries
[1657004053.597164][4698:4703] CHIP:TOO: [1]: {
[1657004053.597200][4698:4703] CHIP:TOO: Type: 19
[1657004053.597225][4698:4703] CHIP:TOO: Revision: 1
[1657004053.597248][4698:4703] CHIP:TOO: }
./chip-tool descriptor read device-list 1 10
Verify in TH(chip-tool) Log
[1657004074.939061][4704:4709] CHIP:TOO: Endpoint: 10 Cluster: 0x0000_001D Attribute 0x0000_0000 DataVersion: 259205426
[1657004074.939126][4704:4709] CHIP:TOO: device list: 2 entries
[1657004074.939178][4704:4709] CHIP:TOO: [1]: {
[1657004074.939221][4704:4709] CHIP:TOO: Type: 256
[1657004074.939250][4704:4709] CHIP:TOO: Revision: 1
[1657004074.939272][4704:4709] CHIP:TOO: }
[1657004074.939298][4704:4709] CHIP:TOO: [2]: {
[1657004074.939320][4704:4709] CHIP:TOO: Type: 19
[1657004074.939340][4704:4709] CHIP:TOO: Revision: 1
[1657004074.939361][4704:4709] CHIP:TOO: }
./chip-tool descriptor read device-list 1 11
Verify in TH(chip-tool) Log
[1657004114.075998][4725:4730] CHIP:TOO: Endpoint: 11 Cluster: 0x0000_001D Attribute 0x0000_0000 DataVersion: 4248421677
[1657004114.076073][4725:4730] CHIP:TOO: device list: 2 entries
[1657004114.076130][4725:4730] CHIP:TOO: [1]: {
[1657004114.076209][4725:4730] CHIP:TOO: Type: 256
[1657004114.076342][4725:4730] CHIP:TOO: Revision: 1
[1657004114.076372][4725:4730] CHIP:TOO: }
[1657004114.076407][4725:4730] CHIP:TOO: [2]: {
[1657004114.076435][4725:4730] CHIP:TOO: Type: 19
[1657004114.076474][4725:4730] CHIP:TOO: Revision: 1
[1657004114.076503][4725:4730] CHIP:TOO: }
./chip-tool descriptor read device-list 1 12
Verify in TH(chip-tool) Log
[1657004134.659723][4737:4742] CHIP:TOO: Endpoint: 12 Cluster: 0x0000_001D Attribute 0x0000_0000 DataVersion: 2731599835
[1657004134.659785][4737:4742] CHIP:TOO: device list: 2 entries
[1657004134.659835][4737:4742] CHIP:TOO: [1]: {
[1657004134.659875][4737:4742] CHIP:TOO: Type: 256
[1657004134.659901][4737:4742] CHIP:TOO: Revision: 1
[1657004134.659925][4737:4742] CHIP:TOO: }
[1657004134.659953][4737:4742] CHIP:TOO: [2]: {
[1657004134.659977][4737:4742] CHIP:TOO: Type: 19
[1657004134.660001][4737:4742] CHIP:TOO: Revision: 1
[1657004134.660023][4737:4742] CHIP:TOO: }
./chip-tool descriptor read device-list 1 13
Verify in TH(chip-tool) Log
[1657004152.758221][4749:4754] CHIP:TOO: Endpoint: 13 Cluster: 0x0000_001D Attribute 0x0000_0000 DataVersion: 3449178249
[1657004152.758277][4749:4754] CHIP:TOO: device list: 2 entries
[1657004152.758323][4749:4754] CHIP:TOO: [1]: {
[1657004152.758359][4749:4754] CHIP:TOO: Type: 256
[1657004152.758384][4749:4754] CHIP:TOO: Revision: 1
[1657004152.758406][4749:4754] CHIP:TOO: }
[1657004152.758433][4749:4754] CHIP:TOO: [2]: {
[1657004152.758456][4749:4754] CHIP:TOO: Type: 19
[1657004152.758478][4749:4754] CHIP:TOO: Revision: 1
[1657004152.758500][4749:4754] CHIP:TOO: }
disabled: true
- label:
"By inspecting the DeviceTypeList attributes read in step 1a,
determine which of those endpoints has a device type of Aggregator"
verification: |
Verify list of endpoints is printed for aggregator i.e., 0x000e=14
Then in this case with Endpoint 1 the device-list is printed aggregator i.e., 0x000e=14
./chip-tool descriptor read device-list 1 1
Verify in TH(chip-tool) Log
[1657002313.871608][3977:3982] CHIP:TOO: Endpoint: 1 Cluster: 0x0000_001D Attribute 0x0000_0000 DataVersion: 3021853414
[1657002313.871680][3977:3982] CHIP:TOO: device list: 1 entries
[1657002313.871740][3977:3982] CHIP:TOO: [1]: {
[1657002313.871788][3977:3982] CHIP:TOO: Type: 14
[1657002313.871821][3977:3982] CHIP:TOO: Revision: 1
[1657002313.871852][3977:3982] CHIP:TOO: }
./chip-tool descriptor read device-list 1 3
Verify in TH(chip-tool) Log
[1657002329.438065][3983:3988] CHIP:TOO: Endpoint: 3 Cluster: 0x0000_001D Attribute 0x0000_0000 DataVersion: 2452512872
[1657002329.438135][3983:3988] CHIP:TOO: device list: 2 entries
[1657002329.438193][3983:3988] CHIP:TOO: [1]: {
[1657002329.438238][3983:3988] CHIP:TOO: Type: 256
[1657002329.438269][3983:3988] CHIP:TOO: Revision: 1
[1657002329.438298][3983:3988] CHIP:TOO: }
[1657002329.438332][3983:3988] CHIP:TOO: [2]: {
[1657002329.438360][3983:3988] CHIP:TOO: Type: 19
[1657002329.438389][3983:3988] CHIP:TOO: Revision: 1
[1657002329.438416][3983:3988] CHIP:TOO: }
./chip-tool descriptor read device-list 1 4
Verify in TH(chip-tool) Log
[1657002348.693948][3989:3994] CHIP:TOO: Endpoint: 4 Cluster: 0x0000_001D Attribute 0x0000_0000 DataVersion: 1398882309
[1663141236.408628][40968:40973] CHIP:TOO: device list: 2 entries
[1663141236.408688][40968:40973] CHIP:TOO: [1]: {
[1663141236.408723][40968:40973] CHIP:TOO: Type: 770
[1663141236.408744][40968:40973] CHIP:TOO: Revision: 1
[1663141236.408762][40968:40973] CHIP:TOO: }
[1663141236.408791][40968:40973] CHIP:TOO: [2]: {
[1663141236.408812][40968:40973] CHIP:TOO: Type: 19
[1663141236.408836][40968:40973] CHIP:TOO: Revision: 1
[1663141236.408860][40968:40973] CHIP:TOO: }
./chip-tool descriptor read device-list 1 5
Verify in TH(chip-tool) Log
[1657002369.589492][3996:4001] CHIP:TOO: Endpoint: 5 Cluster: 0x0000_001D Attribute 0x0000_0000 DataVersion: 130458766
[1663141236.408628][40968:40973] CHIP:TOO: device list: 2 entries
[1663141236.408688][40968:40973] CHIP:TOO: [1]: {
[1663141236.408723][40968:40973] CHIP:TOO: Type: 770
[1663141236.408744][40968:40973] CHIP:TOO: Revision: 1
[1663141236.408762][40968:40973] CHIP:TOO: }
[1663141236.408791][40968:40973] CHIP:TOO: [2]: {
[1663141236.408812][40968:40973] CHIP:TOO: Type: 19
[1663141236.408836][40968:40973] CHIP:TOO: Revision: 1
[1663141236.408860][40968:40973] CHIP:TOO: }
./chip-tool descriptor read device-list 1 6
Verify in TH(chip-tool) Log
[1657002386.484093][4002:4007] CHIP:TOO: Endpoint: 6 Cluster: 0x0000_001D Attribute 0x0000_0000 DataVersion: 295450100
[1657002386.484155][4002:4007] CHIP:TOO: device list: 1 entries
[1657002386.484255][4002:4007] CHIP:TOO: [1]: {
[1657002386.484302][4002:4007] CHIP:TOO: Type: 19
[1657002386.484332][4002:4007] CHIP:TOO: Revision: 1
[1657002386.484361][4002:4007] CHIP:TOO: }
./chip-tool descriptor read device-list 1 7
Verify in TH(chip-tool) Log
[1657002413.721927][4015:4020] CHIP:TOO: Endpoint: 7 Cluster: 0x0000_001D Attribute 0x0000_0000 DataVersion: 2117104859
[1657002413.721981][4015:4020] CHIP:TOO: device list: 1 entries
[1657002413.722028][4015:4020] CHIP:TOO: [1]: {
[1657002413.722065][4015:4020] CHIP:TOO: Type: 259
[1657002413.722090][4015:4020] CHIP:TOO: Revision: 1
[1657002413.722113][4015:4020] CHIP:TOO: }
./chip-tool descriptor read device-list 1 8
Verify in TH(chip-tool) Log
[1657002436.415904][4034:4039] CHIP:TOO: Endpoint: 8 Cluster: 0x0000_001D Attribute 0x0000_0000 DataVersion: 2026786918
[1657002436.415972][4034:4039] CHIP:TOO: device list: 1 entries
[1657002436.416033][4034:4039] CHIP:TOO: [1]: {
[1657002436.416081][4034:4039] CHIP:TOO: Type: 259
[1657002436.416115][4034:4039] CHIP:TOO: Revision: 1
[1657002436.416146][4034:4039] CHIP:TOO: }
./chip-tool descriptor read device-list 1 9
Verify in TH(chip-tool) Log
[1657002455.445818][4040:4045] CHIP:TOO: Endpoint: 9 Cluster: 0x0000_001D Attribute 0x0000_0000 DataVersion: 913116116
[1657002455.445883][4040:4045] CHIP:TOO: device list: 1 entries
[1657002455.445944][4040:4045] CHIP:TOO: [1]: {
[1657002455.445991][4040:4045] CHIP:TOO: Type: 17
[1657002455.446025][4040:4045] CHIP:TOO: Revision: 1
[1657002455.446056][4040:4045] CHIP:TOO: }
./chip-tool descriptor read device-list 1 10
Verify in TH(chip-tool) Log
[1657002473.100910][4047:4052] CHIP:TOO: Endpoint: 10 Cluster: 0x0000_001D Attribute 0x0000_0000 DataVersion: 259205426
[1657002473.100967][4047:4052] CHIP:TOO: device list: 2 entries
[1657002473.101013][4047:4052] CHIP:TOO: [1]: {
[1657002473.101051][4047:4052] CHIP:TOO: Type: 256
[1657002473.101076][4047:4052] CHIP:TOO: Revision: 1
[1657002473.101098][4047:4052] CHIP:TOO: }
[1657002473.101126][4047:4052] CHIP:TOO: [2]: {
[1657002473.101148][4047:4052] CHIP:TOO: Type: 19
[1657002473.101170][4047:4052] CHIP:TOO: Revision: 1
[1657002473.101192][4047:4052] CHIP:TOO: }
./chip-tool descriptor read device-list 1 11
Verify in TH(chip-tool) Log
[1657002495.856770][4061:4066] CHIP:TOO: Endpoint: 11 Cluster: 0x0000_001D Attribute 0x0000_0000 DataVersion: 4248421677
[1657002495.856836][4061:4066] CHIP:TOO: device list: 2 entries
[1657002495.856893][4061:4066] CHIP:TOO: [1]: {
[1657002495.856938][4061:4066] CHIP:TOO: Type: 256
[1657002495.856968][4061:4066] CHIP:TOO: Revision: 1
[1657002495.856996][4061:4066] CHIP:TOO: }
[1657002495.857030][4061:4066] CHIP:TOO: [2]: {
[1657002495.857058][4061:4066] CHIP:TOO: Type: 19
[1657002495.857085][4061:4066] CHIP:TOO: Revision: 1
[1657002495.857112][4061:4066] CHIP:TOO: }
./chip-tool descriptor read device-list 1 12
Verify in TH(chip-tool) Log
[1657002515.862187][4073:4078] CHIP:TOO: Endpoint: 12 Cluster: 0x0000_001D Attribute 0x0000_0000 DataVersion: 2731599835
[1657002515.862249][4073:4078] CHIP:TOO: device list: 2 entries
[1657002515.862302][4073:4078] CHIP:TOO: [1]: {
[1657002515.862343][4073:4078] CHIP:TOO: Type: 256
[1657002515.862372][4073:4078] CHIP:TOO: Revision: 1
[1657002515.862398][4073:4078] CHIP:TOO: }
[1657002515.862429][4073:4078] CHIP:TOO: [2]: {
[1657002515.862455][4073:4078] CHIP:TOO: Type: 19
[1657002515.862480][4073:4078] CHIP:TOO: Revision: 1
[1657002515.862504][4073:4078] CHIP:TOO: }
./chip-tool descriptor read device-list 1 13
Verify in TH(chip-tool) Log
[1657002538.134605][4097:4102] CHIP:TOO: Endpoint: 13 Cluster: 0x0000_001D Attribute 0x0000_0000 DataVersion: 3449178249
[1657002538.134700][4097:4102] CHIP:TOO: device list: 2 entries
[1657002538.134784][4097:4102] CHIP:TOO: [1]: {
[1657002538.134869][4097:4102] CHIP:TOO: Type: 256
[1657002538.134916][4097:4102] CHIP:TOO: Revision: 1
[1657002538.134973][4097:4102] CHIP:TOO: }
[1657002538.135025][4097:4102] CHIP:TOO: [2]: {
[1657002538.135083][4097:4102] CHIP:TOO: Type: 19
[1657002538.135126][4097:4102] CHIP:TOO: Revision: 1
[1657002538.135166][4097:4102] CHIP:TOO: }
disabled: true
- label:
"Add a bridged device (using a method indicated by the manufacturer)"
PICS: MCORE.BRIDGE
verification: |
Press 2 on bridge-app to add a bridged device
disabled: true
- label:
"Read the PartsList and DeviceTypeList attributes of the Descriptor
cluster on endpoint 0"
verification: |
Verify DeviceTypeList has not changed compared to step 1a and PartsList contains exactly one endpoint which previously was not present which is higher than the previously used highest endpoint and also make sure the previously listed endpoint doesn"t change
./chip-tool descriptor read parts-list 1 0
Verify in TH(chip-tool) Log
[1657004820.589511][4847:4853] CHIP:TOO: Endpoint: 0 Cluster: 0x0000_001D Attribute 0x0000_0003 DataVersion: 3573910941
[1657004820.589607][4847:4853] CHIP:TOO: parts list: 13 entries
[1657004820.589641][4847:4853] CHIP:TOO: [1]: 1
[1657004820.589667][4847:4853] CHIP:TOO: [2]: 3
[1657004820.589692][4847:4853] CHIP:TOO: [3]: 4
[1657004820.589716][4847:4853] CHIP:TOO: [4]: 5
[1657004820.589740][4847:4853] CHIP:TOO: [5]: 6
[1657004820.589765][4847:4853] CHIP:TOO: [6]: 7
[1657004820.589789][4847:4853] CHIP:TOO: [7]: 8
[1657004820.589814][4847:4853] CHIP:TOO: [8]: 9
[1657004820.589839][4847:4853] CHIP:TOO: [9]: 10
[1657004820.589863][4847:4853] CHIP:TOO: [10]: 11
[1657004820.589888][4847:4853] CHIP:TOO: [11]: 12
[1657004820.589912][4847:4853] CHIP:TOO: [12]: 13
[1657004820.589937][4847:4853] CHIP:TOO: [13]: 14
./chip-tool descriptor read device-list 1 0
Verify in TH(chip-tool) Log
[1657514215.227230][15951:15956] CHIP:TOO: Endpoint: 0 Cluster: 0x0000_001D Attribute 0x0000_0000 DataVersion: 508500617
[1657514215.227289][15951:15956] CHIP:TOO: device list: 1 entries
[1657514215.227362][15951:15956] CHIP:TOO: [1]: {
[1657514215.227388][15951:15956] CHIP:TOO: Type: 22
[1657514215.227411][15951:15956] CHIP:TOO: Revision: 1
[1657514215.227433][15951:15956] CHIP:TOO: }
disabled: true
- label: "Repeat step 2b for endpoint found in step 1b (the Aggregator EP)"
verification: |
Read parts-list and device-list with EP 1
./chip-tool descriptor read parts-list 1 1
Verify in TH(chip-tool) Log
[1657004854.903425][4855:4860] CHIP:TOO: Endpoint: 1 Cluster: 0x0000_001D Attribute 0x0000_0003 DataVersion: 3021853415
[1657004854.903514][4855:4860] CHIP:TOO: parts list: 12 entries
[1657004854.903545][4855:4860] CHIP:TOO: [1]: 3
[1657004854.903570][4855:4860] CHIP:TOO: [2]: 4
[1657004854.903595][4855:4860] CHIP:TOO: [3]: 5
[1657004854.903620][4855:4860] CHIP:TOO: [4]: 6
[1657004854.903645][4855:4860] CHIP:TOO: [5]: 7
[1657004854.903669][4855:4860] CHIP:TOO: [6]: 8
[1657004854.903694][4855:4860] CHIP:TOO: [7]: 9
[1657004854.903719][4855:4860] CHIP:TOO: [8]: 10
[1657004854.903743][4855:4860] CHIP:TOO: [9]: 11
[1657004854.903768][4855:4860] CHIP:TOO: [10]: 12
[1657004854.903793][4855:4860] CHIP:TOO: [11]: 13
[1657004854.903818][4855:4860] CHIP:TOO: [12]: 14
./chip-tool descriptor read device-list 1 1
Verify in TH(chip-tool) Log
[1657514252.212456][15958:15963] CHIP:TOO: Endpoint: 1 Cluster: 0x0000_001D Attribute 0x0000_0000 DataVersion: 2755694332
[1657514252.212521][15958:15963] CHIP:TOO: device list: 1 entries
[1657514252.212578][15958:15963] CHIP:TOO: [1]: {
[1657514252.212610][15958:15963] CHIP:TOO: Type: 14
[1657514252.212639][15958:15963] CHIP:TOO: Revision: 1
[1657514252.212666][15958:15963] CHIP:TOO: }
disabled: true
- label:
"Read PartsList and DeviceTypeList attributes of the Descriptor
cluster of all other endpoints listed in the PartsList attribute in
the Descriptor cluster of endpoint 0"
verification: |
Verify that the contents of these attributes have not changed relative to step 1a
./chip-tool descriptor read parts-list 1 0
Verify in TH(chip-tool) Log
[1657014360.649059][5991:5997] CHIP:TOO: Endpoint: 0 Cluster: 0x0000_001D Attribute 0x0000_0003 DataVersion: 2526005575
[1657014360.649148][5991:5997] CHIP:TOO: parts list: 13 entries
[1657014360.649179][5991:5997] CHIP:TOO: [1]: 1
[1657014360.649204][5991:5997] CHIP:TOO: [2]: 3
[1657014360.649229][5991:5997] CHIP:TOO: [3]: 4
[1657014360.649253][5991:5997] CHIP:TOO: [4]: 5
[1657014360.649277][5991:5997] CHIP:TOO: [5]: 6
[1657014360.649301][5991:5997] CHIP:TOO: [6]: 7
[1657014360.649325][5991:5997] CHIP:TOO: [7]: 8
[1657014360.649350][5991:5997] CHIP:TOO: [8]: 9
[1657014360.649375][5991:5997] CHIP:TOO: [9]: 10
[1657014360.649399][5991:5997] CHIP:TOO: [10]: 11
[1657014360.649424][5991:5997] CHIP:TOO: [11]: 12
[1657014360.649448][5991:5997] CHIP:TOO: [12]: 13
[1657014360.649472][5991:5997] CHIP:TOO: [13]: 14
./chip-tool descriptor read parts-list 1 1
Verify in TH(chip-tool) Log
[1657014489.152608][6029:6034] CHIP:TOO: Endpoint: 1 Cluster: 0x0000_001D Attribute 0x0000_0003 DataVersion: 1583672816
[1657014489.152708][6029:6034] CHIP:TOO: parts list: 12 entries
[1657014489.152745][6029:6034] CHIP:TOO: [1]: 3
[1657014489.152776][6029:6034] CHIP:TOO: [2]: 4
[1657014489.152807][6029:6034] CHIP:TOO: [3]: 5
[1657014489.152838][6029:6034] CHIP:TOO: [4]: 6
[1657014489.152868][6029:6034] CHIP:TOO: [5]: 7
[1657014489.152899][6029:6034] CHIP:TOO: [6]: 8
[1657014489.152930][6029:6034] CHIP:TOO: [7]: 9
[1657014489.152960][6029:6034] CHIP:TOO: [8]: 10
[1657014489.152991][6029:6034] CHIP:TOO: [9]: 11
[1657014489.153022][6029:6034] CHIP:TOO: [10]: 12
[1657014489.153052][6029:6034] CHIP:TOO: [11]: 13
[1657014489.153083][6029:6034] CHIP:TOO: [12]: 14
./chip-tool descriptor read parts-list 1 3
Verify in TH(chip-tool) Log
[1657013905.333904][5805:5810] CHIP:TOO: Endpoint: 3 Cluster: 0x0000_001D Attribute 0x0000_0003 DataVersion: 4168180
[1657013905.333984][5805:5810] CHIP:TOO: parts list: 0 entries
./chip-tool descriptor read parts-list 1 4
Verify in TH(chip-tool) Log
[1657014011.276060][5822:5827] CHIP:TOO: Endpoint: 4 Cluster: 0x0000_001D Attribute 0x0000_0003 DataVersion: 2935336058
[1657014011.276141][5822:5827] CHIP:TOO: parts list: 0 entries
./chip-tool descriptor read parts-list 1 5
Verify in TH(chip-tool) Log
[1657014034.298958][5829:5834] CHIP:TOO: Endpoint: 5 Cluster: 0x0000_001D Attribute 0x0000_0003 DataVersion: 3372622835
[1657014034.299041][5829:5834] CHIP:TOO: parts list: 0 entries
./chip-tool descriptor read parts-list 1 6
Verify in TH(chip-tool) Log
[1657014056.893995][5847:5852] CHIP:TOO: Endpoint: 6 Cluster: 0x0000_001D Attribute 0x0000_0003 DataVersion: 1565587733
[1657014056.894072][5847:5852] CHIP:TOO: parts list: 3 entries
[1657014056.894104][5847:5852] CHIP:TOO: [1]: 7
[1657014056.894130][5847:5852] CHIP:TOO: [2]: 8
[1657014056.894154][5847:5852] CHIP:TOO: [3]: 9
./chip-tool descriptor read parts-list 1 7
Verify in TH(chip-tool) Log
[1657014071.347535][5854:5859] CHIP:TOO: Endpoint: 7 Cluster: 0x0000_001D Attribute 0x0000_0003 DataVersion: 1352552269
[1657014071.347611][5854:5859] CHIP:TOO: parts list: 0 entries
./chip-tool descriptor read parts-list 1 8
Verify in TH(chip-tool) Log
[1663236927.299795][5601:5606] CHIP:TOO: Endpoint: 8 Cluster: 0x0000_001D Attribute 0x0000_0003 DataVersion: 310
[1663236927.299849][5601:5606] CHIP:TOO: PartsList: 0 entries
./chip-tool descriptor read parts-list 1 9
Verify in TH(chip-tool) Log
[1663236962.433335][5608:5613] CHIP:TOO: Endpoint: 9 Cluster: 0x0000_001D Attribute 0x0000_0003 DataVersion: 3304459819
[1663236962.433395][5608:5613] CHIP:TOO: PartsList: 0 entries
./chip-tool descriptor read parts-list 1 10
Verify in TH(chip-tool) Log
[1663236993.718577][5615:5620] CHIP:TOO: Endpoint: 10 Cluster: 0x0000_001D Attribute 0x0000_0003 DataVersion: 2389378730
[1663236993.718639][5615:5620] CHIP:TOO: PartsList: 0 entries
./chip-tool descriptor read parts-list 1 11
Verify in TH(chip-tool) Log
1663237029.086031][5627:5632] CHIP:TOO: Endpoint: 11 Cluster: 0x0000_001D Attribute 0x0000_0003 DataVersion: 3007496001
[1663237029.086097][5627:5632] CHIP:TOO: PartsList: 0 entries
[
./chip-tool descriptor read parts-list 1 12
Verify in TH(chip-tool) Log
[1663237048.194842][5636:5641] CHIP:TOO: Endpoint: 12 Cluster: 0x0000_001D Attribute 0x0000_0003 DataVersion: 2445783348
[1663237048.194910][5636:5641] CHIP:TOO: PartsList: 0 entries
./chip-tool descriptor read parts-list 1 13
Verify in TH(chip-tool) Log
1663237070.228529][5642:5647] CHIP:TOO: Endpoint: 13 Cluster: 0x0000_001D Attribute 0x0000_0003 DataVersion: 4223376445
[1663237070.228588][5642:5647] CHIP:TOO: PartsList: 0 entries
./chip-tool descriptor read parts-list 1 14
Verify in TH(chip-tool) Log
1657014512.922645][6043:6048] CHIP:TOO: Endpoint: 14 Cluster: 0x0000_001D Attribute 0x0000_0003 DataVersion: 503350386
[1657014512.922742][6043:6048] CHIP:TOO: parts list: 0 entries
./chip-tool descriptor read device-list 1 1
Verify in TH(chip-tool) Log
[1657014181.180101][5978:5983] CHIP:TOO: Endpoint: 1 Cluster: 0x0000_001D Attribute 0x0000_0000 DataVersion: 1583672815
[1657014181.180163][5978:5983] CHIP:TOO: device list: 1 entries
[1657014181.180244][5978:5983] CHIP:TOO: [1]: {
[1657014181.180289][5978:5983] CHIP:TOO: Type: 14
[1657014181.180319][5978:5983] CHIP:TOO: Revision: 1
[1657014181.180347][5978:5983] CHIP:TOO: }
./chip-tool descriptor read device-list 1 3
Verify in TH(chip-tool) Log
[1657003925.553294][4664:4669] CHIP:TOO: Endpoint: 3 Cluster: 0x0000_001D Attribute 0x0000_0000 DataVersion: 2452512872
[1657003925.553368][4664:4669] CHIP:TOO: device list: 2 entries
[1657003925.553430][4664:4669] CHIP:TOO: [1]: {
[1657003925.553492][4664:4669] CHIP:TOO: Type: 256
[1657003925.553527][4664:4669] CHIP:TOO: Revision: 1
[1657003925.553557][4664:4669] CHIP:TOO: }
[1657003925.553608][4664:4669] CHIP:TOO: [2]: {
[1657003925.553638][4664:4669] CHIP:TOO: Type: 19
[1657003925.553682][4664:4669] CHIP:TOO: Revision: 1
[1657003925.553714][4664:4669] CHIP:TOO: }
./chip-tool descriptor read device-list 1 4
Verify in TH(chip-tool) Log
[1663237341.014887][5658:5663] CHIP:TOO: Endpoint: 4 Cluster: 0x0000_001D Attribute 0x0000_0000 DataVersion: 2509692936
[1663237341.014959][5658:5663] CHIP:TOO: DeviceTypeList: 2 entries
[1663237341.015014][5658:5663] CHIP:TOO: [1]: {
[1663237341.015044][5658:5663] CHIP:TOO: Type: 770
[1663237341.015072][5658:5663] CHIP:TOO: Revision: 1
[1663237341.015098][5658:5663] CHIP:TOO: }
[1663237341.015130][5658:5663] CHIP:TOO: [2]: {
[1663237341.015158][5658:5663] CHIP:TOO: Type: 19
[1663237341.015184][5658:5663] CHIP:TOO: Revision: 1
[1663237341.015210][5658:5663] CHIP:TOO: }
./chip-tool descriptor read device-list 1 5
Verify in TH(chip-tool) Log
[[1663237406.574050][5670:5675] CHIP:DMG: }
[1663237406.574405][5670:5675] CHIP:TOO: Endpoint: 5 Cluster: 0x0000_001D Attribute 0x0000_0000 DataVersion: 1669202494
[1663237406.574473][5670:5675] CHIP:TOO: DeviceTypeList: 2 entries
[1663237406.574528][5670:5675] CHIP:TOO: [1]: {
[1663237406.574559][5670:5675] CHIP:TOO: Type: 770
[1663237406.574587][5670:5675] CHIP:TOO: Revision: 1
[1663237406.574612][5670:5675] CHIP:TOO: }
[1663237406.574643][5670:5675] CHIP:TOO: [2]: {
[1663237406.574670][5670:5675] CHIP:TOO: Type: 19
[1663237406.574695][5670:5675] CHIP:TOO: Revision: 1
[1663237406.574721][5670:5675] CHIP:TOO: }
./chip-tool descriptor read device-list 1 6
Verify in TH(chip-tool) Log
[1657004053.597061][4698:4703] CHIP:TOO: Endpoint: 6 Cluster: 0x0000_001D Attribute 0x0000_0000 DataVersion: 295450100
[1657004053.597116][4698:4703] CHIP:TOO: device list: 1 entries
[1657004053.597164][4698:4703] CHIP:TOO: [1]: {
[1657004053.597200][4698:4703] CHIP:TOO: Type: 19
[1657004053.597225][4698:4703] CHIP:TOO: Revision: 1
[1657004053.597248][4698:4703] CHIP:TOO: }
./chip-tool descriptor read device-list 1 10
Verify in TH(chip-tool) Log
[1657004074.939061][4704:4709] CHIP:TOO: Endpoint: 10 Cluster: 0x0000_001D Attribute 0x0000_0000 DataVersion: 259205426
[1657004074.939126][4704:4709] CHIP:TOO: device list: 2 entries
[1657004074.939178][4704:4709] CHIP:TOO: [1]: {
[1657004074.939221][4704:4709] CHIP:TOO: Type: 256
[1657004074.939250][4704:4709] CHIP:TOO: Revision: 1
[1657004074.939272][4704:4709] CHIP:TOO: }
[1657004074.939298][4704:4709] CHIP:TOO: [2]: {
[1657004074.939320][4704:4709] CHIP:TOO: Type: 19
[1657004074.939340][4704:4709] CHIP:TOO: Revision: 1
[1657004074.939361][4704:4709] CHIP:TOO: }
./chip-tool descriptor read device-list 1 11
Verify in TH(chip-tool) Log
[1657004114.075998][4725:4730] CHIP:TOO: Endpoint: 11 Cluster: 0x0000_001D Attribute 0x0000_0000 DataVersion: 4248421677
[1657004114.076073][4725:4730] CHIP:TOO: device list: 2 entries
[1657004114.076130][4725:4730] CHIP:TOO: [1]: {
[1657004114.076209][4725:4730] CHIP:TOO: Type: 256
[1657004114.076342][4725:4730] CHIP:TOO: Revision: 1
[1657004114.076372][4725:4730] CHIP:TOO: }
[1657004114.076407][4725:4730] CHIP:TOO: [2]: {
[1657004114.076435][4725:4730] CHIP:TOO: Type: 19
[1657004114.076474][4725:4730] CHIP:TOO: Revision: 1
[1657004114.076503][4725:4730] CHIP:TOO: }
./chip-tool descriptor read device-list 1 12
Verify in TH(chip-tool) Log
[1657004134.659723][4737:4742] CHIP:TOO: Endpoint: 12 Cluster: 0x0000_001D Attribute 0x0000_0000 DataVersion: 2731599835
[1657004134.659785][4737:4742] CHIP:TOO: device list: 2 entries
[1657004134.659835][4737:4742] CHIP:TOO: [1]: {
[1657004134.659875][4737:4742] CHIP:TOO: Type: 256
[1657004134.659901][4737:4742] CHIP:TOO: Revision: 1
[1657004134.659925][4737:4742] CHIP:TOO: }
[1657004134.659953][4737:4742] CHIP:TOO: [2]: {
[1657004134.659977][4737:4742] CHIP:TOO: Type: 19
[1657004134.660001][4737:4742] CHIP:TOO: Revision: 1
[1657004134.660023][4737:4742] CHIP:TOO: }
./chip-tool descriptor read device-list 1 13
Verify in TH(chip-tool) Log
[1657004152.758221][4749:4754] CHIP:TOO: Endpoint: 13 Cluster: 0x0000_001D Attribute 0x0000_0000 DataVersion: 3449178249
[1657004152.758277][4749:4754] CHIP:TOO: device list: 2 entries
[1657004152.758323][4749:4754] CHIP:TOO: [1]: {
[1657004152.758359][4749:4754] CHIP:TOO: Type: 256
[1657004152.758384][4749:4754] CHIP:TOO: Revision: 1
[1657004152.758406][4749:4754] CHIP:TOO: }
[1657004152.758433][4749:4754] CHIP:TOO: [2]: {
[1657004152.758456][4749:4754] CHIP:TOO: Type: 19
[1657004152.758478][4749:4754] CHIP:TOO: Revision: 1
[1657004152.758500][4749:4754] CHIP:TOO: }
./chip-tool descriptor read device-list 1 14
Verify in TH(chip-tool) Log
[1657014545.912534][6051:6056] CHIP:TOO: Endpoint: 14 Cluster: 0x0000_001D Attribute 0x0000_0000 DataVersion: 503350386
[1657014545.912595][6051:6056] CHIP:TOO: device list: 2 entries
[1657014545.912645][6051:6056] CHIP:TOO: [1]: {
[1657014545.912684][6051:6056] CHIP:TOO: Type: 256
[1657014545.912710][6051:6056] CHIP:TOO: Revision: 1
[1657014545.912735][6051:6056] CHIP:TOO: }
[1657014545.912764][6051:6056] CHIP:TOO: [2]: {
[1657014545.912789][6051:6056] CHIP:TOO: Type: 19
[1657014545.912812][6051:6056] CHIP:TOO: Revision: 1
[1657014545.912835][6051:6056] CHIP:TOO: }
disabled: true
- label:
"Perform step 6 (for an actuator) resp. step 7 (for a sensor/switch)
of TC-BR-1 for the bridged device added in step 2"
PICS: MCORE.BRIDGE
verification: |
Verify step 6 and 7 of TC-BR-1 for bridged device added in step 2 of TC-BR-2
For actuator,
"From Step 5 output of TC-BR-1 , choose one of the device type and identfy the device from the device librray.
For Ex: on-off cluster has been taken as example to run tfurther steps" follow below steps
1) Choose on-off cluster as the bridged devices which is an actuator
2) ./chip-tool onoff read on-off 1 3
Verify the actual state of the bridged device in TH(chip-tool) Log
[1657004454.213279][4792:4798] CHIP:TOO: Endpoint: 3 Cluster: 0x0000_0006 Attribute 0x0000_0000 DataVersion: 3808303315
[1657004454.213319][4792:4798] CHIP:TOO: OnOff: FALSE
3) ./chip-tool onoff toggle 1 3
Verify On bridge-app
[1657522278.538831][18140:18140] CHIP:DMG: Received command for Endpoint=3 Cluster=0x0000_0006 Command=0x0000_0002
[1657522278.538861][18140:18140] CHIP:ZCL: On/Off set value: 3 2
[1657522278.538887][18140:18140] CHIP:DL: HandleReadOnOffAttribute: attrId=0, maxReadLength=1
[1657522278.538910][18140:18140] CHIP:ZCL: Toggle on/off from 0 to 1
[1657522278.538936][18140:18140] CHIP:DL: HandleWriteOnOffAttribute: attrId=0
[1657522278.538957][18140:18140] CHIP:DL: Device[Light 1]: ON
Verify actual state of the bridged device changes accordingly in TH(chip-tool) Log
[1657522278.539407][16698:16703] CHIP:DMG: {
[1657522278.539447][16698:16703] CHIP:DMG: suppressResponse = false,
[1657522278.539495][16698:16703] CHIP:DMG: InvokeResponseIBs =
[1657522278.539545][16698:16703] CHIP:DMG: [
[1657522278.539585][16698:16703] CHIP:DMG: InvokeResponseIB =
[1657522278.539641][16698:16703] CHIP:DMG: {
[1657522278.539688][16698:16703] CHIP:DMG: CommandStatusIB =
[1657522278.539746][16698:16703] CHIP:DMG: {
[1657522278.539795][16698:16703] CHIP:DMG: CommandPathIB =
[1657522278.539856][16698:16703] CHIP:DMG: {
[1657522278.539912][16698:16703] CHIP:DMG: EndpointId = 0x3,
[1657522278.539977][16698:16703] CHIP:DMG: ClusterId = 0x6,
[1657522278.540039][16698:16703] CHIP:DMG: CommandId = 0x2,
[1657522278.540097][16698:16703] CHIP:DMG: },
[1657522278.540162][16698:16703] CHIP:DMG:
[1657522278.540214][16698:16703] CHIP:DMG: StatusIB =
[1657522278.540276][16698:16703] CHIP:DMG: {
[1657522278.540332][16698:16703] CHIP:DMG: status = 0x00 (SUCCESS),
[1657522278.540386][16698:16703] CHIP:DMG: },
[1657522278.540446][16698:16703] CHIP:DMG:
[1657522278.540499][16698:16703] CHIP:DMG: },
[1657522278.540560][16698:16703] CHIP:DMG:
[1657522278.540605][16698:16703] CHIP:DMG: },
[1657522278.540658][16698:16703] CHIP:DMG:
[1657522278.540696][16698:16703] CHIP:DMG: ],
[1657522278.540744][16698:16703] CHIP:DMG:
[1657522278.540783][16698:16703] CHIP:DMG: InteractionModelRevision = 1
[1657522278.540825][16698:16703] CHIP:DMG: },
[1657522278.540916][16698:16703] CHIP:DMG: Received Command Response Status for Endpoint=3 Cluster=0x0000_0006 Command=0x0000_0002 Status=0x0
[1657522278.540981][16698:16703] CHIP:DMG: ICR moving to [AwaitingDe]
4)./chip-tool onoff read on-off 1 3
Verify the value of onoff matches the value of onoff in step 6c in TH(chip-tool) Log
[1657004565.254591][4804:4809] CHIP:TOO: Endpoint: 3 Cluster: 0x0000_0006 Attribute 0x0000_0000 DataVersion: 3808303316
[1657004565.254635][4804:4809] CHIP:TOO: OnOff: TRUE
For sensor
"From Step 5 output , choose one of the sensor device type and identfy the device from the device librray.
For Ex: temperature sensor, being added to bridge-app as example to run further steps "follow below steps:
1) Choose a sensor device (e.g. temperature sensor, being added to bridge-app)
2) ./chip-tool temperaturemeasurement read measured-value 1 4
Verify on TH(chip-tool) Log
[1659351487.005743][12201:12207] CHIP:TOO: Endpoint: 4 Cluster: 0x0000_0402 Attribute 0x0000_0000 DataVersion: 2406690152
[1659351487.005831][12201:12207] CHIP:TOO: MeasuredValue: 100
[1659351487.005924][12201:12207] CHIP:EM: Sending Standalone Ack for MessageCounter:236763897 on exchange 8128i
3) Press a key "tbd" on bridge-app to change the simulated temperature
Verify on bridge-app
[1659351537.115828][14237:14242] CHIP:DL: TempSensorDevice[TempSensor 1]: New measurement=""200""
[1659351537.115987][14237:14242] CHIP:DL: TempSensorDevice[TempSensor 2]: New measurement=""200""
[1659351537.116097][14237:14242] CHIP:DL: TempSensorDevice[Composed TempSensor 1]: New measurement=""200""
[1659351537.116158][14237:14237] CHIP:DMG: Endpoint 4, Cluster 0x0000_0402 update version to 8f732d69
[1659351537.116300][14237:14237] CHIP:DMG: Endpoint 5, Cluster 0x0000_0402 update version to 36be37c5
[1659351537.116393][14237:14237] CHIP:DMG: Endpoint 7, Cluster 0x0000_0402 update version to 2cf2064d
[1659351537.116179][14237:14242] CHIP:DL: TempSensorDevice[Composed TempSensor 2]: New measurement=""200""
4)./chip-tool temperaturemeasurement read measured-value 1 4
Verify on TH(chip-tool) Log
[1659351542.393349][12212:12217] CHIP:TOO: Endpoint: 4 Cluster: 0x0000_0402 Attribute 0x0000_0000 DataVersion: 2406690153
[1659351542.393429][12212:12217] CHIP:TOO: MeasuredValue: 200
[1659351542.393552][12212:12217] CHIP:EM: Sending Standalone Ack for MessageCounter:120981971 on exchange 25924i
disabled: true
- label:
"Remove one of the bridged devices (but not the one which was added in
step 2) (using a method indicated by the manufacturer)"
PICS: MCORE.BRIDGE
verification: |
Press 4 in the bridge-app to remove bridged device
disabled: true
- label:
"Read the PartsList and DeviceTypeList attributes in the Descriptor
cluster on endpoint 0"
verification: |
Verify the parts-list has EP which was present earlier is removed
./chip-tool descriptor read parts-list 1 0
Verify in TH(chip-tool) Log
[1657005165.790283][4885:4890] CHIP:TOO: Endpoint: 0 Cluster: 0x0000_001D Attribute 0x0000_0003 DataVersion: 3573910942
[1657005165.790379][4885:4890] CHIP:TOO: parts list: 12 entries
[1657005165.790409][4885:4890] CHIP:TOO: [1]: 1
[1657005165.790443][4885:4890] CHIP:TOO: [2]: 4
[1657005165.790472][4885:4890] CHIP:TOO: [3]: 5
[1657005165.790501][4885:4890] CHIP:TOO: [4]: 6
[1657005165.790529][4885:4890] CHIP:TOO: [5]: 7
[1657005165.790558][4885:4890] CHIP:TOO: [6]: 8
[1657005165.790585][4885:4890] CHIP:TOO: [7]: 9
[1657005165.790613][4885:4890] CHIP:TOO: [8]: 10
[1657005165.790641][4885:4890] CHIP:TOO: [9]: 11
[1657005165.790670][4885:4890] CHIP:TOO: [10]: 12
[1657005165.790698][4885:4890] CHIP:TOO: [11]: 13
[1657005165.790727][4885:4890] CHIP:TOO: [12]: 14
Verify that DeviceTypeList has not changed compared to step 1a
./chip-tool descriptor read device-list 1 0
Verify in TH(chip-tool) Log
[1657514215.227230][15951:15956] CHIP:TOO: Endpoint: 0 Cluster: 0x0000_001D Attribute 0x0000_0000 DataVersion: 508500617
[1657514215.227289][15951:15956] CHIP:TOO: device list: 1 entries