forked from project-chip/connectedhomeip
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPICS.yaml
10370 lines (7848 loc) · 301 KB
/
PICS.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) 2023 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: PICS Item
PICS:
#
# Custom PICS
#
- label: "Prompts user for input. Unable to run in CI"
id: PICS_USER_PROMPT
- label: "Skip sample app"
id: PICS_SKIP_SAMPLE_APP
- label: "Run steps in SDK and CI only"
id: PICS_SDK_CI_ONLY
- label:
"EventList attribute enabled (default to false while EventList is
provisional)"
id: PICS_EVENT_LIST_ENABLED
#
# Base Details
#
- label: "Is DUT Software Component?"
id: MCORE.DT_SW_COMP
- label:
"Does the device support communication over Bluetooth Low Energy (BLE)
?"
id: MCORE.COM.BLE
- label: "Does the device support communication over Wi-Fi ?"
id: MCORE.COM.WIFI
- label: "Does the device support communication over Ethernet ?"
id: MCORE.COM.ETH
- label: "Does the device support communication over Thread ?"
id: MCORE.COM.THR
- label:
"Does the device support Wi-Fi or Thread interfaces communication ?"
id: MCORE.COM.WIRELESS
- label: "Does the device implement a Commissioner ?"
id: MCORE.ROLE.COMMISSIONER
- label: "Does the device implement a Commissionee ?"
id: MCORE.ROLE.COMMISSIONEE
- label: "Does the device implement a Controller ?"
id: MCORE.ROLE.CONTROLLER
- label: "Does the device support the Factory Reset Method?"
id: MCORE.UI.FACTORYRESET
- label:
"Does the commissionee device only function within a Matter network?"
id: MCORE.DD.CHIP_DEV
- label: "Is the commissionee device a lock device?"
id: MCORE.DD.DEV_LOCK
- label: "Is the commissionee device a barrier access device?"
id: MCORE.DD.DEV_BARRIER
- label:
"Does the commissionee device have a vendor specific information
element (IE)?"
id: MCORE.DD.IE
- label:
"Does the commissionee device or device packaging have a QR code based
onboarding payload?"
id: MCORE.DD.QR
- label:
"Does the commissionee device or device packaging have a Manual
Pairing Code?"
id: MCORE.DD.MANUAL_PC
- label:
"Does the commissionee device have a NFC tag containing the onboarding
payload?"
id: MCORE.DD.NFC
- label: "Does the commissionee device support dynamic passcodes?"
id: MCORE.DD.PASSCODE
- label: "Does the DUT support user interface?"
id: MCORE.DD.UI
- label: "Does the DUT support Commissioner Discovery?"
id: MCORE.DD.COMM_DISCOVERY
- label: "Is the DUT a Controller?"
id: MCORE.DD.CONTROLLER
- label:
"Does the commissionee device’s Onboarding Payload contain
concatenated QR codes?"
id: MCORE.DD.CONCATENATED_QR_CODE
- label:
"Does the commissioner support scanning and processing concatenated QR
codes?"
id: MCORE.DD.CTRL_CONCATENATED_QR_CODE_1
- label:
"Does the commissioner support processing devices in the order as
indicated in the concatenated QR codes?"
id: MCORE.DD.CTRL_CONCATENATED_QR_CODE_1_INORDER
- label:
"Does the commissioner support indicating to user the need to
commission devices one by one for concatenated QR codes?"
id: MCORE.DD.CTRL_CONCATENATED_QR_CODE_2
- label: "Does the commissioner support Discovery Capability over BLE?"
id: MCORE.DD.DISCOVERY_BLE
- label:
"Does the commissioner support Discovery Capability over IP Network?"
id: MCORE.DD.DISCOVERY_IP
- label: "Does the commissioner support Discovery Capability over SoftAP?"
id: MCORE.DD.DISCOVERY_SOFTAP
- label: "Does the commissioner support Discovery Capability over Wifi-PAF?"
id: MCORE.DD.DISCOVERY_PAF
- label: "Does the DUT support Standard Commissioning Flow?"
id: MCORE.DD.STANDARD_COMM_FLOW
- label: "Does the DUT support User-Intent Commissioning Flow?"
id: MCORE.DD.USER_INTENT_COMM_FLOW
- label: "Does the DUT support Custom Commissioning Flow?"
id: MCORE.DD.CUSTOM_COMM_FLOW
- label:
"Does the commissioner support accepting a Manual Pairing Code for
commissioning?"
id: MCORE.DD.MANUAL_PC_COMMISSIONING
- label:
"Does the commissioner support accepting an 11-digit Manual Pairing
Code for commissioning?"
id: MCORE.DD.11_MANUAL_PC
- label:
"Does the commissioner support accepting a 21-digit Manual Pairing
Code for commissioning?"
id: MCORE.DD.21_MANUAL_PC
- label:
"Is commissionee device subject to physical tampering (doorbell,
camera, door lock, designed for outdoor usage)?"
id: MCORE.DD.PHYSICAL_TAMPERING
- label:
"Does the commissioner support scanning NFC tags containing the
onboarding payload?"
id: MCORE.DD.SCAN_NFC
- label:
"Does the commissioner support accepting a QR code for commissioning?"
id: MCORE.DD.QR_COMMISSIONING
- label:
"Does the commissioner support scanning QR codes containing the
onboarding payload?"
id: MCORE.DD.SCAN_QR_CODE
- label:
"Does the commissionee device support Extended Discovery through
DNS-SD advertisements when device is not in commissioning mode?"
id: MCORE.DD.EXTENDED_DISCOVERY
- label:
"Does the commissionee device support advertising the Vendor ID
Commissioning Subtype in Commissionable Node Discovery through DNS-SD
advertisements?"
id: MCORE.DD.COMMISSIONING_SUBTYPE_V
- label:
"Does the commissionee device support advertising the Device Type
Commissioning Subtype in Commissionable Node Discovery through DNS-SD
advertisements?"
id: MCORE.DD.COMMISSIONING_SUBTYPE_T
- label:
"Does the commissionee device support TXT Key 'VP' (Vendor ID /
Product ID) in it’s DNS-SD TXT Records for Commissionable Node
Discovery?"
id: MCORE.DD.TXT_KEY_VP
- label:
"Does the commissionee device support TXT Key 'DT' (Device Type) in
it’s DNS-SD TXT Records for Commissionable Node Discovery?"
id: MCORE.DD.TXT_KEY_DT
- label:
"Does the commissionee device support TXT Key 'DN' (Device Name) in
it’s DNS-SD TXT Records for Commissionable Node Discovery?"
id: MCORE.DD.TXT_KEY_DN
- label:
"Does the commissionee device support TXT Key 'RI' (Rotating
Identifier) in it’s DNS-SD TXT Records for Commissionable Node
Discovery?"
id: MCORE.DD.TXT_KEY_RI
- label:
"Does the commissionee device support TXT Key 'PH' (Pairing Hint) in
it’s DNS-SD TXT Records for Commissionable Node Discovery?"
id: MCORE.DD.TXT_KEY_PH
- label:
"Does the commissionee device support TXT Key 'PI' (Pairing
Instruction) in it’s DNS-SD TXT Records for Commissionable Node
Discovery?"
id: MCORE.DD.TXT_KEY_PI
- label:
"Does device support optional subtype _V in commissionable node
discovery mDNS?"
id: MCORE.SC.VENDOR_SUBTYPE
- label:
"Does device support optional subtype _T in commissionable node
discovery mDNS?"
id: MCORE.SC.DEVTYPE_SUBTYPE
- label:
"Does device support optional key VP in commissionable node discovery
mDNS?"
id: MCORE.SC.VP_KEY
- label:
"Does device support optional key DT in commissionable node discovery
mDNS?"
id: MCORE.SC.DT_KEY
- label:
"Does device support optional key DN in commissionable node discovery
mDNS?"
id: MCORE.SC.DN_KEY
- label:
"Does device support optional key RI in commissionable node discovery
mDNS?"
id: MCORE.SC.RI_KEY
- label:
"Does device support optional key PH in commissionable node discovery
mDNS?"
id: MCORE.SC.PH_KEY
- label:
"Does device support optional key PI in commissionable node discovery
mDNS?"
id: MCORE.SC.PI_KEY
- label:
"Does device support optional key SII in operational discovery mDNS?"
id: MCORE.SC.SII_OP_DISCOVERY_KEY
- label:
"Does device support optional key SII in operational discovery mDNS?"
id: MCORE.SC.SAI_OP_DISCOVERY_KEY
- label:
"Does device support optional key SII in operational discovery mDNS?"
id: MCORE.SC.T_KEY
- label: "Is the DUT a Controller?"
id: MCORE.SC.DT_CONTROLLER
- label:
"Does device support optional key SII in commissionable node discovery
mDNS?"
id: MCORE.SC.SII_COMM_DISCOVERY_KEY
- label:
"Does device support optional key SAI in commissionable node discovery
mDNS?"
id: MCORE.SC.SAI_COMM_DISCOVERY_KEY
- label:
"Does device support Extended Discovery for Commissionable Node
Discovery?"
id: MCORE.SC.EXTENDED_DISCOVERY
- label: "Is the device a sleepy end device (SED)?"
id: MCORE.SC.SED
- label: "Does the Controller DUT support Service Advertising?"
id: MCORE.SC.ADV
- label: "Does Device support LwIP stack?"
id: MCORE.SC.LWIP
- label:
"Does Commissioner notify user that Commissionee is not a fully
trusted device on device attestation failure?"
id: MCORE.DA.ATTEST_WARNING
- label:
"Does commissionee-provided certification declaration make use of
dac_origin_vendor_id field?"
id: MCORE.DA.CERTDECL_ORIGIN_VENDORID
- label:
"Does commissionee-provided certification declaration make use of
dac_origin_product_id field?"
id: MCORE.DA.CERTDECL_ORIGIN_PRODUCTID
- label:
"Does commissionee-provided certification declaration make use of
authorized_paa_list field?"
id: MCORE.DA.CERTDECL_AUTH_PAA
- label:
"Does commissionee provide a Firmware Information field in the
AttestationResponse?"
id: MCORE.DA.ATTESTELEMENT_FW_INFO
#
# Fabric Synchronization
#
- label: "Does the device implement Fabric Synchronization capabilities?"
id: MCORE.FS
#
#IDM
#
- label: "Does the device implement the ICD Management cluster as a server?"
id: ICDM.S
- label: "Is the device a Server"
id: MCORE.IDM.S
- label: "Is the device a Client"
id: MCORE.IDM.C
- label:
"Is the device a Client and Supports sending a Invoke Request Message"
id: MCORE.IDM.C.InvokeRequest
- label:
"Is the device a Client and Supports sending a Read Request Message"
id: MCORE.IDM.C.ReadRequest
- label:
"Is the device a Client and Supports sending a Write Request Message"
id: MCORE.IDM.C.WriteRequest
- label:
"Is the device a Client and Supports sending a Subscribe Request
Message"
id: MCORE.IDM.C.SubscribeRequest
- label: "Is the device a Server and supports an attribute of DataType Bool"
id: MCORE.IDM.S.Attribute.DataType_Bool
- label:
"Is the device a Server and supports an attribute of DataType String"
id: MCORE.IDM.S.Attribute.DataType_String
- label:
"Is the device a Server and supports an attribute of DataType Unsigned
Integer"
id: MCORE.IDM.S.Attribute.DataType_UnsignedInteger
- label:
"Is the device a Server and supports an attribute of DataType Signed
Integer"
id: MCORE.IDM.S.Attribute.DataType_SignedInteger
- label:
"Is the device a Server and supports an attribute of DataType Struct"
id: MCORE.IDM.S.Attribute.DataType_Struct
- label:
"Is the device a Server and supports an attribute of DataType Floating
Point"
id: MCORE.IDM.S.Attribute.DataType_FloatingPoint
- label: "Is the device a Server and supports an attribute of DataType List"
id: MCORE.IDM.S.Attribute.DataType_List
- label:
"Is the device a Server and supports an attribute of DataType Octet
String"
id: MCORE.IDM.S.Attribute.DataType_OctetString
- label: "Is the device a Server and supports an attribute of DataType Enum"
id: MCORE.IDM.S.Attribute.DataType_Enum
- label:
"Is the device a Server and supports an attribute of DataType Bitmap"
id: MCORE.IDM.S.Attribute.DataType_Bitmap
- label:
"Is the device a Client and supports Reading an attribute of DataType
Bool"
id: MCORE.IDM.C.ReadRequest.Attribute.DataType_Bool
- label:
"Is the device a Client and supports Reading an attribute of DataType
String"
id: MCORE.IDM.C.ReadRequest.Attribute.DataType_String
- label:
"Is the device a Client and supports Reading an attribute of DataType
Unsigned Integer"
id: MCORE.IDM.C.ReadRequest.Attribute.DataType_UnsignedInteger
- label:
"Is the device a Client and supports Reading an attribute of DataType
Signed Integer"
id: MCORE.IDM.C.ReadRequest.Attribute.DataType_SignedInteger
- label:
"Is the device a Client and supports Reading an attribute of DataType
Struct"
id: MCORE.IDM.C.ReadRequest.Attribute.DataType_Struct
- label:
"Is the device a Client and supports Reading an attribute of DataType
Floating Point"
id: MCORE.IDM.C.ReadRequest.Attribute.DataType_FloatingPoint
- label:
"Is the device a Client and supports Reading an attribute of DataType
List"
id: MCORE.IDM.C.ReadRequest.Attribute.DataType_List
- label:
"Is the device a Client and supports Reading an attribute of DataType
Octet String"
id: MCORE.IDM.C.ReadRequest.Attribute.DataType_OctetString
- label:
"Is the device a Client and supports Reading an attribute of DataType
Enum"
id: MCORE.IDM.C.ReadRequest.Attribute.DataType_Enum
- label:
"Is the device a Client and supports Reading an attribute of DataType
Bitmap"
id: MCORE.IDM.C.ReadRequest.Attribute.DataType_Bitmap
- label:
"Is the device a Client and supports writing an attribute of DataType
Bool"
id: MCORE.IDM.C.WriteRequest.Attribute.DataType_Bool
- label:
"Is the device a Client and supports writing an attribute of DataType
String"
id: MCORE.IDM.C.WriteRequest.Attribute.DataType_String
- label:
"Is the device a Client and supports writing an attribute of DataType
Unsigned Integer"
id: MCORE.IDM.C.WriteRequest.Attribute.DataType_UnsignedInteger
- label:
"Is the device a Client and supports writing an attribute of DataType
Signed Integer"
id: MCORE.IDM.C.WriteRequest.Attribute.DataType_SignedInteger
- label:
"Is the device a Client and supports writing an attribute of DataType
Struct"
id: MCORE.IDM.C.WriteRequest.Attribute.DataType_Struct
- label:
"Is the device a Client and supports writing an attribute of DataType
Floating Point"
id: MCORE.IDM.C.WriteRequest.Attribute.DataType_FloatingPoint
- label:
"Is the device a Client and supports writing an attribute of DataType
List"
id: MCORE.IDM.C.WriteRequest.Attribute.DataType_List
- label:
"Is the device a Client and supports writing an attribute of DataType
Octet String"
id: MCORE.IDM.C.WriteRequest.Attribute.DataType_OctetString
- label:
"Is the device a Client and supports writing an attribute of DataType
Enum"
id: MCORE.IDM.C.WriteRequest.Attribute.DataType_Enum
- label:
"Is the device a Client and supports writing an attribute of DataType
Bitmap"
id: MCORE.IDM.C.WriteRequest.Attribute.DataType_Bitmap
- label:
"Is the device a Server and supports a writable attribute of DataType
Bool"
id: MCORE.IDM.S.Attribute_W.DataType_Bool
- label:
"Is the device a Server and supports a writable attribute of DataType
String"
id: MCORE.IDM.S.Attribute_W.DataType_String
- label:
"Is the device a Server and supports a writable attribute of DataType
UnsignedInteger"
id: MCORE.IDM.S.Attribute_W.DataType_UnsignedInteger
- label:
"Is the device a Server and supports a writable attribute of DataType
SignedInteger"
id: MCORE.IDM.S.Attribute_W.DataType_SignedInteger
- label:
"Is the device a Server and supports a writable attribute of DataType
Struct"
id: MCORE.IDM.S.Attribute_W.DataType_Struct
- label:
"Is the device a Server and supports a writable attribute of DataType
FloatingPoint"
id: MCORE.IDM.S.Attribute_W.DataType_FloatingPoint
- label:
"Is the device a Server and supports a writable attribute of DataType
List"
id: MCORE.IDM.S.Attribute_W.DataType_List
- label:
"Is the device a Server and supports a writable attribute of DataType
OctetString"
id: MCORE.IDM.S.Attribute_W.DataType_OctetString
- label:
"Is the device a Server and supports a writable attribute of DataType
Enum"
id: MCORE.IDM.S.Attribute_W.DataType_Enum
- label:
"Is the device a Server and supports a writable attribute of DataType
Bitmap"
id: MCORE.IDM.S.Attribute_W.DataType_Bitmap
- label:
"Is the device a Client and supports subscribing to an attribute of
DataType Bool"
id: MCORE.IDM.C.SubscribeRequest.Attribute.DataType_Bool
- label:
"Is the device a Client and supports subscribing to an attribute of
DataType String"
id: MCORE.IDM.C.SubscribeRequest.Attribute.DataType_String
- label:
"Is the device a Client and supports subscribing to an attribute of
DataType UnsignedInteger"
id: MCORE.IDM.C.SubscribeRequest.Attribute.DataType_UnsignedInteger
- label:
"Is the device a Client and supports subscribing to an attribute of
DataType Integer"
id: MCORE.IDM.C.SubscribeRequest.Attribute.DataType_Integer
- label:
"Is the device a Client and supports subscribing to an attribute of
DataType FloatingPoint"
id: MCORE.IDM.C.SubscribeRequest.Attribute.DataType_FloatingPoint
- label:
"Is the device a Client and supports subscribing to an attribute of
DataType List"
id: MCORE.IDM.C.SubscribeRequest.Attribute.DataType_List
- label:
"Is the device a Server and capable of generating large data which is
greater than 1 MTU(1280 bytes)"
id: MCORE.IDM.S.LargeData
- label:
"Is the device a Client and supports subscribing to an individual
Event"
id: MCORE.IDM.C.SubscribeEvent
- label: "Is the device a Client and supports Reading an individual Event"
id: MCORE.IDM.C.ReadEvent
- label:
"Is the device a client and supports subscribing to Multiple
Attributes"
id: MCORE.IDM.C.SubscribeRequest.MultipleAttributes
- label: "Is the device a Server and supports Persistent subscription"
id: MCORE.IDM.S.PersistentSubscription
- label: "Does the DUT implement a Bridge"
id: MCORE.BRIDGE
- label:
"Does the DUT have information on battery level of (at least some of)
of its bridged devices"
id: MCORE.BRIDGE.BatInfo
- label:
"Does the DUT have means to change the state of (at least some of) of
its bridged devices, e.g. through a manufacturer-provided app"
id: MCORE.BRIDGE.OtherControl
- label:
"Does the DUT have means to change the name of (at least some of) of
its bridged devices, e.g. through a manufacturer-provided app"
id: MCORE.BRIDGE.AllowDeviceRename
- label: "Does the DUT support a Bridge"
id: MCORE.BRIDGECLIENT
- label: "Does the DUT support to maintain a list of connected devices"
id: MCORE.DEVLIST.UseDevices
- label: "Does the DUT support to maintain the names of connected devices"
id: MCORE.DEVLIST.UseDeviceName
- label: "Does the DUT support to maintain the state of connected devices"
id: MCORE.DEVLIST.UseDeviceState
- label:
"Does the DUT support maintaining information on battery level of
connected devices"
id: MCORE.DEVLIST.UseBatInfo
- label: "Does the DUT support the BDX Sender role?"
id: MCORE.BDX.Sender
- label: "Does the DUT support the BDX Receiver role?"
id: MCORE.BDX.Receiver
- label: "Does the DUT support the BDX Sender role in Synchronous mode?"
id: MCORE.BDX.SynchronousSender
- label: "Does the DUT support the BDX Receiver role in Synchronous mode?"
id: MCORE.BDX.SynchronousReceiver
- label: "Does the DUT support the BDX Sender role in Asynchronous mode?"
id: MCORE.BDX.AsynchronousSender
- label: "Does the DUT support the BDX Receiver role in Asynchronous mode?"
id: MCORE.BDX.AsynchronousReceiver
- label: "Does the DUT control the rate of the BDX transfer ?"
id: MCORE.BDX.Driver
- label: "Is the DUT an Initiator of the BDX transfer?"
id: MCORE.BDX.Initiator
- label: "Is the DUT a Responder of the BDX transfer?"
id: MCORE.BDX.Responder
- label: "Does the DUT support sending the BlockQueryWithSkip message?"
id: MCORE.BDX.BlockQueryWithSkip
- label: "Does the DUT implement the OTA Requestor Device Type?"
id: MCORE.OTA.Requestor
- label: "Does the DUT implement the OTA Provider Device Type?"
id: MCORE.OTA.Provider
- label: "Does the DUT support the HTTPS Protocol for OTA image download?"
id: MCORE.OTA.HTTPS
- label:
"Does the DUT support obtaining user consent for OTA application by
virtue of built-in user interface capabilities?"
id: MCORE.OTA.RequestorConsent
- label: "Does the DUT support resumption of a transfer previously aborted?"
id: MCORE.OTA.Resume
- label: "Does the DUT support Vendor specific OTA implementation?"
id: MCORE.OTA.VendorSpecific
- label:
"Does the DUT have Administer privilege over the Access Control of
another node?"
id: MCORE.ACL.Administrator
- label:
"Does the Requestor DUT support querying a different Provider in its
OTA Provider List when it hits error conditions in invoking the
QueryImage command?"
id: MCORE.OTA.Retry
# Access Control cluster
- label: "Does the device implement the Access Control Cluster as a server?"
id: ACL.S
- label: "Does the device implement the Access Control Cluster as a client?"
id: ACL.C
#
# server / attributes
#
- label: "Does the device implement the ACL attribute?"
id: ACL.S.A0000
- label: "Does the device implement the extension attribute?"
id: ACL.S.A0001
- label:
"Does the device implement the SubjectsPerAccessControlEntry
attribute?"
id: ACL.S.A0002
- label: "Does the device implement the TargetsPerAccessControlEntry event?"
id: ACL.S.A0003
- label:
"Does the device implement the AccessControlEntriesPerFabric
attribute?"
id: ACL.S.A0004
#
# server / Events
#
- label: "Does the device implement the AccessControlEntryChanged Event?"
id: ACL.S.E00
- label:
"Does the device implement the AccessControlExtensionChanged Event?"
id: ACL.S.E01
#
# client / Events
#
- label: "Does the device implement the AccessControlEntryChanged Event?"
id: ACL.C.E00
- label:
"Does the device implement the AccessControlExtensionChanged Event?"
id: ACL.C.E01
# Access Control Enforcement Test Plan
- label:
"Does the device implement an Application Device Type on any endpoint"
id: APPDEVICE.S
# Content App Observer Cluster
- label:
"Does the device implement the Content App Observer cluster as a
server?"
id: APPOBSERVER.S
# Actions Cluster Test Plan
- label: "Does the device implement the Actions cluster as a server?"
id: ACT.S
- label: "Does the device implement the Actions cluster as a client?"
id: ACT.C
#
# server / attributes
#
- label: "Does the device implement the ActionList attribute?"
id: ACT.S.A0000
- label: "Does the device implement the EndpointLists attribute?"
id: ACT.S.A0001
- label: "Does the device implement the SetupURL attribute?"
id: ACT.S.A0002
#
# server / manually
#
- label:
"Can the ActionList attribute be filled or changed by some means? (see
Note)"
id: ACT.S.M.FillActionList
- label:
"Can the EndpointLists attribute be changed by some means? (see Note)"
id: ACT.S.M.FillEndpointLists
- label:
"Does the DUT support exposing an Endpoint in multiple
EndpointListStructs"
id: ACT.S.M.OverlappingEndpointLists
- label: "Can a suffix be used on SetupURL"
id: ACT.S.M.SetupURLWithSuffix
#
# client / commandsGenerated
#
- label: "Does the DUT support sending the InstantAction command?"
id: ACT.C.C00.Tx
- label:
"Does the DUT support sending the InstantActionWithTransition command?"
id: ACT.C.C01.Tx
- label: "Does the DUT support sending the StartAction command?"
id: ACT.C.C02.Tx
- label: "Does the DUT support sending the StartActionWithDuration command?"
id: ACT.C.C03.Tx
- label: "Does the DUT support sending the StopAction command?"
id: ACT.C.C04.Tx
- label: "Does the DUT support sending the PauseAction command?"
id: ACT.C.C05.Tx
- label: "Does the DUT support sending the PauseActionWithDuration command?"
id: ACT.C.C06.Tx
- label: "Does the DUT support sending the ResumeAction command?"
id: ACT.C.C07.Tx
- label: "Does the DUT support sending the EnableAction command?"
id: ACT.C.C08.Tx
- label:
"Does the DUT support sending the EnableActionWithDuration command?"
id: ACT.C.C09.Tx
- label: "Does the DUT support sending the DisableAction command?"
id: ACT.C.C0a.Tx
- label:
"Does the DUT support sending the DisableActionWithDuration command?"
id: ACT.C.C0b.Tx
#
# server / commandsGenerated
#
- label: "Does the device implement of InstantAction command?"
id: ACT.S.C00.Rsp
- label: "Does the device implement of InstantActionWithTransition command?"
id: ACT.S.C01.Rsp
- label: "Does the device implement of StartAction command?"
id: ACT.S.C02.Rsp
- label: "Does the device implement of StartActionWithDuration command?"
id: ACT.S.C03.Rsp
- label: "Does the device implement of StopAction command?"
id: ACT.S.C04.Rsp
- label: "Does the device implement of PauseAction command?"
id: ACT.S.C05.Rsp
- label: "Does the device implement of PauseActionWithDuration command?"
id: ACT.S.C06.Rsp
- label: "Does the device implement of ResumeAction command?"
id: ACT.S.C07.Rsp
- label: "Does the device implement of EnableAction command?"
id: ACT.S.C08.Rsp
- label: "Does the device implement of EnableActionWithDuration command?"
id: ACT.S.C09.Rsp
- label: "Does the device implement of DisableAction command?"
id: ACT.S.C0a.Rsp
- label: "Does the device implement of DisableActionWithDuration command?"
id: ACT.S.C0b.Rsp
#
# client / manually
#
- label: "Write all supported optional attributes"
id: ACT.C.AO-WRITE
- label: "Write all supported mandatory attribute"
id: ACT.C.AM-WRITE
- label: "Read all supported mandatory attribute"
id: ACT.C.AM-READ
- label: "Read all supported optional attributes"
id: ACT.C.AO-READ
# Binding Cluster Test Plan
- label: "Does the device implement the Binding Cluster as a server?"
id: BIND.S
- label: "Does the device implement the Binding Cluster as a client?"
id: BIND.C
#
# server / attributes
#
- label: "Does the DUT(server) support the Binding attribute?"
id: BIND.S.A0000
# Boolean State Cluster Test Plan
- label: "Does the device implement the Boolean State cluster as a server?"
id: BOOL.S
- label: "Does the device implement the Boolean State cluster as a client?"
id: BOOL.C
#
# server / attributes
#
- label: "Does the device implement the StateValue attribute?"
id: BOOL.S.A0000
#
# server / Events
#
- label: "Does the device implement the StateChange event?"
id: BOOL.S.E00
#
# server / manually
#
- label:
"Can the StateValue attribute be changed by manual operation at the
DUT?"
id: BOOL.S.M.ManuallyControlled
#
# client / manually
#
- label: "Write all supported mandatory attribute"
id: BOOL.C.AM-WRITE
- label: "Write all supported optional attributes"
id: BOOL.C.AO-WRITE
- label: "Read all supported mandatory attribute"
id: BOOL.C.AM-READ
- label: "Read all supported optional attributes"
id: BOOL.C.AO-READ
# Bridged Device Basic Information Test Plan
- label:
"Does the device implement the Bridged Device Basic Information
Cluster as a server?"
id: BRBINFO.S
- label:
"Does the device implement the Bridged Device Basic Information
Cluster as a client?"
id: BRBINFO.C
#
# server / attributes
#
- label: "Does the DUT(server) support the DataModelRevision attribute?"
id: BRBINFO.S.A0000
- label: "Does the DUT(server) support the VendorName attribute?"
id: BRBINFO.S.A0001
- label: "Does the DUT(server) support the VendorID attribute?"
id: BRBINFO.S.A0002
- label: "Does the DUT(server) support the ProductName attribute?"
id: BRBINFO.S.A0003
- label: "Does the DUT(server) support the ProductID attribute?"
id: BRBINFO.S.A0004
- label: "Does the DUT(server) support the NodeLabel attribute?"
id: BRBINFO.S.A0005
- label: "Does the DUT(server) support the Location attribute?"
id: BRBINFO.S.A0006