Skip to content

Commit 1ed1dca

Browse files
authored
Add unit test for EcosystemInformation cluster server implementation (project-chip#35953)
1 parent 8dc3d39 commit 1ed1dca

File tree

4 files changed

+414
-3
lines changed

4 files changed

+414
-3
lines changed

src/app/clusters/ecosystem-information-server/ecosystem-information-server.cpp

+6-3
Original file line numberDiff line numberDiff line change
@@ -215,9 +215,11 @@ EcosystemLocationStruct::Builder::SetLocationDescriptorLastEdit(uint64_t aLocati
215215
std::unique_ptr<EcosystemLocationStruct> EcosystemLocationStruct::Builder::Build()
216216
{
217217
VerifyOrReturnValue(!mIsAlreadyBuilt, nullptr, ChipLogError(Zcl, "Build() already called"));
218-
VerifyOrReturnValue(!mLocationDescriptor.mLocationName.empty(), nullptr, ChipLogError(Zcl, "Must Provided Location Name"));
219-
VerifyOrReturnValue(mLocationDescriptor.mLocationName.size() <= kLocationDescriptorNameMaxSize, nullptr,
220-
ChipLogError(Zcl, "Must Location Name must be less than 64 bytes"));
218+
VerifyOrReturnValue(!mLocationDescriptor.mLocationName.empty(), nullptr, ChipLogError(Zcl, "Must Provide Location Name"));
219+
static_assert(kLocationDescriptorNameMaxSize <= std::numeric_limits<uint16_t>::max());
220+
VerifyOrReturnValue(
221+
mLocationDescriptor.mLocationName.size() <= kLocationDescriptorNameMaxSize, nullptr,
222+
ChipLogError(Zcl, "Location Name must be less than %u bytes", static_cast<uint16_t>(kLocationDescriptorNameMaxSize)));
221223

222224
// std::make_unique does not have access to private constructor we workaround with using new
223225
std::unique_ptr<EcosystemLocationStruct> ret{ new EcosystemLocationStruct(std::move(mLocationDescriptor),
@@ -271,6 +273,7 @@ CHIP_ERROR EcosystemInformationServer::AddLocationInfo(EndpointId aEndpoint, con
271273
VerifyOrReturnError(aLocation, CHIP_ERROR_INVALID_ARGUMENT);
272274
VerifyOrReturnError((aEndpoint != kRootEndpointId && aEndpoint != kInvalidEndpointId), CHIP_ERROR_INVALID_ARGUMENT);
273275
VerifyOrReturnError(!aLocationId.empty(), CHIP_ERROR_INVALID_ARGUMENT);
276+
VerifyOrReturnError(aLocationId.size() <= kUniqueLocationIdMaxSize, CHIP_ERROR_INVALID_ARGUMENT);
274277
VerifyOrReturnError(aFabricIndex >= kMinValidFabricIndex, CHIP_ERROR_INVALID_ARGUMENT);
275278
VerifyOrReturnError(aFabricIndex <= kMaxValidFabricIndex, CHIP_ERROR_INVALID_ARGUMENT);
276279

src/app/clusters/ecosystem-information-server/ecosystem-information-server.h

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
#include <vector>
2727

2828
#include <app-common/zap-generated/cluster-objects.h>
29+
#include <app-common/zap-generated/ids/Clusters.h>
2930

3031
#include <app/AttributeAccessInterface.h>
3132

src/app/tests/BUILD.gn

+15
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,18 @@ source_set("thread-border-router-management-test-srcs") {
154154
]
155155
}
156156

157+
source_set("ecosystem-information-test-srcs") {
158+
sources = [
159+
"${chip_root}/src/app/clusters/ecosystem-information-server/ecosystem-information-server.cpp",
160+
"${chip_root}/src/app/clusters/ecosystem-information-server/ecosystem-information-server.h",
161+
]
162+
public_deps = [
163+
"${chip_root}/src/app:interaction-model",
164+
"${chip_root}/src/app/common:cluster-objects",
165+
"${chip_root}/src/lib/core",
166+
]
167+
}
168+
157169
source_set("app-test-stubs") {
158170
sources = [
159171
"test-ember-api.cpp",
@@ -201,6 +213,7 @@ chip_test_suite("tests") {
201213
"TestDataModelSerialization.cpp",
202214
"TestDefaultOTARequestorStorage.cpp",
203215
"TestDefaultThreadNetworkDirectoryStorage.cpp",
216+
"TestEcosystemInformationCluster.cpp",
204217
"TestEventLoggingNoUTCTime.cpp",
205218
"TestEventOverflow.cpp",
206219
"TestEventPathParams.cpp",
@@ -228,6 +241,7 @@ chip_test_suite("tests") {
228241
public_deps = [
229242
":app-test-stubs",
230243
":binding-test-srcs",
244+
":ecosystem-information-test-srcs",
231245
":operational-state-test-srcs",
232246
":ota-requestor-test-srcs",
233247
":power-cluster-test-srcs",
@@ -236,6 +250,7 @@ chip_test_suite("tests") {
236250
"${chip_root}/src/app",
237251
"${chip_root}/src/app/codegen-data-model-provider:instance-header",
238252
"${chip_root}/src/app/common:cluster-objects",
253+
"${chip_root}/src/app/data-model-provider/tests:encode-decode",
239254
"${chip_root}/src/app/icd/client:manager",
240255
"${chip_root}/src/app/tests:helpers",
241256
"${chip_root}/src/app/util/mock:mock_codegen_data_model",

0 commit comments

Comments
 (0)