Master branch merge for VS build success
[platform/upstream/iotivity.git] / plugins / unittests / plugininterfacetest.cpp
1 //******************************************************************
2 //
3 // Copyright 2014 Intel Mobile Communications GmbH All Rights Reserved.
4 //
5 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
6 //
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
10 //
11 //      http://www.apache.org/licenses/LICENSE-2.0
12 //
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.
18 //
19 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
20
21
22 #include "plugininterface.h"
23 #include "gtest/gtest.h"
24 #include <sys/types.h>
25 #include <sys/stat.h>
26 #include <errno.h>
27 #include <fcntl.h>
28 #include <unistd.h>
29 #include <stdlib.h>
30
31 //-----------------------------------------------------------------------------
32 // Includes
33 //-----------------------------------------------------------------------------
34 #include <stdio.h>
35 #include <string.h>
36
37 #include <iostream>
38 #include <stdint.h>
39
40 #include "gtest_helper.h"
41
42 namespace itst = iotivity::test;
43
44 //-----------------------------------------------------------------------------
45 // Private variables
46 //-----------------------------------------------------------------------------
47
48 std::chrono::seconds const SHORT_TEST_TIMEOUT = std::chrono::seconds(5);
49
50 //-----------------------------------------------------------------------------
51 //  Tests
52 //-----------------------------------------------------------------------------
53
54 // Plugin Interface API PIStartPlugin()
55 TEST(PITests, StartPluginTest)
56 {
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));
64 }
65
66 // Plugin Interface API PIStopPlugin()
67 TEST(PITests, StopPluginTest)
68 {
69     itst::DeadmanTimer killSwitch(SHORT_TEST_TIMEOUT);
70     EXPECT_EQ(OC_STACK_INVALID_PARAM, PIStopPlugin(NULL));
71 }
72
73 // Plugin Interface API PIProcess()
74 TEST(PITests, ProcessTest)
75 {
76     itst::DeadmanTimer killSwitch(SHORT_TEST_TIMEOUT);
77     EXPECT_EQ(OC_STACK_INVALID_PARAM, PIProcess(NULL));
78 }
79
80
81