Add C++ Unit tests
[platform/upstream/iotivity.git] / resource / unittests / ConstructResourceTest.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 #include <OCPlatform.h>
22 #include <OCApi.h>
23
24 //Uncomment the below line for testing with Mocks
25 //#define WITH_MOCKS
26
27 #include "hippomocks.h"
28 #include "Framework.h"
29
30 #define GTEST_DONT_DEFINE_TEST 1
31
32 #include <gtest/gtest.h>
33
34 namespace ConstructResourceTest
35 {
36     using namespace OC;
37     std::vector<std::string> ifaces = {DEFAULT_INTERFACE};
38     //using mocks framework
39     GTEST_TEST(ConstructResourceObjectTest, ConstructResourceObjectValidReturnValue)
40     {
41         MockRepository mocks;
42         OCResource::Ptr rightdoor = std::shared_ptr<OCResource>();
43         mocks.ExpectCallFunc(OCPlatform::constructResourceObject).Return(rightdoor);
44         std::vector<std::string> types = {"core.leftdoor"};
45         OCResource::Ptr leftdoor = OCPlatform::constructResourceObject("192.168.1.2:5000",
46                                     "a/leftdoor", false, types, ifaces);
47         EXPECT_EQ(leftdoor, rightdoor);
48
49     }
50
51     GTEST_TEST(ConstructResourceObjectTest, ConstructResourceObjectInValidReturnValue)
52     {
53         MockRepository mocks;
54         OCResource::Ptr rightdoor = std::shared_ptr<OCResource>();
55         mocks.ExpectCallFunc(OCPlatform::constructResourceObject).Return(NULL);
56         std::vector<std::string> types = {"core.rightdoor"};
57         OCResource::Ptr leftdoor = OCPlatform::constructResourceObject("192.168.1.2:5000",
58                                     "a/rightdoor", false, types, ifaces);
59         bool value = (leftdoor == NULL);
60         EXPECT_EQ(true, value);
61     }
62 }
63