| /* |
| * |
| * Copyright (c) 2026 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. |
| */ |
| |
| #pragma once |
| |
| #include <pw_unit_test/framework.h> |
| |
| #include <app/clusters/power-source-server/NamedPowerSourceClusters.h> |
| #include <app/server-cluster/testing/ClusterTester.h> |
| #include <app/server-cluster/testing/TestServerClusterContext.h> |
| #include <lib/support/TimerDelegateMock.h> |
| |
| namespace chip::app::Clusters::PowerSource::TestSupport { |
| |
| struct TestBase : public ::testing::Test |
| { |
| static void SetUpTestSuite() |
| { |
| ASSERT_EQ(chip::Platform::MemoryInit(), CHIP_NO_ERROR); |
| ASSERT_EQ(DeviceLayer::PlatformMgr().InitChipStack(), CHIP_NO_ERROR); |
| } |
| |
| static void TearDownTestSuite() |
| { |
| DeviceLayer::PlatformMgr().Shutdown(); |
| chip::Platform::MemoryShutdown(); |
| } |
| |
| template <typename AttrTypeInfo> |
| void ReadAttribute(chip::Testing::ClusterTester & tester) |
| { |
| typename AttrTypeInfo::DecodableType value{}; |
| EXPECT_EQ(tester.ReadAttribute(AttrTypeInfo::GetAttributeId(), value), CHIP_NO_ERROR); |
| } |
| |
| template <typename AttrTypeInfo> |
| void TestStringAttributeReadLength(chip::Testing::ClusterTester & tester) |
| { |
| typename AttrTypeInfo::DecodableType value{}; |
| ASSERT_EQ(tester.ReadAttribute(AttrTypeInfo::GetAttributeId(), value), CHIP_NO_ERROR); |
| EXPECT_LE(value.size(), AttrTypeInfo::MaxLength()); |
| } |
| |
| chip::Testing::TestServerClusterContext testContext; |
| chip::TimerDelegateMock timerDelegate; |
| EndpointId kTestEndpointId = 1; |
| }; |
| |
| } // namespace chip::app::Clusters::PowerSource::TestSupport |