Skip to content

Commit cebc8af

Browse files
Single fabric unit tests
1 parent d2ebe29 commit cebc8af

File tree

1 file changed

+67
-5
lines changed

1 file changed

+67
-5
lines changed

src/app/tests/TestInteractionModelEngine.cpp

+67-5
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ class TestInteractionModelEngine : public chip::Test::AppContext
6969
void TestSubscriptionResumptionTimer();
7070
void TestDecrementNumSubscriptionsToResume();
7171
void TestFabricHasAtLeastOneActiveSubscription();
72+
void TestFabricHasAtLeastOneActiveSubscriptionWithMixedStates();
7273
static int GetAttributePathListLength(SingleLinkedListNode<AttributePathParams> * apattributePathParamsList);
7374
};
7475

@@ -376,11 +377,6 @@ TEST_F_FROM_FIXTURE(TestInteractionModelEngine, TestSubjectHasActiveSubscription
376377
engine->GetReadHandlerPool().CreateObject(nullCallback, exchangeCtx1, ReadHandler::InteractionType::Subscribe,
377378
reporting::GetDefaultReportScheduler(), CodegenDataModelProviderInstance());
378379

379-
// Create and setup readHandler 2
380-
ReadHandler * readHandler2 =
381-
engine->GetReadHandlerPool().CreateObject(nullCallback, exchangeCtx2, ReadHandler::InteractionType::Subscribe,
382-
reporting::GetDefaultReportScheduler(), CodegenDataModelProviderInstance());
383-
384380
// Verify that Bob still doesn't have an active subscription
385381
EXPECT_FALSE(engine->SubjectHasActiveSubscription(bobFabricIndex, bobNodeId));
386382

@@ -393,6 +389,11 @@ TEST_F_FROM_FIXTURE(TestInteractionModelEngine, TestSubjectHasActiveSubscription
393389
// Verify that Alice still doesn't have an active subscription
394390
EXPECT_FALSE(engine->SubjectHasActiveSubscription(aliceFabricIndex, aliceNodeId));
395391

392+
// Create and setup readHandler 2
393+
ReadHandler * readHandler2 =
394+
engine->GetReadHandlerPool().CreateObject(nullCallback, exchangeCtx2, ReadHandler::InteractionType::Subscribe,
395+
reporting::GetDefaultReportScheduler(), CodegenDataModelProviderInstance());
396+
396397
// Set readHandler2 to active
397398
readHandler2->SetStateFlag(ReadHandler::ReadHandlerFlags::ActiveSubscription, true);
398399

@@ -769,5 +770,66 @@ TEST_F_FROM_FIXTURE(TestInteractionModelEngine, TestFabricHasAtLeastOneActiveSub
769770
EXPECT_FALSE(engine->FabricHasAtLeastOneActiveSubscription(fabricIndex2));
770771
}
771772

773+
TEST_F_FROM_FIXTURE(TestInteractionModelEngine, TestFabricHasAtLeastOneActiveSubscriptionWithMixedStates)
774+
{
775+
NullReadHandlerCallback nullCallback;
776+
InteractionModelEngine * engine = InteractionModelEngine::GetInstance();
777+
778+
FabricIndex fabricIndex = 1;
779+
780+
// Create ExchangeContexts
781+
Messaging::ExchangeContext * exchangeCtx1 = NewExchangeToBob(nullptr, false);
782+
ASSERT_TRUE(exchangeCtx1);
783+
784+
Messaging::ExchangeContext * exchangeCtx2 = NewExchangeToBob(nullptr, false);
785+
ASSERT_TRUE(exchangeCtx2);
786+
787+
// InteractionModelEngine init
788+
EXPECT_EQ(CHIP_NO_ERROR, engine->Init(&GetExchangeManager(), &GetFabricTable(), reporting::GetDefaultReportScheduler()));
789+
790+
// Verify that the fabric has no active subscriptions
791+
EXPECT_FALSE(engine->FabricHasAtLeastOneActiveSubscription(fabricIndex));
792+
793+
// Create and setup readHandler 1
794+
ReadHandler * readHandler1 =
795+
engine->GetReadHandlerPool().CreateObject(nullCallback, exchangeCtx1, ReadHandler::InteractionType::Subscribe,
796+
reporting::GetDefaultReportScheduler(), CodegenDataModelProviderInstance());
797+
798+
// Verify that the fabric still doesn't have an active subscription
799+
EXPECT_FALSE(engine->FabricHasAtLeastOneActiveSubscription(fabricIndex));
800+
801+
// Set readHandler1 to active
802+
readHandler1->SetStateFlag(ReadHandler::ReadHandlerFlags::ActiveSubscription, true);
803+
804+
// Verify that the fabric has an active subscription
805+
EXPECT_TRUE(engine->FabricHasAtLeastOneActiveSubscription(fabricIndex));
806+
807+
// Create and setup readHandler 2
808+
ReadHandler * readHandler2 =
809+
engine->GetReadHandlerPool().CreateObject(nullCallback, exchangeCtx2, ReadHandler::InteractionType::Subscribe,
810+
reporting::GetDefaultReportScheduler(), CodegenDataModelProviderInstance());
811+
812+
// Verify that the fabric still has an active subscription
813+
EXPECT_TRUE(engine->FabricHasAtLeastOneActiveSubscription(fabricIndex));
814+
815+
// Set readHandler2 to inactive
816+
readHandler2->SetStateFlag(ReadHandler::ReadHandlerFlags::ActiveSubscription, false);
817+
818+
// Verify that the fabric still has an active subscription
819+
EXPECT_TRUE(engine->FabricHasAtLeastOneActiveSubscription(fabricIndex));
820+
821+
// Set readHandler1 to inactive
822+
readHandler1->SetStateFlag(ReadHandler::ReadHandlerFlags::ActiveSubscription, false);
823+
824+
// Verify that the fabric doesn't have an active subscription
825+
EXPECT_FALSE(engine->FabricHasAtLeastOneActiveSubscription(fabricIndex));
826+
827+
// Clean up read handlers
828+
engine->GetReadHandlerPool().ReleaseAll();
829+
830+
// Verify that the fabric has no active subscriptions
831+
EXPECT_FALSE(engine->FabricHasAtLeastOneActiveSubscription(fabricIndex));
832+
}
833+
772834
} // namespace app
773835
} // namespace chip

0 commit comments

Comments
 (0)