diff --git a/src/system/tests/TestSystemScheduleWork.cpp b/src/system/tests/TestSystemScheduleWork.cpp new file mode 100644 index 00000000000000..db43fcf36a78e7 --- /dev/null +++ b/src/system/tests/TestSystemScheduleWork.cpp @@ -0,0 +1,94 @@ +/* + * Copyright (c) 2021 Project CHIP Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#include + +#include +#include +#include +#include +#include + +// Test input data. + +static void CheckScheduleLambda(nlTestSuite * inSuite, void * aContext) +{ + bool * called = new bool(false); + chip::DeviceLayer::SystemLayer().ScheduleLambda([called] { + *called = true; + chip::DeviceLayer::PlatformMgr().StopEventLoopTask(); + }); + chip::DeviceLayer::PlatformMgr().RunEventLoop(); + NL_TEST_ASSERT(inSuite, *called); + delete called; +} + +// Test Suite + +/** + * Test Suite. It lists all the test functions. + */ +// clang-format off +static const nlTest sTests[] = +{ + NL_TEST_DEF("System::TestScheduleLambda", CheckScheduleLambda), + NL_TEST_SENTINEL() +}; +// clang-format on + +static int TestSetup(void * aContext); +static int TestTeardown(void * aContext); + +// clang-format off +static nlTestSuite kTheSuite = +{ + "chip-system-schedule-lambda", + &sTests[0], + TestSetup, + TestTeardown +}; +// clang-format on + +/** + * Set up the test suite. + */ +static int TestSetup(void * aContext) +{ + if (chip::DeviceLayer::PlatformMgr().InitChipStack() != CHIP_NO_ERROR) + return FAILURE; + + return (SUCCESS); +} + +/** + * Tear down the test suite. + * Free memory reserved at TestSetup. + */ +static int TestTeardown(void * aContext) +{ + chip::DeviceLayer::PlatformMgr().Shutdown(); + return (SUCCESS); +} + +int TestSystemScheduleLambda(void) +{ + // Run test suit againt one lContext. + nlTestRunner(&kTheSuite, nullptr); + + return nlTestRunnerStats(&kTheSuite); +} + +CHIP_REGISTER_TEST_SUITE(TestSystemScheduleLambda)