-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Expand file tree
/
Copy pathTC_AVSM_2_7.py
More file actions
720 lines (672 loc) · 35.2 KB
/
TC_AVSM_2_7.py
File metadata and controls
720 lines (672 loc) · 35.2 KB
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
#
# Copyright (c) 2025 Project CHIP Authors
# All rights reserved.
#
# 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.
# See https://github.com/project-chip/connectedhomeip/blob/master/docs/testing/python.md#defining-the-ci-test-arguments
# for details about the block below.
#
# === BEGIN CI TEST ARGUMENTS ===
# test-runner-runs:
# run1:
# app: ${CAMERA_APP}
# app-args: --discriminator 1234 --KVS kvs1 --trace-to json:${TRACE_APP}.json
# script-args: >
# --storage-path admin_storage.json
# --commissioning-method on-network
# --discriminator 1234
# --passcode 20202021
# --PICS src/app/tests/suites/certification/ci-pics-values
# --trace-to json:${TRACE_TEST_JSON}.json
# --trace-to perfetto:${TRACE_TEST_PERFETTO}.perfetto
# --endpoint 1
# factory-reset: true
# quiet: true
# === END CI TEST ARGUMENTS ===
import logging
from mobly import asserts
import matter.clusters as Clusters
from matter.clusters import Globals
from matter.interaction_model import InteractionModelError, Status
from matter.testing.decorators import has_feature, run_if_endpoint_matches
from matter.testing.matter_testing import MatterBaseTest
from matter.testing.runner import TestStep, default_matter_test_main
log = logging.getLogger(__name__)
class TC_AVSM_2_7(MatterBaseTest):
def desc_TC_AVSM_2_7(self) -> str:
return "[TC-AVSM-2.7] Validate Video Stream Allocation functionality with Server as DUT"
def pics_TC_AVSM_2_7(self):
return ["AVSM.S"]
def steps_TC_AVSM_2_7(self) -> list[TestStep]:
return [
TestStep("precondition", "Commissioning, already done", is_commissioning=True),
TestStep(1, "TH reads FeatureMap attribute from CameraAVStreamManagement Cluster on DUT", "Verify VDO is supported."),
TestStep(
2,
"TH reads AllocatedVideoStreams attribute from CameraAVStreamManagement Cluster on DUT",
"Verify the number of allocated video streams in the list is 0.",
),
TestStep(
3,
"TH reads StreamUsagePriorities attribute from CameraAVStreamManagement Cluster on DUT.",
"Store this value in aStreamUsagePriorities.",
),
TestStep(
4,
"TH reads RateDistortionTradeOffPoints attribute from CameraAVStreamManagement Cluster on DUT.",
"Store this value in aRateDistortionTradeOffPoints.",
),
TestStep(
5,
"TH reads MinViewportResolution attribute from CameraAVStreamManagement Cluster on DUT.",
"Store this value in aMinViewportRes.",
),
TestStep(
6,
"TH reads VideoSensorParams attribute from CameraAVStreamManagement Cluster on DUT.",
"Store this value in aVideoSensorParams.",
),
TestStep(
7,
"TH reads MaxEncodedPixelRate attribute from CameraAVStreamManagement Cluster on DUT.",
"Store this value in aMaxEncodedPixelRate.",
),
TestStep(
8,
"If the watermark feature is supported, set aWatermark to True, otherwise set this to Null.",
),
TestStep(
9,
"If the OSD feature is supported, set aOSD to True, otherwise set this to Null.",
),
TestStep(
10,
"TH sets StreamUsage from aStreamUsagePriorities. TH sets VideoCodec, MinResolution, MaxResolution, MinBitRate, MaxBitRate conforming with aRateDistortionTradeOffPoints. TH sets MinFrameRate, MaxFrameRate conforming with aVideoSensorParams. TH sets the KeyFrameInterval = 4000. TH sets WatermarkEnabled to aWatermark, TH also sets OSDEnabled to aOSD. TH sends the VideoStreamAllocate command with these arguments.",
"DUT responds with VideoStreamAllocateResponse command with a valid VideoStreamID. Store this as myStreamID",
),
TestStep(
11,
"TH reads AllocatedVideoStreams attribute from CameraAVStreamManagement Cluster on DUT",
"Verify the number of allocated video streams in the list is 1.",
),
TestStep(
12,
"TH sends the VideoStreamAllocate command with the same arguments from step 10.",
"DUT responds with VideoStreamAllocateResponse command with the same VideoStreamID as step 10.",
),
TestStep(
13,
"TH reads AllocatedVideoStreams attribute from CameraAVStreamManagement Cluster on DUT",
"Verify the number of allocated video streams in the list is 1.",
),
TestStep(
14,
"If the CameraAVSettingsUserLevelManagement cluster is present, with the DPTZ feature flag set the proceed to step 15, otherwise jump to step 17.",
),
TestStep(
15,
"TH reads the `Viewport` attribute from CameraAVStreamManagement Cluster on DUT.",
"Store this value in aViewport.",
),
TestStep(
16,
"TH reads the `DPTZStreams` attribute from CameraAVSettingsUserLevelManagement Cluster on DUT. Verify there is an entry with `VideoStreamID` set to `myStreamID.",
"Verify the `Viewport` for that entry is the same as `myViewport",
),
TestStep(
17,
"TH sends the VideoStreamAllocate command with the same arguments from step 10 except with StreamUsage set to Internal",
"DUT responds with a CONSTRAINT_ERROR status code.",
),
TestStep(
18,
"TH sends the VideoStreamAllocate command with the same arguments from step 10 except StreamUsage set to a value not in aStreamUsagePriorities.",
"DUT responds with a INVALID IN STATE status code.",
),
TestStep(
19,
"TH sends the VideoStreamAllocate command with the same arguments from step 10 except MinFrameRate set to 0(outside of valid range).",
"DUT responds with a CONSTRAINT_ERROR status code.",
),
TestStep(
20,
"TH sends the VideoStreamAllocate command with the same arguments from step 10 except MinFrameRate > MaxFrameRate.",
"DUT responds with a CONSTRAINT_ERROR status code.",
),
TestStep(
21,
"TH sends the VideoStreamAllocate command with the same arguments from step 10 except MinBitRate set to 0(outside of valid range).",
"DUT responds with a CONSTRAINT_ERROR status code.",
),
TestStep(
22,
"TH sends the VideoStreamAllocate command with the same arguments from step 10 except MinBitRate > MaxBitRate.",
"DUT responds with a CONSTRAINT_ERROR status code.",
),
TestStep(
23,
"TH sends the VideoStreamAllocate command with the same arguments from step 10 except KeyFrameInterval > Max value",
"DUT responds with a CONSTRAINT_ERROR status code.",
),
TestStep(
24,
"TH sends the VideoStreamAllocate command with the same arguments from step 10 except VideoCodec is set to 10 (out of range).",
"DUT responds with a CONSTRAINT_ERROR status code.",
),
TestStep(
25,
"TH sends the VideoStreamAllocate command with the same arguments from step 10 except MaxFrameRate set to a value not in aVideoSensorParams.",
"DUT responds with a DYNAMIC_CONSTRAINT_ERROR status code.",
),
TestStep(
26,
"TH reads MaxConcurrentEncoders attribute from CameraAVStreamManagement Cluster on DUT.",
"Store this value in aMaxConcurrentEncoders.",
),
TestStep(
27,
"TH sends (aMaxConcurrentEncoders + 1) number of VideoStreamAllocate commands with different valid arguments for resolution and framerate to make the DUT exhaust its stream allocation.",
"DUT eventually responds with a RESOURCE_EXHAUSTED status code.",
),
]
@run_if_endpoint_matches(
has_feature(Clusters.CameraAvStreamManagement, Clusters.CameraAvStreamManagement.Bitmaps.Feature.kVideo)
)
async def test_TC_AVSM_2_7(self):
endpoint = self.get_endpoint()
cluster = Clusters.CameraAvStreamManagement
attr = Clusters.CameraAvStreamManagement.Attributes
commands = Clusters.CameraAvStreamManagement.Commands
self.step("precondition")
# Commission DUT - already done
self.step(1)
aFeatureMap = await self.read_single_attribute_check_success(endpoint=endpoint, cluster=cluster, attribute=attr.FeatureMap)
log.info(f"Rx'd FeatureMap: {aFeatureMap}")
vdoSupport = aFeatureMap & cluster.Bitmaps.Feature.kVideo
asserts.assert_equal(vdoSupport, cluster.Bitmaps.Feature.kVideo, "Video Feature is not supported.")
self.step(2)
aAllocatedVideoStreams = await self.read_single_attribute_check_success(
endpoint=endpoint, cluster=cluster, attribute=attr.AllocatedVideoStreams
)
log.info(f"Rx'd AllocatedVideoStreams: {aAllocatedVideoStreams}")
asserts.assert_equal(len(aAllocatedVideoStreams), 0, "The number of allocated video streams in the list is not 0")
self.step(3)
aStreamUsagePriorities = await self.read_single_attribute_check_success(
endpoint=endpoint, cluster=cluster, attribute=attr.StreamUsagePriorities
)
log.info(f"Rx'd StreamUsagePriorities: {aStreamUsagePriorities}")
self.step(4)
aRateDistortionTradeOffPoints = await self.read_single_attribute_check_success(
endpoint=endpoint, cluster=cluster, attribute=attr.RateDistortionTradeOffPoints
)
log.info(f"Rx'd RateDistortionTradeOffPoints: {aRateDistortionTradeOffPoints}")
self.step(5)
aMinViewportRes = await self.read_single_attribute_check_success(
endpoint=endpoint, cluster=cluster, attribute=attr.MinViewportResolution
)
log.info(f"Rx'd MinViewportResolution: {aMinViewportRes}")
self.step(6)
aVideoSensorParams = await self.read_single_attribute_check_success(
endpoint=endpoint, cluster=cluster, attribute=attr.VideoSensorParams
)
log.info(f"Rx'd VideoSensorParams: {aVideoSensorParams}")
self.step(7)
aMaxEncodedPixelRate = await self.read_single_attribute_check_success(
endpoint=endpoint, cluster=cluster, attribute=attr.MaxEncodedPixelRate
)
log.info(f"Rx'd MaxEncodedPixelRate: {aMaxEncodedPixelRate}")
# Check for watermark and OSD features
self.step(8)
watermark = True if (aFeatureMap & cluster.Bitmaps.Feature.kWatermark) != 0 else None
self.step(9)
osd = True if (aFeatureMap & cluster.Bitmaps.Feature.kOnScreenDisplay) != 0 else None
self.step(10)
myStreamID = 0
try:
asserts.assert_greater(len(aStreamUsagePriorities), 0, "StreamUsagePriorities is empty")
asserts.assert_greater(len(aRateDistortionTradeOffPoints), 0, "RateDistortionTradeOffPoints is empty")
videoStreamAllocateCmd = commands.VideoStreamAllocate(
streamUsage=aStreamUsagePriorities[0],
videoCodec=aRateDistortionTradeOffPoints[0].codec,
minFrameRate=min(self.matter_test_config.min_frame_rate, aVideoSensorParams.maxFPS),
maxFrameRate=aVideoSensorParams.maxFPS,
minResolution=aMinViewportRes,
maxResolution=cluster.Structs.VideoResolutionStruct(
width=aVideoSensorParams.sensorWidth, height=aVideoSensorParams.sensorHeight
),
minBitRate=aRateDistortionTradeOffPoints[0].minBitRate,
maxBitRate=aRateDistortionTradeOffPoints[0].minBitRate,
keyFrameInterval=4000,
watermarkEnabled=watermark,
OSDEnabled=osd,
)
videoStreamAllocateResponse = await self.send_single_cmd(endpoint=endpoint, cmd=videoStreamAllocateCmd)
log.info(f"Rx'd VideoStreamAllocateResponse: {videoStreamAllocateResponse}")
asserts.assert_is_not_none(
videoStreamAllocateResponse.videoStreamID, "VideoStreamAllocateResponse does not contain StreamID"
)
myStreamID = videoStreamAllocateResponse.videoStreamID
except InteractionModelError as e:
asserts.assert_equal(e.status, Status.Success, "Unexpected error returned")
pass
self.step(11)
aAllocatedVideoStreams = await self.read_single_attribute_check_success(
endpoint=endpoint, cluster=cluster, attribute=attr.AllocatedVideoStreams
)
log.info(f"Rx'd AllocatedVideoStreams: {aAllocatedVideoStreams}")
asserts.assert_equal(len(aAllocatedVideoStreams), 1, "The number of allocated video streams in the list is not 1")
self.step(12)
try:
videoStreamAllocateCmd = commands.VideoStreamAllocate(
streamUsage=aStreamUsagePriorities[0],
videoCodec=aRateDistortionTradeOffPoints[0].codec,
minFrameRate=min(self.matter_test_config.min_frame_rate, aVideoSensorParams.maxFPS),
maxFrameRate=aVideoSensorParams.maxFPS,
minResolution=aMinViewportRes,
maxResolution=cluster.Structs.VideoResolutionStruct(
width=aVideoSensorParams.sensorWidth, height=aVideoSensorParams.sensorHeight
),
minBitRate=aRateDistortionTradeOffPoints[0].minBitRate,
maxBitRate=aRateDistortionTradeOffPoints[0].minBitRate,
keyFrameInterval=4000,
watermarkEnabled=watermark,
OSDEnabled=osd,
)
videoStreamAllocateResponse = await self.send_single_cmd(endpoint=endpoint, cmd=videoStreamAllocateCmd)
log.info(f"Rx'd VideoStreamAllocateResponse: {videoStreamAllocateResponse}")
asserts.assert_equal(
videoStreamAllocateResponse.videoStreamID, myStreamID, "VideoStreamAllocateResponse does not reuse the StreamID"
)
except InteractionModelError as e:
asserts.assert_equal(e.status, Status.Success, "Unexpected error returned")
pass
self.step(13)
aAllocatedVideoStreams = await self.read_single_attribute_check_success(
endpoint=endpoint, cluster=cluster, attribute=attr.AllocatedVideoStreams
)
log.info(f"Rx'd AllocatedVideoStreams: {aAllocatedVideoStreams}")
asserts.assert_equal(len(aAllocatedVideoStreams), 1, "The number of allocated video streams in the list is not 1")
# Viewport check
descriptor = await self.default_controller.ReadAttribute(self.dut_node_id, [(endpoint, Clusters.Descriptor)])
server_list = descriptor[endpoint][Clusters.Descriptor][Clusters.Descriptor.Attributes.ServerList]
has_cameraavsettings = Clusters.CameraAvSettingsUserLevelManagement.id in server_list
self.step(14)
if has_cameraavsettings:
aFeatureMap = await self.read_single_attribute_check_success(
endpoint=endpoint,
cluster=Clusters.CameraAvSettingsUserLevelManagement,
attribute=Clusters.CameraAvSettingsUserLevelManagement.Attributes.FeatureMap,
)
dptzSupport = (aFeatureMap & Clusters.CameraAvSettingsUserLevelManagement.Bitmaps.Feature.kDigitalPTZ) != 0
if dptzSupport:
self.step(15)
aViewport = await self.read_single_attribute_check_success(
endpoint=endpoint, cluster=cluster, attribute=attr.Viewport
)
self.step(16)
aDptzStreams = await self.read_single_attribute_check_success(
endpoint=endpoint,
cluster=Clusters.CameraAvSettingsUserLevelManagement,
attribute=Clusters.CameraAvSettingsUserLevelManagement.Attributes.DPTZStreams,
)
dptzWritten = False
for dptzStream in aDptzStreams:
if dptzStream.videoStreamID == myStreamID:
if dptzStream.viewport == aViewport:
dptzWritten = True
asserts.assert_true(
dptzWritten, "DPTZStreams in CameraAvSettingsUserLevelManagement was not updated with the allocated stream id"
)
else:
self.skip_step(15)
self.skip_step(16)
else:
self.skip_step(15)
self.skip_step(16)
self.step(17)
try:
outOfConstraintStreamUsage = Globals.Enums.StreamUsageEnum.kInternal
videoStreamAllocateCmd = commands.VideoStreamAllocate(
streamUsage=outOfConstraintStreamUsage,
videoCodec=aRateDistortionTradeOffPoints[0].codec,
minFrameRate=min(self.matter_test_config.min_frame_rate, aVideoSensorParams.maxFPS),
maxFrameRate=aVideoSensorParams.maxFPS,
minResolution=aMinViewportRes,
maxResolution=cluster.Structs.VideoResolutionStruct(
width=aVideoSensorParams.sensorWidth, height=aVideoSensorParams.sensorHeight
),
minBitRate=aRateDistortionTradeOffPoints[0].minBitRate,
maxBitRate=aRateDistortionTradeOffPoints[0].minBitRate,
keyFrameInterval=4000,
watermarkEnabled=watermark,
OSDEnabled=osd,
)
await self.send_single_cmd(endpoint=endpoint, cmd=videoStreamAllocateCmd)
asserts.fail(
"Unexpected success when expecting CONSTRAINT_ERROR due to StreamUsage set to Internal",
)
except InteractionModelError as e:
asserts.assert_equal(
e.status,
Status.ConstraintError,
"Unexpected error returned when expecting CONSTRAINT_ERROR due to StreamUsage set to Internal",
)
pass
self.step(18)
try:
notSupportedStreamUsage = next(
(e for e in Globals.Enums.StreamUsageEnum if e not in aStreamUsagePriorities and e != Globals.Enums.StreamUsageEnum.kInternal),
Globals.Enums.StreamUsageEnum.kUnknownEnumValue,
)
videoStreamAllocateCmd = commands.VideoStreamAllocate(
streamUsage=notSupportedStreamUsage,
videoCodec=aRateDistortionTradeOffPoints[0].codec,
minFrameRate=min(self.matter_test_config.min_frame_rate, aVideoSensorParams.maxFPS),
maxFrameRate=aVideoSensorParams.maxFPS,
minResolution=aMinViewportRes,
maxResolution=cluster.Structs.VideoResolutionStruct(
width=aVideoSensorParams.sensorWidth, height=aVideoSensorParams.sensorHeight
),
minBitRate=aRateDistortionTradeOffPoints[0].minBitRate,
maxBitRate=aRateDistortionTradeOffPoints[0].minBitRate,
keyFrameInterval=4000,
watermarkEnabled=watermark,
OSDEnabled=osd,
)
await self.send_single_cmd(endpoint=endpoint, cmd=videoStreamAllocateCmd)
asserts.fail(
"Unexpected success when expecting INVALID_IN_STATE due to StreamUsage set to a value not in aStreamUsagePriorities",
)
except InteractionModelError as e:
asserts.assert_equal(
e.status,
Status.InvalidInState,
"Unexpected error returned when expecting InvalidInState due to StreamUsage set to a value not in aStreamUsagePriorities",
)
pass
self.step(19)
try:
videoStreamAllocateCmd = commands.VideoStreamAllocate(
streamUsage=aStreamUsagePriorities[0],
videoCodec=aRateDistortionTradeOffPoints[0].codec,
minFrameRate=0,
maxFrameRate=aVideoSensorParams.maxFPS,
minResolution=aMinViewportRes,
maxResolution=cluster.Structs.VideoResolutionStruct(
width=aVideoSensorParams.sensorWidth, height=aVideoSensorParams.sensorHeight
),
minBitRate=aRateDistortionTradeOffPoints[0].minBitRate,
maxBitRate=aRateDistortionTradeOffPoints[0].minBitRate,
keyFrameInterval=4000,
watermarkEnabled=watermark,
OSDEnabled=osd,
)
await self.send_single_cmd(endpoint=endpoint, cmd=videoStreamAllocateCmd)
asserts.fail("Unexpected success when expecting CONSTRAINT_ERROR due to MinFrameRate set to 0(outside of valid range)")
except InteractionModelError as e:
asserts.assert_equal(
e.status,
Status.ConstraintError,
"Unexpected error returned when expecting CONSTRAINT_ERROR due to MinFrameRate set to 0(outside of valid range)",
)
pass
self.step(20)
try:
videoStreamAllocateCmd = commands.VideoStreamAllocate(
streamUsage=aStreamUsagePriorities[0],
videoCodec=aRateDistortionTradeOffPoints[0].codec,
minFrameRate=16,
maxFrameRate=15,
minResolution=aMinViewportRes,
maxResolution=cluster.Structs.VideoResolutionStruct(
width=aVideoSensorParams.sensorWidth, height=aVideoSensorParams.sensorHeight
),
minBitRate=aRateDistortionTradeOffPoints[0].minBitRate,
maxBitRate=aRateDistortionTradeOffPoints[0].minBitRate,
keyFrameInterval=4000,
watermarkEnabled=watermark,
OSDEnabled=osd,
)
await self.send_single_cmd(endpoint=endpoint, cmd=videoStreamAllocateCmd)
asserts.fail("Unexpected success when expecting CONSTRAINT_ERROR due to MinFrameRate > MaxFrameRate")
except InteractionModelError as e:
asserts.assert_equal(
e.status,
Status.ConstraintError,
"Unexpected error returned when expecting CONSTRAINT_ERROR due to MinFrameRate > MaxFrameRate",
)
pass
self.step(21)
try:
videoStreamAllocateCmd = commands.VideoStreamAllocate(
streamUsage=aStreamUsagePriorities[0],
videoCodec=aRateDistortionTradeOffPoints[0].codec,
minFrameRate=min(self.matter_test_config.min_frame_rate, aVideoSensorParams.maxFPS),
maxFrameRate=aVideoSensorParams.maxFPS,
minResolution=aMinViewportRes,
maxResolution=cluster.Structs.VideoResolutionStruct(
width=aVideoSensorParams.sensorWidth, height=aVideoSensorParams.sensorHeight
),
minBitRate=0,
maxBitRate=aRateDistortionTradeOffPoints[0].minBitRate,
keyFrameInterval=4000,
watermarkEnabled=watermark,
OSDEnabled=osd,
)
await self.send_single_cmd(endpoint=endpoint, cmd=videoStreamAllocateCmd)
asserts.fail("Unexpected success when expecting CONSTRAINT_ERROR due to MinBitRate set to 0(outside of valid range)")
except InteractionModelError as e:
asserts.assert_equal(
e.status,
Status.ConstraintError,
"Unexpected error returned when expecting CONSTRAINT_ERROR due to MinBitRate set to 0(outside of valid range)",
)
pass
self.step(22)
try:
videoStreamAllocateCmd = commands.VideoStreamAllocate(
streamUsage=aStreamUsagePriorities[0],
videoCodec=aRateDistortionTradeOffPoints[0].codec,
minFrameRate=min(self.matter_test_config.min_frame_rate, aVideoSensorParams.maxFPS),
maxFrameRate=aVideoSensorParams.maxFPS,
minResolution=aMinViewportRes,
maxResolution=cluster.Structs.VideoResolutionStruct(
width=aVideoSensorParams.sensorWidth, height=aVideoSensorParams.sensorHeight
),
minBitRate=aRateDistortionTradeOffPoints[0].minBitRate + 1,
maxBitRate=aRateDistortionTradeOffPoints[0].minBitRate,
keyFrameInterval=4000,
watermarkEnabled=watermark,
OSDEnabled=osd,
)
await self.send_single_cmd(endpoint=endpoint, cmd=videoStreamAllocateCmd)
asserts.fail("Unexpected success when expecting CONSTRAINT_ERROR due to MinBitRate > MaxBitRate")
except InteractionModelError as e:
asserts.assert_equal(
e.status,
Status.ConstraintError,
"Unexpected error returned when expecting CONSTRAINT_ERROR due to MinBitRate > MaxBitRate",
)
pass
self.step(23)
try:
videoStreamAllocateCmd = commands.VideoStreamAllocate(
streamUsage=aStreamUsagePriorities[0],
videoCodec=aRateDistortionTradeOffPoints[0].codec,
minFrameRate=min(self.matter_test_config.min_frame_rate, aVideoSensorParams.maxFPS),
maxFrameRate=aVideoSensorParams.maxFPS,
minResolution=aMinViewportRes,
maxResolution=cluster.Structs.VideoResolutionStruct(
width=aVideoSensorParams.sensorWidth, height=aVideoSensorParams.sensorHeight
),
minBitRate=aRateDistortionTradeOffPoints[0].minBitRate,
maxBitRate=aRateDistortionTradeOffPoints[0].minBitRate,
keyFrameInterval=65500 + 1,
watermarkEnabled=watermark,
OSDEnabled=osd,
)
await self.send_single_cmd(endpoint=endpoint, cmd=videoStreamAllocateCmd)
asserts.fail("Unexpected success when expecting CONSTRAINT_ERROR due to MinKeyFrameInterval > MaxKeyFrameInterval")
except InteractionModelError as e:
asserts.assert_equal(
e.status,
Status.ConstraintError,
"Unexpected error returned when expecting CONSTRAINT_ERROR due to MinKeyFrameInterval > MaxKeyFrameInterval",
)
pass
self.step(24)
try:
videoStreamAllocateCmd = commands.VideoStreamAllocate(
streamUsage=aStreamUsagePriorities[0],
videoCodec=10,
minFrameRate=min(self.matter_test_config.min_frame_rate, aVideoSensorParams.maxFPS),
maxFrameRate=aVideoSensorParams.maxFPS,
minResolution=aMinViewportRes,
maxResolution=cluster.Structs.VideoResolutionStruct(
width=aVideoSensorParams.sensorWidth, height=aVideoSensorParams.sensorHeight
),
minBitRate=aRateDistortionTradeOffPoints[0].minBitRate,
maxBitRate=aRateDistortionTradeOffPoints[0].minBitRate,
keyFrameInterval=4000,
watermarkEnabled=watermark,
OSDEnabled=osd,
)
await self.send_single_cmd(endpoint=endpoint, cmd=videoStreamAllocateCmd)
asserts.fail("Unexpected success when expecting CONSTRAINT_ERROR due to invalid codec")
except InteractionModelError as e:
asserts.assert_equal(
e.status,
Status.ConstraintError,
"Unexpected error returned when expecting CONSTRAINT_ERROR due to invalid codec",
)
pass
self.step(25)
try:
videoStreamAllocateCmd = commands.VideoStreamAllocate(
streamUsage=aStreamUsagePriorities[0],
videoCodec=aRateDistortionTradeOffPoints[0].codec,
minFrameRate=min(self.matter_test_config.min_frame_rate, aVideoSensorParams.maxFPS),
maxFrameRate=aVideoSensorParams.maxFPS + 10,
minResolution=aMinViewportRes,
maxResolution=cluster.Structs.VideoResolutionStruct(
width=aVideoSensorParams.sensorWidth, height=aVideoSensorParams.sensorHeight
),
minBitRate=aRateDistortionTradeOffPoints[0].minBitRate,
maxBitRate=aRateDistortionTradeOffPoints[0].minBitRate,
keyFrameInterval=4000,
watermarkEnabled=watermark,
OSDEnabled=osd,
)
await self.send_single_cmd(endpoint=endpoint, cmd=videoStreamAllocateCmd)
asserts.fail("Unexpected success when expecting DYNAMIC_CONSTRAINT_ERROR due to unsupported MaxFrameRate")
except InteractionModelError as e:
asserts.assert_equal(
e.status,
Status.DynamicConstraintError,
"Unexpected error returned when expecting DYNAMIC_CONSTRAINT_ERROR due to unsupported MaxFrameRate",
)
pass
self.step(26)
aMaxConcurrentEncoders = await self.read_single_attribute_check_success(
endpoint=endpoint, cluster=cluster, attribute=attr.MaxConcurrentEncoders
)
log.info(f"Rx'd MaxConcurrentEncoders: {aMaxConcurrentEncoders}")
self.step(27)
log.info(f"De-allocate previously allocated stream in step 10 with ID: {myStreamID}")
try:
await self.send_single_cmd(endpoint=endpoint, cmd=commands.VideoStreamDeallocate(videoStreamID=(myStreamID)))
except InteractionModelError as e:
asserts.assert_equal(e.status, Status.Success, "Unexpected error returned")
pass
# Check if video stream has already been allocated
aAllocatedVideoStreams = await self.read_single_attribute_check_success(
endpoint=endpoint, cluster=cluster, attribute=attr.AllocatedVideoStreams
)
if len(aAllocatedVideoStreams) > 0:
asserts.fail("Allocated video streams not cleared")
# start initial frame rate range low and gradually increase
minFrameRateConfig = 15
maxFrameRateConfig = 30
# Try and allocate up to maxConcurrentEncoders. If all these streams are
# successfully allocated, the next one should hit a resource exhausted
# error.
# Note: One of these allocations may also hit a resource-exhausted error
# if an existing candidate stream cannot be re-used because of range
# parameters not intersecting.
for i in range(aMaxConcurrentEncoders):
try:
asserts.assert_greater(len(aStreamUsagePriorities), 0, "StreamUsagePriorities is empty")
asserts.assert_greater(len(aRateDistortionTradeOffPoints), 0, "RateDistortionTradeOffPoints is empty")
videoStreamAllocateCmd = commands.VideoStreamAllocate(
streamUsage=aStreamUsagePriorities[0],
videoCodec=aRateDistortionTradeOffPoints[0].codec,
minFrameRate=minFrameRateConfig,
maxFrameRate=maxFrameRateConfig,
minResolution=aMinViewportRes,
maxResolution=cluster.Structs.VideoResolutionStruct(
width=aVideoSensorParams.sensorWidth, height=aVideoSensorParams.sensorHeight
),
minBitRate=aRateDistortionTradeOffPoints[0].minBitRate,
maxBitRate=aRateDistortionTradeOffPoints[0].minBitRate,
keyFrameInterval=4000,
watermarkEnabled=watermark,
OSDEnabled=osd,
)
videoStreamAllocateResponse = await self.send_single_cmd(endpoint=endpoint, cmd=videoStreamAllocateCmd)
log.info(f"Rx'd VideoStreamAllocateResponse: {videoStreamAllocateResponse}")
asserts.assert_is_not_none(
videoStreamAllocateResponse.videoStreamID, "VideoStreamAllocateResponse does not contain StreamID"
)
myStreamID = videoStreamAllocateResponse.videoStreamID
except InteractionModelError as e:
asserts.assert_in(e.status, [Status.Success, Status.ResourceExhausted], "Unexpected error returned")
pass
minFrameRateConfig = maxFrameRateConfig
maxFrameRateConfig = maxFrameRateConfig + 20
# Try again to elicit a ResourceExhausted error.
try:
videoStreamAllocateCmd = commands.VideoStreamAllocate(
streamUsage=aStreamUsagePriorities[0],
videoCodec=aRateDistortionTradeOffPoints[0].codec,
minFrameRate=minFrameRateConfig, # An acceptable value for min frame rate
maxFrameRate=maxFrameRateConfig,
minResolution=aMinViewportRes,
maxResolution=cluster.Structs.VideoResolutionStruct(
width=aVideoSensorParams.sensorWidth, height=aVideoSensorParams.sensorHeight
),
minBitRate=aRateDistortionTradeOffPoints[0].minBitRate,
maxBitRate=aRateDistortionTradeOffPoints[0].minBitRate,
keyFrameInterval=4000,
watermarkEnabled=watermark,
OSDEnabled=osd,
)
await self.send_single_cmd(endpoint=endpoint, cmd=videoStreamAllocateCmd)
asserts.fail("Unexpected success when expecting RESOURCE_EXHAUSTED error due to exceeding MaxEncodedPixelRate")
except InteractionModelError as e:
asserts.assert_equal(
e.status,
Status.ResourceExhausted,
"Unexpected error returned when expecting RESOURCE_EXHAUSTED error due to exceeding MaxEncodedPixelRate",
)
pass
# Clear all allocated streams
aAllocatedVideoStreams = await self.read_single_attribute_check_success(
endpoint=endpoint, cluster=cluster, attribute=attr.AllocatedVideoStreams
)
for stream in aAllocatedVideoStreams:
try:
await self.send_single_cmd(endpoint=endpoint, cmd=commands.VideoStreamDeallocate(videoStreamID=(stream.videoStreamID)))
except InteractionModelError as e:
asserts.assert_equal(e.status, Status.Success, "Unexpected error returned")
if __name__ == "__main__":
default_matter_test_main()