@@ -18,9 +18,41 @@ config:
18
18
nodeId : 0x12344321
19
19
cluster : " Group Key Management"
20
20
endpoint : 0
21
+ payload :
22
+ type : char_string
23
+ defaultValue : " MT:-24J0AFN00KA0648G00" # This value needs to be generated automatically
21
24
22
25
tests :
23
- - label : " Wait for the commissioned device to be retrieved"
26
+ - label : " Wait for the commissioned device to be retrieved for alpha"
27
+ cluster : " DelayCommands"
28
+ command : " WaitForCommissionee"
29
+ arguments :
30
+ values :
31
+ - name : " nodeId"
32
+ value : nodeId
33
+
34
+ - label : " Open Commissioning Window from alpha"
35
+ cluster : " Administrator Commissioning"
36
+ command : " OpenBasicCommissioningWindow"
37
+ timedInteractionTimeoutMs : 10000
38
+ arguments :
39
+ values :
40
+ - name : " CommissioningTimeout"
41
+ value : 180
42
+
43
+ - label : " Commission from beta"
44
+ identity : " beta"
45
+ cluster : " CommissionerCommands"
46
+ command : " PairWithCode"
47
+ arguments :
48
+ values :
49
+ - name : " nodeId"
50
+ value : nodeId
51
+ - name : " payload"
52
+ value : payload
53
+
54
+ - label : " Wait for the commissioned device to be retrieved for beta"
55
+ identity : " beta"
24
56
cluster : " DelayCommands"
25
57
command : " WaitForCommissionee"
26
58
arguments :
@@ -76,6 +108,26 @@ tests:
76
108
EpochStartTime2 : 2110002,
77
109
}
78
110
111
+ - label : " KeySet Write 3"
112
+ identity : " beta"
113
+ command : " KeySetWrite"
114
+ arguments :
115
+ values :
116
+ - name : " GroupKeySet"
117
+ value :
118
+ {
119
+ GroupKeySetID : 0x01a3,
120
+ GroupKeySecurityPolicy : 1,
121
+ EpochKey0 :
122
+ " \x00\x01\x02\x03\x04\x05\x06\x07\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f " ,
123
+ EpochStartTime0 : 2110000,
124
+ EpochKey1 : " \x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f " ,
125
+ EpochStartTime1 : 2110001,
126
+ EpochKey2 :
127
+ " \x20\x21\x22\x23\x24\x25\x26\x27\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f " ,
128
+ EpochStartTime2 : 2110002,
129
+ }
130
+
79
131
- label : " KeySet Read"
80
132
command : " KeySetRead"
81
133
arguments :
@@ -129,10 +181,35 @@ tests:
129
181
response :
130
182
error : FAILURE
131
183
132
- - label : " Write Group Keys"
184
+ - label : " Write Group Keys on alpha"
185
+ command : " writeAttribute"
186
+ attribute : " GroupKeyMap"
187
+ arguments :
188
+ value :
189
+ [
190
+ { FabricIndex: 1, GroupId: 0x0101, GroupKeySetID: 0x01a1 },
191
+ { FabricIndex: 1, GroupId: 0x0102, GroupKeySetID: 0x01a2 },
192
+ { FabricIndex: 1, GroupId: 0x0103, GroupKeySetID: 0x01a1 },
193
+ { FabricIndex: 1, GroupId: 0x0104, GroupKeySetID: 0x01a2 },
194
+ ]
195
+
196
+ - label : " Write Group Keys on beta"
197
+ identity : " beta"
133
198
command : " writeAttribute"
134
199
attribute : " GroupKeyMap"
135
200
arguments :
201
+ value : [
202
+ # Note: the FabricIndex here does not matter; it's not sent on the wire.
203
+ { FabricIndex: 1, GroupId: 0x0102, GroupKeySetID: 0x01a3 },
204
+ { FabricIndex: 1, GroupId: 0x0103, GroupKeySetID: 0x01a3 },
205
+ { FabricIndex: 1, GroupId: 0x0104, GroupKeySetID: 0x01a3 },
206
+ { FabricIndex: 1, GroupId: 0x0105, GroupKeySetID: 0x01a3 },
207
+ ]
208
+
209
+ - label : " Read Group Keys on alpha"
210
+ command : " readAttribute"
211
+ attribute : " GroupKeyMap"
212
+ response :
136
213
value :
137
214
[
138
215
{ FabricIndex: 1, GroupId: 0x0101, GroupKeySetID: 0x01a1 },
@@ -141,16 +218,52 @@ tests:
141
218
{ FabricIndex: 1, GroupId: 0x0104, GroupKeySetID: 0x01a2 },
142
219
]
143
220
144
- - label : " Read Group Keys"
221
+ - label : " Read Group Keys on alpha without fabric filtering"
222
+ command : " readAttribute"
223
+ attribute : " GroupKeyMap"
224
+ fabricFiltered : false
225
+ response :
226
+ value :
227
+ [
228
+ { FabricIndex: 1, GroupId: 0x0101, GroupKeySetID: 0x01a1 },
229
+ { FabricIndex: 1, GroupId: 0x0102, GroupKeySetID: 0x01a2 },
230
+ { FabricIndex: 1, GroupId: 0x0103, GroupKeySetID: 0x01a1 },
231
+ { FabricIndex: 1, GroupId: 0x0104, GroupKeySetID: 0x01a2 },
232
+ { FabricIndex: 2, GroupId: 0x0102, GroupKeySetID: 0x01a3 },
233
+ { FabricIndex: 2, GroupId: 0x0103, GroupKeySetID: 0x01a3 },
234
+ { FabricIndex: 2, GroupId: 0x0104, GroupKeySetID: 0x01a3 },
235
+ { FabricIndex: 2, GroupId: 0x0105, GroupKeySetID: 0x01a3 },
236
+ ]
237
+
238
+ - label : " Read Group Keys on beta"
239
+ identity : " beta"
240
+ command : " readAttribute"
241
+ attribute : " GroupKeyMap"
242
+ response :
243
+ value :
244
+ [
245
+ { FabricIndex: 2, GroupId: 0x0102, GroupKeySetID: 0x01a3 },
246
+ { FabricIndex: 2, GroupId: 0x0103, GroupKeySetID: 0x01a3 },
247
+ { FabricIndex: 2, GroupId: 0x0104, GroupKeySetID: 0x01a3 },
248
+ { FabricIndex: 2, GroupId: 0x0105, GroupKeySetID: 0x01a3 },
249
+ ]
250
+
251
+ - label : " Read Group Keys on beta without fabric filtering"
252
+ identity : " beta"
145
253
command : " readAttribute"
146
254
attribute : " GroupKeyMap"
255
+ fabricFiltered : false
147
256
response :
148
257
value :
149
258
[
150
259
{ FabricIndex: 1, GroupId: 0x0101, GroupKeySetID: 0x01a1 },
151
260
{ FabricIndex: 1, GroupId: 0x0102, GroupKeySetID: 0x01a2 },
152
261
{ FabricIndex: 1, GroupId: 0x0103, GroupKeySetID: 0x01a1 },
153
262
{ FabricIndex: 1, GroupId: 0x0104, GroupKeySetID: 0x01a2 },
263
+ { FabricIndex: 2, GroupId: 0x0102, GroupKeySetID: 0x01a3 },
264
+ { FabricIndex: 2, GroupId: 0x0103, GroupKeySetID: 0x01a3 },
265
+ { FabricIndex: 2, GroupId: 0x0104, GroupKeySetID: 0x01a3 },
266
+ { FabricIndex: 2, GroupId: 0x0105, GroupKeySetID: 0x01a3 },
154
267
]
155
268
156
269
- label : " Add Group 1"
@@ -221,9 +334,115 @@ tests:
221
334
- name : " GroupID"
222
335
value : 0x0104
223
336
224
- - label : " Read GroupTable"
337
+ - label : " Add Group 5"
338
+ identity : " beta"
339
+ cluster : " Groups"
340
+ endpoint : 1
341
+ command : " AddGroup"
342
+ arguments :
343
+ values :
344
+ - name : " GroupID"
345
+ value : 0x0105
346
+ - name : " GroupName"
347
+ value : " Group #5"
348
+ response :
349
+ values :
350
+ - name : " Status"
351
+ value : 0
352
+ - name : " GroupID"
353
+ value : 0x0105
354
+
355
+ - label : " Read GroupTable from alpha"
356
+ command : " readAttribute"
357
+ attribute : " GroupTable"
358
+ response :
359
+ value :
360
+ [
361
+ {
362
+ FabricIndex : 1,
363
+ GroupId : 0x0101,
364
+ Endpoints : [1],
365
+ GroupName : " Group #1" ,
366
+ },
367
+ {
368
+ FabricIndex : 1,
369
+ GroupId : 0x0102,
370
+ Endpoints : [1],
371
+ GroupName : " Group #2" ,
372
+ },
373
+ {
374
+ FabricIndex : 1,
375
+ GroupId : 0x0103,
376
+ Endpoints : [1],
377
+ GroupName : " Group #3" ,
378
+ },
379
+ {
380
+ FabricIndex : 1,
381
+ GroupId : 0x0104,
382
+ Endpoints : [1],
383
+ GroupName : " Group #4" ,
384
+ },
385
+ ]
386
+
387
+ - label : " Read GroupTable from alpha without fabric filtering"
388
+ command : " readAttribute"
389
+ attribute : " GroupTable"
390
+ fabricFiltered : false
391
+ response :
392
+ value :
393
+ [
394
+ {
395
+ FabricIndex : 1,
396
+ GroupId : 0x0101,
397
+ Endpoints : [1],
398
+ GroupName : " Group #1" ,
399
+ },
400
+ {
401
+ FabricIndex : 1,
402
+ GroupId : 0x0102,
403
+ Endpoints : [1],
404
+ GroupName : " Group #2" ,
405
+ },
406
+ {
407
+ FabricIndex : 1,
408
+ GroupId : 0x0103,
409
+ Endpoints : [1],
410
+ GroupName : " Group #3" ,
411
+ },
412
+ {
413
+ FabricIndex : 1,
414
+ GroupId : 0x0104,
415
+ Endpoints : [1],
416
+ GroupName : " Group #4" ,
417
+ },
418
+ {
419
+ FabricIndex : 2,
420
+ GroupId : 0x0105,
421
+ Endpoints : [1],
422
+ GroupName : " Group #5" ,
423
+ },
424
+ ]
425
+
426
+ - label : " Read GroupTable from beta"
427
+ identity : " beta"
225
428
command : " readAttribute"
226
429
attribute : " GroupTable"
430
+ response :
431
+ value :
432
+ [
433
+ {
434
+ FabricIndex : 2,
435
+ GroupId : 0x0105,
436
+ Endpoints : [1],
437
+ GroupName : " Group #5" ,
438
+ },
439
+ ]
440
+
441
+ - label : " Read GroupTable from beta without fabric filtering"
442
+ identity : " beta"
443
+ command : " readAttribute"
444
+ attribute : " GroupTable"
445
+ fabricFiltered : false
227
446
response :
228
447
value :
229
448
[
@@ -251,6 +470,12 @@ tests:
251
470
Endpoints : [1],
252
471
GroupName : " Group #4" ,
253
472
},
473
+ {
474
+ FabricIndex : 2,
475
+ GroupId : 0x0105,
476
+ Endpoints : [1],
477
+ GroupName : " Group #5" ,
478
+ },
254
479
]
255
480
256
481
- label : " KeySet Remove 1"
0 commit comments