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,
40 OC_STACK_RESOURCE_CHANGED,
42 OC_STACK_INVALID_QUERY,
44 OC_STACK_INVALID_PORT,
45 OC_STACK_INVALID_CALLBACK,
46 OC_STACK_INVALID_METHOD,
47 OC_STACK_INVALID_PARAM,
48 OC_STACK_INVALID_OBSERVE_PARAM,
52 OC_STACK_ADAPTER_NOT_ENABLED,
55 OC_STACK_RESOURCE_ERROR,
56 OC_STACK_SLOW_RESOURCE,
57 OC_STACK_DUPLICATE_REQUEST,
58 OC_STACK_NO_OBSERVERS,
59 OC_STACK_OBSERVER_NOT_FOUND,
60 OC_STACK_VIRTUAL_DO_NOT_HANDLE,
61 OC_STACK_INVALID_OPTION,
62 OC_STACK_MALFORMED_RESPONSE,
63 OC_STACK_PERSISTENT_BUFFER_REQUIRED,
64 OC_STACK_INVALID_REQUEST_HANDLE,
65 OC_STACK_INVALID_DEVICE_INFO,
66 OC_STACK_INVALID_JSON,
67 OC_STACK_UNAUTHORIZED_REQ,
68 OC_STACK_TOO_LARGE_REQ,
69 OC_STACK_PRESENCE_STOPPED,
70 OC_STACK_PRESENCE_TIMEOUT,
71 OC_STACK_PRESENCE_DO_NOT_HANDLE,
73 OC_STACK_PDM_IS_NOT_INITIALIZED,
74 OC_STACK_DUPLICATE_UUID,
75 OC_STACK_INCONSISTENT_DB,
76 OC_STACK_AUTHENTICATION_FAILURE,
77 OC_STACK_NOT_ALLOWED_OXM,
78 OC_STACK_USER_DENIED_REQ,
79 OC_STACK_NOT_ACCEPTABLE,
80 OC_STACK_FORBIDDEN_REQ,
81 OC_STACK_INTERNAL_SERVER_ERROR,
85 std::string resultMessages[]=
87 OC::Exception::NO_ERROR,
88 OC::Exception::RESOURCE_CREATED,
89 OC::Exception::RESOURCE_DELETED,
90 OC::Exception::STACK_CONTINUE,
91 OC::Exception::RESOURCE_CHANGED,
92 OC::Exception::INVALID_URI,
93 OC::Exception::INVALID_QUERY,
94 OC::Exception::INVALID_IP,
95 OC::Exception::INVALID_PORT,
96 OC::Exception::INVALID_CB,
97 OC::Exception::INVALID_METHOD,
98 OC::Exception::INVALID_PARAM,
99 OC::Exception::INVALID_OBESERVE,
100 OC::Exception::NO_MEMORY,
101 OC::Exception::COMM_ERROR,
102 OC::Exception::TIMEOUT,
103 OC::Exception::ADAPTER_NOT_ENABLED,
104 OC::Exception::NOT_IMPL,
105 OC::Exception::NOT_FOUND,
106 OC::Exception::RESOURCE_ERROR,
107 OC::Exception::SLOW_RESOURCE,
108 OC::Exception::DUPLICATE_REQUEST,
109 OC::Exception::NO_OBSERVERS,
110 OC::Exception::OBSV_NO_FOUND,
111 OC::Exception::VIRTUAL_DO_NOT_HANDLE,
112 OC::Exception::INVALID_OPTION,
113 OC::Exception::MALFORMED_STACK_RESPONSE,
114 OC::Exception::PERSISTENT_BUFFER_REQUIRED,
115 OC::Exception::INVALID_REQUEST_HANDLE,
116 OC::Exception::INVALID_DEVICE_INFO,
117 OC::Exception::INVALID_REPRESENTATION,
118 OC::Exception::UNAUTHORIZED_REQUEST,
119 OC::Exception::TOO_LARGE_REQ,
120 OC::Exception::PRESENCE_STOPPED,
121 OC::Exception::PRESENCE_TIMEOUT,
122 OC::Exception::PRESENCE_NOT_HANDLED,
123 OC::Exception::GENERAL_FAULT,
124 OC::Exception::PDM_DB_NOT_INITIALIZED,
125 OC::Exception::DUPLICATE_UUID,
126 OC::Exception::INCONSISTENT_DB,
127 OC::Exception::AUTHENTICATION_FAILURE,
128 OC::Exception::NOT_ALLOWED_OXM,
129 OC::Exception::USER_DENIED_REQ,
130 OC::Exception::NOT_ACCEPTABLE,
131 OC::Exception::FORBIDDEN_REQ,
132 OC::Exception::INTERNAL_SERVER_ERROR,
133 OC::Exception::BAD_ENDPOINT
135 TEST(OCExceptionTest, ReasonCodeMatches)
137 for(OCStackResult res : resultCodes)
139 OCException ex{"", res};
140 EXPECT_EQ(res, ex.code());
144 TEST(OCExceptionTest, MessageCodeMatches)
146 std::string exceptionMessage = "This is the exception message!";
147 OCException ex {exceptionMessage, OC_STACK_OK};
149 EXPECT_EQ(exceptionMessage, ex.what());
152 TEST(OCExceptionTest, ReasonMapping)
155 for(OCStackResult res : resultCodes)
157 OCException ex{"", res};
158 EXPECT_EQ(resultMessages[i], ex.reason());
163 TEST(OCExceptionTest, UnknownReasonMappings)
165 for(int i = 0; i < OC_STACK_ERROR; ++i)
168 std::begin(resultCodes),
169 std::end(resultCodes),
170 static_cast<OCStackResult>(i))
171 == std::end(resultCodes))
173 OCException ex {"", static_cast<OCStackResult>(i)};
174 EXPECT_EQ(OC::Exception::UNKNOWN_ERROR, ex.reason());
178 } //namespace OCExceptionTests