Skip to content

Commit b289813

Browse files
finish PR clean up
1 parent 4214049 commit b289813

File tree

5 files changed

+25
-10
lines changed

5 files changed

+25
-10
lines changed

src/app/ReadHandler.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -821,7 +821,7 @@ void ReadHandler::PersistSubscription()
821821
auto * subscriptionResumptionStorage = mManagementCallback.GetInteractionModelEngine()->GetSubscriptionResumptionStorage();
822822
VerifyOrReturn(subscriptionResumptionStorage != nullptr);
823823

824-
// TODO(#31873): We need to store the CAT information to enable better interaction with ICDs
824+
// TODO(#31873): We need to store the CAT information to enable better interactions with ICDs
825825
SubscriptionResumptionStorage::SubscriptionInfo subscriptionInfo = { .mNodeId = GetInitiatorNodeId(),
826826
.mFabricIndex = GetAccessingFabricIndex(),
827827
.mSubscriptionId = mSubscriptionId,

src/app/icd/server/BUILD.gn

+1-3
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,6 @@ source_set("manager") {
7575
":configuration-data",
7676
":notifier",
7777
":observer",
78-
79-
# TODO : can this be in checkin?
80-
"${chip_root}/src/app:subscription-manager",
8178
"${chip_root}/src/credentials:credentials",
8279
"${chip_root}/src/messaging",
8380
]
@@ -87,6 +84,7 @@ source_set("manager") {
8784
":monitoring-table",
8885
":sender",
8986
"${chip_root}/src/app:app_config",
87+
"${chip_root}/src/app:subscription-manager",
9088
]
9189
}
9290
}

src/app/icd/server/ICDManager.h

-3
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,6 @@
3838
#include <platform/internal/CHIPDeviceLayerInternal.h>
3939
#include <system/SystemClock.h>
4040

41-
#define CHIP_CONFIG_ENABLE_ICD_CIP 1
42-
#define CHIP_CONFIG_ENABLE_ICD_LIT 1
43-
4441
namespace chip {
4542
namespace Crypto {
4643
using SymmetricKeystore = SessionKeystore;

src/app/server/Server.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -526,11 +526,11 @@ bool Server::CheckInWouldBeSentAtBootVerifier(FabricIndex aFabricIndex, NodeId s
526526
#if CHIP_CONFIG_PERSIST_SUBSCRIPTIONS
527527
// At least one registration has a persisted entry. Do not send Check-In message.
528528
// This is to cover the use-case where the subscription resumption feature is used with the Check-In message.
529-
VerifyOrReturnValue(chip::app::InteractionModelEngine::GetInstance()->SubjectHasPersistedSubscription(aFabricIndex, subjectID),
530-
true);
529+
VerifyOrReturnValue(!chip::app::InteractionModelEngine::GetInstance()->SubjectHasPersistedSubscription(aFabricIndex, subjectID),
530+
false);
531531
#endif // CHIP_CONFIG_PERSIST_SUBSCRIPTIONS
532532

533-
return false;
533+
return true;
534534
}
535535
#endif // CHIP_CONFIG_ENABLE_ICD_CIP
536536

src/app/tests/TestInteractionModelEngine.cpp

+20
Original file line numberDiff line numberDiff line change
@@ -259,6 +259,9 @@ void TestInteractionModelEngine::TestRemoveDuplicateConcreteAttribute(nlTestSuit
259259
InteractionModelEngine::GetInstance()->ReleaseAttributePathList(attributePathParamsList);
260260
}
261261

262+
/**
263+
* @brief Test verifies the SubjectHasActiveSubscription with a single subscription with a single entry
264+
*/
262265
void TestInteractionModelEngine::TestSubjectHasActiveSubscriptionSingleSubOneEntry(nlTestSuite * apSuite, void * apContext)
263266
{
264267
TestContext & ctx = *static_cast<TestContext *>(apContext);
@@ -300,6 +303,10 @@ void TestInteractionModelEngine::TestSubjectHasActiveSubscriptionSingleSubOneEnt
300303
NL_TEST_ASSERT(apSuite, engine->SubjectHasActiveSubscription(bobFabricIndex, bobNodeId) == false);
301304
}
302305

306+
/**
307+
* @brief Test verifies that the SubjectHasActiveSubscription will continue iterating till it fines at least one valid active
308+
* subscription
309+
*/
303310
void TestInteractionModelEngine::TestSubjectHasActiveSubscriptionSingleSubMultipleEntries(nlTestSuite * apSuite, void * apContext)
304311
{
305312
TestContext & ctx = *static_cast<TestContext *>(apContext);
@@ -354,6 +361,9 @@ void TestInteractionModelEngine::TestSubjectHasActiveSubscriptionSingleSubMultip
354361
engine->GetReadHandlerPool().ReleaseAll();
355362
}
356363

364+
/**
365+
* @brief Test validates that the SubjectHasActiveSubscription can support multiple subscriptions from different clients
366+
*/
357367
void TestInteractionModelEngine::TestSubjectHasActiveSubscriptionMultipleSubsSingleEntry(nlTestSuite * apSuite, void * apContext)
358368
{
359369
TestContext & ctx = *static_cast<TestContext *>(apContext);
@@ -427,6 +437,10 @@ void TestInteractionModelEngine::TestSubjectHasActiveSubscriptionMultipleSubsSin
427437
NL_TEST_ASSERT(apSuite, engine->SubjectHasActiveSubscription(aliceFabricIndex, aliceNodeId) == false);
428438
}
429439

440+
/**
441+
* @brief Test validates that the SubjectHasActiveSubscription can find the active subscription even if there are multiple
442+
* subscriptions for each client
443+
*/
430444
void TestInteractionModelEngine::TestSubjectHasActiveSubscriptionMultipleSubsMultipleEntries(nlTestSuite * apSuite,
431445
void * apContext)
432446
{
@@ -516,6 +530,9 @@ void TestInteractionModelEngine::TestSubjectHasActiveSubscriptionMultipleSubsMul
516530
NL_TEST_ASSERT(apSuite, engine->SubjectHasActiveSubscription(aliceFabricIndex, aliceNodeId) == false);
517531
}
518532

533+
/**
534+
* @brief Verifies that SubjectHasActiveSubscription support CATs as a subject-id
535+
*/
519536
void TestInteractionModelEngine::TestSubjectHasActiveSubscriptionSubWithCAT(nlTestSuite * apSuite, void * apContext)
520537
{
521538
TestContext & ctx = *reinterpret_cast<TestContext *>(apContext);
@@ -569,6 +586,9 @@ void TestInteractionModelEngine::TestSubjectHasActiveSubscriptionSubWithCAT(nlTe
569586

570587
#if CHIP_CONFIG_PERSIST_SUBSCRIPTIONS
571588

589+
/**
590+
* @brief Test verifies the SubjectHasPersistedSubscription with single and multiple persisted subscriptions.
591+
*/
572592
void TestInteractionModelEngine::TestSubjectHasPersistedSubscription(nlTestSuite * apSuite, void * apContext)
573593
{
574594
TestContext & ctx = *static_cast<TestContext *>(apContext);

0 commit comments

Comments
 (0)