1 //******************************************************************
3 // Copyright 2014 Intel Mobile Communications GmbH All Rights Reserved.
5 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
7 // Licensed under the Apache License, Version 2.0 (the "License");
8 // you may not use this file except in compliance with the License.
9 // You may obtain a copy of the License at
11 // http://www.apache.org/licenses/LICENSE-2.0
13 // Unless required by applicable law or agreed to in writing, software
14 // distributed under the License is distributed on an "AS IS" BASIS,
15 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 // See the License for the specific language governing permissions and
17 // limitations under the License.
19 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
22 #include "plugininterface.h"
23 #include "gtest/gtest.h"
24 #include <sys/types.h>
31 //-----------------------------------------------------------------------------
33 //-----------------------------------------------------------------------------
40 #include "gtest_helper.h"
42 namespace itst = iotivity::test;
44 //-----------------------------------------------------------------------------
46 //-----------------------------------------------------------------------------
48 std::chrono::seconds const SHORT_TEST_TIMEOUT = std::chrono::seconds(5);
50 //-----------------------------------------------------------------------------
52 //-----------------------------------------------------------------------------
54 // Plugin Interface API PIStartPlugin()
55 TEST(PITests, StartPluginTest)
57 itst::DeadmanTimer killSwitch(SHORT_TEST_TIMEOUT);
58 EXPECT_EQ(OC_STACK_INVALID_PARAM, PIStartPlugin(NULL, PLUGIN_UNKNOWN, NULL));
59 EXPECT_EQ(OC_STACK_INVALID_PARAM, PIStartPlugin("", PLUGIN_UNKNOWN, NULL));
60 EXPECT_EQ(OC_STACK_INVALID_PARAM, PIStartPlugin("", PLUGIN_UNKNOWN, NULL));
61 // Note: The following test is invalid for unit tests. Please do not enable tests which
62 // actually enable hardware radios.
63 // EXPECT_EQ(OC_STACK_INVALID_PARAM, PIStartPlugin("/dev/ttyUSB0", PLUGIN_ZIGBEE, NULL));
66 // Plugin Interface API PIStopPlugin()
67 TEST(PITests, StopPluginTest)
69 itst::DeadmanTimer killSwitch(SHORT_TEST_TIMEOUT);
70 EXPECT_EQ(OC_STACK_INVALID_PARAM, PIStopPlugin(NULL));
73 // Plugin Interface API PIProcess()
74 TEST(PITests, ProcessTest)
76 itst::DeadmanTimer killSwitch(SHORT_TEST_TIMEOUT);
77 EXPECT_EQ(OC_STACK_INVALID_PARAM, PIProcess(NULL));