17
17
*/
18
18
#include < app/EventManagement.h>
19
19
#include < app/SubscriptionsInfoProvider.h>
20
+ #include < app/TestEventTriggerDelegate.h>
20
21
#include < app/icd/server/ICDConfigurationData.h>
21
22
#include < app/icd/server/ICDManager.h>
22
23
#include < app/icd/server/ICDNotifier.h>
@@ -53,6 +54,8 @@ constexpr NodeId kClientNodeId12 = 0x100002;
53
54
constexpr NodeId kClientNodeId21 = 0x200001 ;
54
55
constexpr NodeId kClientNodeId22 = 0x200002 ;
55
56
57
+ const uint8_t kTestKey [16 ] = { 0 , 1 , 2 , 3 , 4 , 5 , 6 , 7 , 8 , 9 , 10 , 11 , 12 , 13 , 14 , 15 };
58
+
56
59
constexpr uint8_t kKeyBuffer1a [] = {
57
60
0x10 , 0x11 , 0x12 , 0x13 , 0x14 , 0x15 , 0x16 , 0x17 , 0x18 , 0x19 , 0x1a , 0x1b , 0x1c , 0x1d , 0x1e , 0x1f
58
61
};
@@ -91,6 +94,22 @@ class TestSubscriptionsInfoProvider : public SubscriptionsInfoProvider
91
94
bool mHasPersistedSubscription = false ;
92
95
};
93
96
97
+ class TestEventDelegate : public TestEventTriggerDelegate
98
+ {
99
+ public:
100
+ TestEventDelegate () { mEnableKey = ByteSpan{ kTestKey }; };
101
+
102
+ explicit TestEventDelegate (const ByteSpan & enableKey) : mEnableKey(enableKey) {}
103
+
104
+ bool DoesEnableKeyMatch (const ByteSpan & enableKey) const override
105
+ {
106
+ return !mEnableKey .empty () && mEnableKey .data_equal (enableKey);
107
+ }
108
+
109
+ private:
110
+ ByteSpan mEnableKey ;
111
+ };
112
+
94
113
class TestContext : public chip ::Test::AppContext
95
114
{
96
115
public:
@@ -115,16 +134,18 @@ class TestContext : public chip::Test::AppContext
115
134
// Performs setup for each individual test in the test suite
116
135
CHIP_ERROR SetUp () override
117
136
{
137
+
118
138
ReturnErrorOnFailure (chip::Test::AppContext::SetUp ());
119
- mICDManager .Init (&testStorage, &GetFabricTable (), &mKeystore , &GetExchangeManager (), &mSubInfoProvider );
139
+ mICDManager .Init (&testStorage, &GetFabricTable (), &mKeystore , &GetExchangeManager (), &mSubInfoProvider ,
140
+ &mTestEventDelagate );
120
141
mICDManager .RegisterObserver (&mICDStateObserver );
121
142
return CHIP_NO_ERROR;
122
143
}
123
144
124
145
// Performs teardown for each individual test in the test suite
125
146
void TearDown () override
126
147
{
127
- mICDManager .Shutdown ();
148
+ mICDManager .Shutdown (& mTestEventDelagate );
128
149
chip::Test::AppContext::TearDown ();
129
150
}
130
151
@@ -134,6 +155,7 @@ class TestContext : public chip::Test::AppContext
134
155
TestSubscriptionsInfoProvider mSubInfoProvider ;
135
156
TestPersistentStorageDelegate testStorage;
136
157
TestICDStateObserver mICDStateObserver ;
158
+ TestEventDelegate mTestEventDelagate ;
137
159
138
160
private:
139
161
System::Clock::ClockBase * mRealClock ;
@@ -514,9 +536,9 @@ class TestICDManager
514
536
uint32_t counter = ICDConfigurationData::GetInstance ().GetICDCounter ().GetValue ();
515
537
516
538
// Shut down and reinit ICDManager to increment counter
517
- ctx->mICDManager .Shutdown ();
539
+ ctx->mICDManager .Shutdown (&(ctx-> mTestEventDelagate ) );
518
540
ctx->mICDManager .Init (&(ctx->testStorage ), &(ctx->GetFabricTable ()), &(ctx->mKeystore ), &(ctx->GetExchangeManager ()),
519
- &(ctx->mSubInfoProvider ));
541
+ &(ctx->mSubInfoProvider ), &(ctx-> mTestEventDelagate ) );
520
542
ctx->mICDManager .RegisterObserver (&(ctx->mICDStateObserver ));
521
543
522
544
NL_TEST_ASSERT_EQUALS (aSuite, counter + ICDConfigurationData::kICDCounterPersistenceIncrement ,
@@ -692,6 +714,26 @@ class TestICDManager
692
714
NL_TEST_ASSERT (aSuite, ctx->mICDManager .ShouldCheckInMsgsBeSentAtActiveModeFunction (kTestFabricIndex1 , kClientNodeId11 ));
693
715
}
694
716
#endif // CHIP_CONFIG_PERSIST_SUBSCRIPTIONS
717
+
718
+ static void TestHandleTestEventTriggerActiveModeReq (nlTestSuite * aSuite, void * aContext)
719
+ {
720
+ TestContext * ctx = static_cast <TestContext *>(aContext);
721
+
722
+ // Verify That ICDManager starts in Idle
723
+ NL_TEST_ASSERT (aSuite, ctx->mICDManager .mOperationalState == ICDManager::OperationalState::IdleMode);
724
+
725
+ // Add ActiveMode req for the Test event trigger event
726
+ ctx->mICDManager .HandleEventTrigger (static_cast <uint64_t >(ICDManager::ICDTestEventTriggerEvent::kAddActiveModeReq ));
727
+ NL_TEST_ASSERT (aSuite, ctx->mICDManager .mOperationalState == ICDManager::OperationalState::ActiveMode);
728
+
729
+ // Advance clock by the ActiveModeDuration and check that the device is still in ActiveMode
730
+ AdvanceClockAndRunEventLoop (ctx, ICDConfigurationData::GetInstance ().GetActiveModeDuration () + 1_ms32);
731
+ NL_TEST_ASSERT (aSuite, ctx->mICDManager .mOperationalState == ICDManager::OperationalState::ActiveMode);
732
+
733
+ // Remove req and device should go to IdleMode
734
+ ctx->mICDManager .HandleEventTrigger (static_cast <uint64_t >(ICDManager::ICDTestEventTriggerEvent::kRemoveActiveModeReq ));
735
+ NL_TEST_ASSERT (aSuite, ctx->mICDManager .mOperationalState == ICDManager::OperationalState::IdleMode);
736
+ }
695
737
};
696
738
697
739
} // namespace app
@@ -710,6 +752,7 @@ static const nlTest sTests[] = {
710
752
NL_TEST_DEF (" TestICDCounter" , TestICDManager::TestICDCounter),
711
753
NL_TEST_DEF (" TestICDStayActive" , TestICDManager::TestICDMStayActive),
712
754
NL_TEST_DEF (" TestShouldCheckInMsgsBeSentAtActiveModeFunction" , TestICDManager::TestShouldCheckInMsgsBeSentAtActiveModeFunction),
755
+ NL_TEST_DEF (" TestHandleTestEventTriggerActiveModeReq" , TestICDManager::TestHandleTestEventTriggerActiveModeReq),
713
756
NL_TEST_SENTINEL (),
714
757
};
715
758
0 commit comments