@@ -69,6 +69,7 @@ class TestInteractionModelEngine : public chip::Test::AppContext
69
69
void TestSubscriptionResumptionTimer ();
70
70
void TestDecrementNumSubscriptionsToResume ();
71
71
void TestFabricHasAtLeastOneActiveSubscription ();
72
+ void TestFabricHasAtLeastOneActiveSubscriptionWithMixedStates ();
72
73
static int GetAttributePathListLength (SingleLinkedListNode<AttributePathParams> * apattributePathParamsList);
73
74
};
74
75
@@ -376,11 +377,6 @@ TEST_F_FROM_FIXTURE(TestInteractionModelEngine, TestSubjectHasActiveSubscription
376
377
engine->GetReadHandlerPool ().CreateObject (nullCallback, exchangeCtx1, ReadHandler::InteractionType::Subscribe,
377
378
reporting::GetDefaultReportScheduler (), CodegenDataModelProviderInstance ());
378
379
379
- // Create and setup readHandler 2
380
- ReadHandler * readHandler2 =
381
- engine->GetReadHandlerPool ().CreateObject (nullCallback, exchangeCtx2, ReadHandler::InteractionType::Subscribe,
382
- reporting::GetDefaultReportScheduler (), CodegenDataModelProviderInstance ());
383
-
384
380
// Verify that Bob still doesn't have an active subscription
385
381
EXPECT_FALSE (engine->SubjectHasActiveSubscription (bobFabricIndex, bobNodeId));
386
382
@@ -393,6 +389,11 @@ TEST_F_FROM_FIXTURE(TestInteractionModelEngine, TestSubjectHasActiveSubscription
393
389
// Verify that Alice still doesn't have an active subscription
394
390
EXPECT_FALSE (engine->SubjectHasActiveSubscription (aliceFabricIndex, aliceNodeId));
395
391
392
+ // Create and setup readHandler 2
393
+ ReadHandler * readHandler2 =
394
+ engine->GetReadHandlerPool ().CreateObject (nullCallback, exchangeCtx2, ReadHandler::InteractionType::Subscribe,
395
+ reporting::GetDefaultReportScheduler (), CodegenDataModelProviderInstance ());
396
+
396
397
// Set readHandler2 to active
397
398
readHandler2->SetStateFlag (ReadHandler::ReadHandlerFlags::ActiveSubscription, true );
398
399
@@ -769,5 +770,66 @@ TEST_F_FROM_FIXTURE(TestInteractionModelEngine, TestFabricHasAtLeastOneActiveSub
769
770
EXPECT_FALSE (engine->FabricHasAtLeastOneActiveSubscription (fabricIndex2));
770
771
}
771
772
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
+
772
834
} // namespace app
773
835
} // namespace chip
0 commit comments