1 //******************************************************************
3 // Copyright 2015 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 <gtest/gtest.h>
23 #include <OCException.h>
24 #include <StringConstants.h>
30 namespace OCExceptionTests
34 OCStackResult resultCodes[] =
37 OC_STACK_RESOURCE_CREATED,
38 OC_STACK_RESOURCE_DELETED,
41 OC_STACK_INVALID_QUERY,
43 OC_STACK_INVALID_PORT,
44 OC_STACK_INVALID_CALLBACK,
45 OC_STACK_INVALID_METHOD,
46 OC_STACK_INVALID_PARAM,
47 OC_STACK_INVALID_OBSERVE_PARAM,
51 OC_STACK_ADAPTER_NOT_ENABLED,
54 OC_STACK_RESOURCE_ERROR,
55 OC_STACK_SLOW_RESOURCE,
56 OC_STACK_NO_OBSERVERS,
57 OC_STACK_OBSERVER_NOT_FOUND,
58 OC_STACK_VIRTUAL_DO_NOT_HANDLE,
59 OC_STACK_INVALID_OPTION,
60 OC_STACK_MALFORMED_RESPONSE,
61 OC_STACK_PERSISTENT_BUFFER_REQUIRED,
62 OC_STACK_INVALID_REQUEST_HANDLE,
63 OC_STACK_INVALID_DEVICE_INFO,
64 OC_STACK_INVALID_JSON,
65 OC_STACK_PRESENCE_STOPPED,
66 OC_STACK_PRESENCE_TIMEOUT,
67 OC_STACK_PRESENCE_DO_NOT_HANDLE,
71 std::string resultMessages[]=
73 OC::Exception::NO_ERROR,
74 OC::Exception::RESOURCE_CREATED,
75 OC::Exception::RESOURCE_DELETED,
76 OC::Exception::STACK_CONTINUE,
77 OC::Exception::INVALID_URI,
78 OC::Exception::INVALID_QUERY,
79 OC::Exception::INVALID_IP,
80 OC::Exception::INVALID_PORT,
81 OC::Exception::INVALID_CB,
82 OC::Exception::INVALID_METHOD,
83 OC::Exception::INVALID_PARAM,
84 OC::Exception::INVALID_OBESERVE,
85 OC::Exception::NO_MEMORY,
86 OC::Exception::COMM_ERROR,
87 OC::Exception::TIMEOUT,
88 OC::Exception::ADAPTER_NOT_ENABLED,
89 OC::Exception::NOT_IMPL,
90 OC::Exception::NOT_FOUND,
91 OC::Exception::RESOURCE_ERROR,
92 OC::Exception::SLOW_RESOURCE,
93 OC::Exception::NO_OBSERVERS,
94 OC::Exception::OBSV_NO_FOUND,
95 OC::Exception::VIRTUAL_DO_NOT_HANDLE,
96 OC::Exception::INVALID_OPTION,
97 OC::Exception::MALFORMED_STACK_RESPONSE,
98 OC::Exception::PERSISTENT_BUFFER_REQUIRED,
99 OC::Exception::INVALID_REQUEST_HANDLE,
100 OC::Exception::INVALID_DEVICE_INFO,
101 OC::Exception::INVALID_REPRESENTATION,
102 OC::Exception::PRESENCE_STOPPED,
103 OC::Exception::PRESENCE_TIMEOUT,
104 OC::Exception::PRESENCE_NOT_HANDLED,
105 OC::Exception::GENERAL_FAULT
107 TEST(OCExceptionTest, ReasonCodeMatches)
109 for(OCStackResult res : resultCodes)
111 OCException ex{"", res};
112 EXPECT_EQ(res, ex.code());
116 TEST(OCExceptionTest, MessageCodeMatches)
118 std::string exceptionMessage = "This is the exception message!";
119 OCException ex {exceptionMessage, OC_STACK_OK};
121 EXPECT_EQ(exceptionMessage, ex.what());
124 TEST(OCExceptionTest, ReasonMapping)
127 for(OCStackResult res : resultCodes)
129 OCException ex{"", res};
130 EXPECT_EQ(resultMessages[i], ex.reason());
135 TEST(OCExceptionTest, UnknownReasonMappings)
137 for(int i = 0; i < OC_STACK_ERROR; ++i)
140 std::begin(resultCodes),
141 std::end(resultCodes),
142 static_cast<OCStackResult>(i))
143 == std::end(resultCodes))
145 OCException ex {"", static_cast<OCStackResult>(i)};
146 EXPECT_EQ(OC::Exception::UNKNOWN_ERROR, ex.reason());
150 } //namespace OCExceptionTests