Imported Upstream version 0.9.2
[platform/upstream/iotivity.git] / resource / unittests / OCExceptionTest.cpp
1 //******************************************************************
2 //
3 // Copyright 2015 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 <algorithm>
22 #include <gtest/gtest.h>
23 #include <OCException.h>
24 #include <StringConstants.h>
25
26 namespace OC
27 {
28     namespace test
29     {
30         namespace OCExceptionTests
31         {
32             using namespace OC;
33
34             OCStackResult resultCodes[] =
35             {
36                 OC_STACK_OK,
37                 OC_STACK_RESOURCE_CREATED,
38                 OC_STACK_RESOURCE_DELETED,
39                 OC_STACK_CONTINUE,
40                 OC_STACK_INVALID_URI,
41                 OC_STACK_INVALID_QUERY,
42                 OC_STACK_INVALID_IP,
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,
48                 OC_STACK_NO_MEMORY,
49                 OC_STACK_COMM_ERROR,
50                 OC_STACK_TIMEOUT,
51                 OC_STACK_ADAPTER_NOT_ENABLED,
52                 OC_STACK_NOTIMPL,
53                 OC_STACK_NO_RESOURCE,
54                 OC_STACK_RESOURCE_ERROR,
55                 OC_STACK_SLOW_RESOURCE,
56                 OC_STACK_DUPLICATE_REQUEST,
57                 OC_STACK_NO_OBSERVERS,
58                 OC_STACK_OBSERVER_NOT_FOUND,
59                 OC_STACK_VIRTUAL_DO_NOT_HANDLE,
60                 OC_STACK_INVALID_OPTION,
61                 OC_STACK_MALFORMED_RESPONSE,
62                 OC_STACK_PERSISTENT_BUFFER_REQUIRED,
63                 OC_STACK_INVALID_REQUEST_HANDLE,
64                 OC_STACK_INVALID_DEVICE_INFO,
65                 OC_STACK_INVALID_JSON,
66                 OC_STACK_UNAUTHORIZED_REQ,
67                 OC_STACK_PRESENCE_STOPPED,
68                 OC_STACK_PRESENCE_TIMEOUT,
69                 OC_STACK_PRESENCE_DO_NOT_HANDLE,
70                 OC_STACK_ERROR
71             };
72
73             std::string resultMessages[]=
74             {
75                 OC::Exception::NO_ERROR,
76                 OC::Exception::RESOURCE_CREATED,
77                 OC::Exception::RESOURCE_DELETED,
78                 OC::Exception::STACK_CONTINUE,
79                 OC::Exception::INVALID_URI,
80                 OC::Exception::INVALID_QUERY,
81                 OC::Exception::INVALID_IP,
82                 OC::Exception::INVALID_PORT,
83                 OC::Exception::INVALID_CB,
84                 OC::Exception::INVALID_METHOD,
85                 OC::Exception::INVALID_PARAM,
86                 OC::Exception::INVALID_OBESERVE,
87                 OC::Exception::NO_MEMORY,
88                 OC::Exception::COMM_ERROR,
89                 OC::Exception::TIMEOUT,
90                 OC::Exception::ADAPTER_NOT_ENABLED,
91                 OC::Exception::NOT_IMPL,
92                 OC::Exception::NOT_FOUND,
93                 OC::Exception::RESOURCE_ERROR,
94                 OC::Exception::SLOW_RESOURCE,
95                 OC::Exception::DUPLICATE_REQUEST,
96                 OC::Exception::NO_OBSERVERS,
97                 OC::Exception::OBSV_NO_FOUND,
98                 OC::Exception::VIRTUAL_DO_NOT_HANDLE,
99                 OC::Exception::INVALID_OPTION,
100                 OC::Exception::MALFORMED_STACK_RESPONSE,
101                 OC::Exception::PERSISTENT_BUFFER_REQUIRED,
102                 OC::Exception::INVALID_REQUEST_HANDLE,
103                 OC::Exception::INVALID_DEVICE_INFO,
104                 OC::Exception::INVALID_REPRESENTATION,
105                 OC::Exception::UNAUTHORIZED_REQUEST,
106                 OC::Exception::PRESENCE_STOPPED,
107                 OC::Exception::PRESENCE_TIMEOUT,
108                 OC::Exception::PRESENCE_NOT_HANDLED,
109                 OC::Exception::GENERAL_FAULT
110             };
111             TEST(OCExceptionTest, ReasonCodeMatches)
112             {
113                 for(OCStackResult res : resultCodes)
114                 {
115                     OCException ex{"", res};
116                     EXPECT_EQ(res, ex.code());
117                 }
118             }
119
120             TEST(OCExceptionTest, MessageCodeMatches)
121             {
122                 std::string exceptionMessage = "This is the exception message!";
123                 OCException ex {exceptionMessage, OC_STACK_OK};
124
125                 EXPECT_EQ(exceptionMessage, ex.what());
126             }
127
128             TEST(OCExceptionTest, ReasonMapping)
129             {
130                 int i=0;
131                 for(OCStackResult res : resultCodes)
132                 {
133                     OCException ex{"", res};
134                     EXPECT_EQ(resultMessages[i], ex.reason());
135                     ++i;
136                 }
137             }
138
139             TEST(OCExceptionTest, UnknownReasonMappings)
140             {
141                 for(int i = 0; i < OC_STACK_ERROR; ++i)
142                 {
143                     if(std::find(
144                                 std::begin(resultCodes),
145                                 std::end(resultCodes),
146                                 static_cast<OCStackResult>(i))
147                             == std::end(resultCodes))
148                     {
149                         OCException ex {"", static_cast<OCStackResult>(i)};
150                         EXPECT_EQ(OC::Exception::UNKNOWN_ERROR, ex.reason());
151                     }
152                 }
153             }
154         } //namespace OCExceptionTests
155     } //namespace test
156 } //namespace OC