Skip to content

Commit d5b61f0

Browse files
update TestICDManager inits
1 parent f63d7bc commit d5b61f0

File tree

1 file changed

+4
-24
lines changed

1 file changed

+4
-24
lines changed

src/app/tests/TestICDManager.cpp

+4-24
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,6 @@ constexpr NodeId kClientNodeId12 = 0x100002;
5454
constexpr NodeId kClientNodeId21 = 0x200001;
5555
constexpr NodeId kClientNodeId22 = 0x200002;
5656

57-
const uint8_t kTestKey[16] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 };
58-
5957
constexpr uint8_t kKeyBuffer1a[] = {
6058
0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f
6159
};
@@ -94,22 +92,6 @@ class TestSubscriptionsInfoProvider : public SubscriptionsInfoProvider
9492
bool mHasPersistedSubscription = false;
9593
};
9694

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-
11395
class TestContext : public chip::Test::AppContext
11496
{
11597
public:
@@ -136,16 +118,15 @@ class TestContext : public chip::Test::AppContext
136118
{
137119

138120
ReturnErrorOnFailure(chip::Test::AppContext::SetUp());
139-
mICDManager.Init(&testStorage, &GetFabricTable(), &mKeystore, &GetExchangeManager(), &mSubInfoProvider,
140-
&mTestEventDelagate);
121+
mICDManager.Init(&testStorage, &GetFabricTable(), &mKeystore, &GetExchangeManager(), &mSubInfoProvider);
141122
mICDManager.RegisterObserver(&mICDStateObserver);
142123
return CHIP_NO_ERROR;
143124
}
144125

145126
// Performs teardown for each individual test in the test suite
146127
void TearDown() override
147128
{
148-
mICDManager.Shutdown(&mTestEventDelagate);
129+
mICDManager.Shutdown();
149130
chip::Test::AppContext::TearDown();
150131
}
151132

@@ -155,7 +136,6 @@ class TestContext : public chip::Test::AppContext
155136
TestSubscriptionsInfoProvider mSubInfoProvider;
156137
TestPersistentStorageDelegate testStorage;
157138
TestICDStateObserver mICDStateObserver;
158-
TestEventDelegate mTestEventDelagate;
159139

160140
private:
161141
System::Clock::ClockBase * mRealClock;
@@ -536,9 +516,9 @@ class TestICDManager
536516
uint32_t counter = ICDConfigurationData::GetInstance().GetICDCounter().GetValue();
537517

538518
// Shut down and reinit ICDManager to increment counter
539-
ctx->mICDManager.Shutdown(&(ctx->mTestEventDelagate));
519+
ctx->mICDManager.Shutdown();
540520
ctx->mICDManager.Init(&(ctx->testStorage), &(ctx->GetFabricTable()), &(ctx->mKeystore), &(ctx->GetExchangeManager()),
541-
&(ctx->mSubInfoProvider), &(ctx->mTestEventDelagate));
521+
&(ctx->mSubInfoProvider));
542522
ctx->mICDManager.RegisterObserver(&(ctx->mICDStateObserver));
543523

544524
NL_TEST_ASSERT_EQUALS(aSuite, counter + ICDConfigurationData::kICDCounterPersistenceIncrement,

0 commit comments

Comments
 (0)