-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
TC-TIMESYNC-events test automations (#27917)
* TC-TIMESYNC-events test automations Adds automation for all the event check test plans for timesync NOTE: test plan updates for these test cases added in https://github.com/CHIP-Specifications/chip-test-plans/pull/3051 * Remove unused includes * Restyled by isort --------- Co-authored-by: Restyled.io <[email protected]>
- Loading branch information
Showing
6 changed files
with
556 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,126 @@ | ||
# | ||
# Copyright (c) 2023 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. | ||
# | ||
|
||
import queue | ||
import time | ||
import typing | ||
from datetime import datetime, timedelta, timezone | ||
|
||
import chip.clusters as Clusters | ||
from chip.clusters.Types import NullValue | ||
from chip.interaction_model import InteractionModelError | ||
from chip.tlv import uint | ||
from matter_testing_support import (MatterBaseTest, SimpleEventCallback, async_test_body, default_matter_test_main, | ||
utc_time_in_matter_epoch) | ||
from mobly import asserts | ||
|
||
|
||
def get_wait_seconds_from_set_time(set_time_matter_us: int, wait_seconds: int): | ||
seconds_passed = int((utc_time_in_matter_epoch() - set_time_matter_us)/1000000) | ||
return wait_seconds - seconds_passed | ||
|
||
|
||
class TC_TIMESYNC_2_10(MatterBaseTest): | ||
async def send_set_time_zone_cmd(self, tz: typing.List[Clusters.Objects.TimeSynchronization.Structs.TimeZoneStruct]) -> Clusters.Objects.TimeSynchronization.Commands.SetTimeZoneResponse: | ||
ret = await self.send_single_cmd(cmd=Clusters.Objects.TimeSynchronization.Commands.SetTimeZone(timeZone=tz), endpoint=self.endpoint) | ||
return ret | ||
|
||
async def send_set_dst_cmd(self, dst: typing.List[Clusters.Objects.TimeSynchronization.Structs.DSTOffsetStruct]) -> None: | ||
await self.send_single_cmd(cmd=Clusters.Objects.TimeSynchronization.Commands.SetDSTOffset(DSTOffset=dst)) | ||
|
||
async def send_set_utc_cmd(self, utc: uint) -> None: | ||
await self.send_single_cmd(cmd=Clusters.Objects.TimeSynchronization.Commands.SetUTCTime(UTCTime=utc, granularity=Clusters.Objects.TimeSynchronization.Enums.GranularityEnum.kMillisecondsGranularity)) | ||
|
||
@async_test_body | ||
async def test_TC_TIMESYNC_2_10(self): | ||
|
||
self.endpoint = 0 | ||
|
||
self.print_step(0, "Commissioning, already done") | ||
time_cluster = Clusters.Objects.TimeSynchronization | ||
tz_struct = time_cluster.Structs.TimeZoneStruct | ||
dst_struct = time_cluster.Structs.DSTOffsetStruct | ||
|
||
self.print_step(1, "Send SetUTCCommand") | ||
# It doesn't actually matter if this succeeds. The DUT is free to reject this command and use its own time. | ||
# If the DUT fails to get the time completely, all other tests will fail. | ||
try: | ||
await self.send_set_utc_cmd(utc_time_in_matter_epoch()) | ||
except InteractionModelError: | ||
pass | ||
|
||
self.print_step(2, "Send SetTimeZone command") | ||
tz = [tz_struct(offset=7200, validAt=0)] | ||
ret = await self.send_set_time_zone_cmd(tz) | ||
asserts.assert_true(ret.DSTOffsetRequired, "DSTOffsetRequired not set to true") | ||
|
||
self.print_step(3, "Send SetDSTOffset command") | ||
dst = [dst_struct(offset=3600, validStarting=0, validUntil=NullValue)] | ||
await self.send_set_dst_cmd(dst) | ||
|
||
self.print_step(4, "Subscribe to DSTTableEmpy event") | ||
event = time_cluster.Events.DSTTableEmpty | ||
q = queue.Queue() | ||
cb = SimpleEventCallback("DSTTableEmpty", event.cluster_id, event.event_id, q) | ||
urgent = 1 | ||
subscription = await self.default_controller.ReadEvent(nodeid=self.dut_node_id, events=[(self.endpoint, event, urgent)], reportInterval=[1, 3]) | ||
subscription.SetEventUpdateCallback(callback=cb) | ||
|
||
self.print_step(5, "Send SetTimeZone command") | ||
tz = [tz_struct(offset=3600, validAt=0)] | ||
ret = await self.send_set_time_zone_cmd(tz) | ||
asserts.assert_true(ret.DSTOffsetRequired, "DSTOffsetRequired not set to true") | ||
|
||
self.print_step(6, "Wait for DSTTableEmpty event") | ||
try: | ||
q.get(block=True, timeout=5) | ||
except queue.Empty: | ||
asserts.fail("Did not receive DSTTableEmpy event") | ||
|
||
self.print_step(7, "Set DSTOffset to expire in 10 seconds") | ||
th_utc = utc_time_in_matter_epoch(datetime.now(tz=timezone.utc)) | ||
expiry = utc_time_in_matter_epoch(datetime.now(tz=timezone.utc) + timedelta(seconds=10)) | ||
dst = [dst_struct(offset=3600, validStarting=0, validUntil=expiry)] | ||
await self.send_set_dst_cmd(dst) | ||
|
||
self.print_step(8, "Wait until th_utc + 15s") | ||
time.sleep(get_wait_seconds_from_set_time(th_utc, 15)) | ||
|
||
self.print_step(9, "Read LocalTime from the DUT") | ||
await self.read_single_attribute_check_success(cluster=Clusters.TimeSynchronization, | ||
attribute=Clusters.TimeSynchronization.Attributes.LocalTime) | ||
|
||
self.print_step(10, "Wait for DSTTableEmpty event") | ||
timeout = get_wait_seconds_from_set_time(th_utc, 20) | ||
try: | ||
q.get(block=True, timeout=timeout) | ||
except queue.Empty: | ||
asserts.fail("Did not receive DSTTableEmpy event") | ||
pass | ||
|
||
self.print_step(11, "Set time zone back to 0") | ||
tz = [tz_struct(offset=0, validAt=0)] | ||
ret = await self.send_set_time_zone_cmd(tz) | ||
asserts.assert_true(ret.DSTOffsetRequired, "DSTOffsetRequired not set to true") | ||
|
||
self.print_step(12, "Set DST back to 0") | ||
dst = [dst_struct(offset=0, validStarting=0, validUntil=NullValue)] | ||
await self.send_set_dst_cmd(dst) | ||
|
||
|
||
if __name__ == "__main__": | ||
default_matter_test_main() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,155 @@ | ||
# | ||
# Copyright (c) 2023 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. | ||
# | ||
|
||
import queue | ||
import time | ||
import typing | ||
from datetime import datetime, timedelta, timezone | ||
|
||
import chip.clusters as Clusters | ||
from chip.clusters.Types import NullValue | ||
from chip.interaction_model import InteractionModelError | ||
from chip.tlv import uint | ||
from matter_testing_support import (MatterBaseTest, SimpleEventCallback, async_test_body, default_matter_test_main, | ||
get_wait_seconds_from_set_time, type_matches, utc_time_in_matter_epoch) | ||
from mobly import asserts | ||
|
||
|
||
class TC_TIMESYNC_2_11(MatterBaseTest): | ||
async def send_set_time_zone_cmd(self, tz: typing.List[Clusters.Objects.TimeSynchronization.Structs.TimeZoneStruct]) -> Clusters.Objects.TimeSynchronization.Commands.SetTimeZoneResponse: | ||
ret = await self.send_single_cmd(cmd=Clusters.Objects.TimeSynchronization.Commands.SetTimeZone(timeZone=tz), endpoint=self.endpoint) | ||
return ret | ||
|
||
async def send_set_dst_cmd(self, dst: typing.List[Clusters.Objects.TimeSynchronization.Structs.DSTOffsetStruct]) -> None: | ||
await self.send_single_cmd(cmd=Clusters.Objects.TimeSynchronization.Commands.SetDSTOffset(DSTOffset=dst)) | ||
|
||
async def send_set_utc_cmd(self, utc: uint) -> None: | ||
await self.send_single_cmd(cmd=Clusters.Objects.TimeSynchronization.Commands.SetUTCTime(UTCTime=utc, granularity=Clusters.Objects.TimeSynchronization.Enums.GranularityEnum.kMillisecondsGranularity)) | ||
|
||
def wait_for_dst_status(self, th_utc, wait_s, expect_active): | ||
timeout = get_wait_seconds_from_set_time(th_utc, wait_s) | ||
try: | ||
ret = self.q.get(block=True, timeout=timeout) | ||
asserts.assert_true(type_matches(received_value=ret.Data, | ||
desired_type=Clusters.TimeSynchronization.Events.DSTStatus), "Unexpected event type returned") | ||
asserts.assert_equal(ret.Data.DSTOffsetActive, expect_active, "Unexpected value for DSTOffsetActive") | ||
except queue.Empty: | ||
asserts.fail("Did not receive DSTStatus event") | ||
pass | ||
|
||
@async_test_body | ||
async def test_TC_TIMESYNC_2_11(self): | ||
|
||
self.endpoint = 0 | ||
|
||
self.print_step(0, "Commissioning, already done") | ||
time_cluster = Clusters.Objects.TimeSynchronization | ||
tz_struct = time_cluster.Structs.TimeZoneStruct | ||
dst_struct = time_cluster.Structs.DSTOffsetStruct | ||
|
||
self.print_step(1, "Send SetUTCCommand") | ||
# It doesn't actually matter if this succeeds. The DUT is free to reject this command and use its own time. | ||
# If the DUT fails to get the time completely, all other tests will fail. | ||
try: | ||
await self.send_set_utc_cmd(utc_time_in_matter_epoch()) | ||
except InteractionModelError: | ||
pass | ||
|
||
self.print_step(2, "Send SetTimeZone command") | ||
tz = [tz_struct(offset=7200, validAt=0)] | ||
ret = await self.send_set_time_zone_cmd(tz) | ||
asserts.assert_true(ret.DSTOffsetRequired, "DSTOffsetRequired not set to true") | ||
|
||
self.print_step(3, "Subscribe to DSTStatus event") | ||
event = time_cluster.Events.DSTStatus | ||
self.q = queue.Queue() | ||
cb = SimpleEventCallback("DSTStatus", event.cluster_id, event.event_id, self.q) | ||
urgent = 1 | ||
subscription = await self.default_controller.ReadEvent(nodeid=self.dut_node_id, events=[(self.endpoint, event, urgent)], reportInterval=[1, 3]) | ||
subscription.SetEventUpdateCallback(callback=cb) | ||
|
||
self.print_step(4, "TH reads the DSTOffsetListMaxSize") | ||
dst_list_size = await self.read_single_attribute_check_success(cluster=Clusters.TimeSynchronization, attribute=Clusters.TimeSynchronization.Attributes.DSTOffsetListMaxSize) | ||
asserts.assert_greater_equal(dst_list_size, 1, "Invalid dst list size") | ||
|
||
self.print_step(5, "TH sets two DST items if dst_list_size > 1") | ||
th_utc = utc_time_in_matter_epoch(datetime.now(tz=timezone.utc)) | ||
expiry_first = utc_time_in_matter_epoch(datetime.now(tz=timezone.utc) + timedelta(seconds=10)) | ||
dst_first = dst_struct(offset=3600, validStarting=0, validUntil=expiry_first) | ||
if dst_list_size > 1: | ||
start_second = utc_time_in_matter_epoch(datetime.now(tz=timezone.utc) + timedelta(seconds=25)) | ||
expiry_second = utc_time_in_matter_epoch(datetime.now(tz=timezone.utc) + timedelta(seconds=40)) | ||
dst_second = dst_struct(offset=3600, validStarting=start_second, validUntil=expiry_second) | ||
dst = [dst_first, dst_second] | ||
await self.send_set_dst_cmd(dst) | ||
|
||
self.print_step(6, "TH sets 1 DST item if dst_list_size == 1") | ||
if dst_list_size == 1: | ||
dst = [dst_first] | ||
await self.send_set_dst_cmd(dst) | ||
|
||
self.print_step(7, "TH reads LocalTime") | ||
await self.read_single_attribute_check_success(cluster=Clusters.TimeSynchronization, attribute=Clusters.TimeSynchronization.Attributes.LocalTime) | ||
|
||
self.print_step(8, "TH waits for DSTStatus event until th_utc + 5s") | ||
self.wait_for_dst_status(th_utc, 5, True) | ||
|
||
self.print_step(9, "TH waits until th_utc + 15s") | ||
time.sleep(get_wait_seconds_from_set_time(th_utc, 15)) | ||
|
||
self.print_step(10, "TH reads LocalTime") | ||
await self.read_single_attribute_check_success(cluster=Clusters.TimeSynchronization, attribute=Clusters.TimeSynchronization.Attributes.LocalTime) | ||
|
||
self.print_step(11, "TH waits for DSTStatus event until th_utc + 20s") | ||
self.wait_for_dst_status(th_utc, 20, False) | ||
|
||
self.print_step(12, "If dst_list_size > 1, TH waits until th_utc + 30s") | ||
if dst_list_size > 1: | ||
time.sleep(get_wait_seconds_from_set_time(th_utc, 30)) | ||
|
||
self.print_step(13, "If dst_list_size > 1, TH reads LocalTime") | ||
if dst_list_size > 1: | ||
await self.read_single_attribute_check_success(cluster=Clusters.TimeSynchronization, attribute=Clusters.TimeSynchronization.Attributes.LocalTime) | ||
|
||
self.print_step(14, "If dst_list_size > 1, TH waits for a DSTStatus event until th_utc + 35s") | ||
if dst_list_size > 1: | ||
self.wait_for_dst_status(th_utc, 35, True) | ||
|
||
self.print_step(15, "If dst_list_size > 1, TH waits until th_utc + 45s") | ||
if dst_list_size > 1: | ||
time.sleep(get_wait_seconds_from_set_time(th_utc, 45)) | ||
|
||
self.print_step(16, "If dst_list_size > 1, TH reads the LocalTime") | ||
if dst_list_size > 1: | ||
await self.read_single_attribute_check_success(cluster=Clusters.TimeSynchronization, attribute=Clusters.TimeSynchronization.Attributes.LocalTime) | ||
|
||
self.print_step(17, "If dst_list_size > 1, TH waits for a DSTStatus event until th_utc + 50s") | ||
if dst_list_size > 1: | ||
self.wait_for_dst_status(th_utc, 50, False) | ||
|
||
self.print_step(18, "Set time zone back to 0") | ||
tz = [tz_struct(offset=0, validAt=0)] | ||
ret = await self.send_set_time_zone_cmd(tz) | ||
asserts.assert_true(ret.DSTOffsetRequired, "DSTOffsetRequired not set to true") | ||
|
||
self.print_step(19, "Set DST back to 0") | ||
dst = [dst_struct(offset=0, validStarting=0, validUntil=NullValue)] | ||
await self.send_set_dst_cmd(dst) | ||
|
||
|
||
if __name__ == "__main__": | ||
default_matter_test_main() |
Oops, something went wrong.