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 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
21 #include <OCPlatform.h>
24 //Uncomment the below line for testing with Mocks
27 #include "hippomocks.h"
28 #include "Framework.h"
30 #define GTEST_DONT_DEFINE_TEST 1
32 #include <gtest/gtest.h>
34 namespace ConstructResourceTest
37 std::vector<std::string> ifaces = {DEFAULT_INTERFACE};
38 //using mocks framework
39 GTEST_TEST(ConstructResourceObjectTest, ConstructResourceObjectValidReturnValue)
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);
51 GTEST_TEST(ConstructResourceObjectTest, ConstructResourceObjectInValidReturnValue)
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);