summaryrefslogtreecommitdiff
path: root/tests/test_exception.cpp
blob: 009b2d2ae95c5fa730d906248032cc9ab90fdad4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
/*
 *  Copyright (c) 2000 - 2017 Samsung Electronics Co., Ltd All Rights Reserved
 *
 *  Licensed under the Apache License, Version 2.0 (the "License");
 *  you may not use this file except in compliance with the License.
 *  You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 *  Unless required by applicable law or agreed to in writing, software
 *  distributed under the License is distributed on an "AS IS" BASIS,
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *  See the License for the specific language governing permissions and
 *  limitations under the License
 */
#include <exception.h>

#include <boost/test/unit_test.hpp>
#include <string>

using namespace CKM;

#define CHECK_EXCEPTION(exception, ec, isDebug) \
do { \
	const std::string errmsg = "test exception string"; \
	BOOST_REQUIRE_THROW(ThrowErr(exception, errmsg), exception); \
	try { \
		ThrowErr(exception, errmsg); \
	} catch (const exception &e) { \
		checkExceptionInternal(e, ec, isDebug ? std::string() : errmsg); \
	} \
} while (false)

namespace {

void checkExceptionInternal(const Exc::Exception &e, int ec, const std::string &msg)
{
	BOOST_REQUIRE_MESSAGE(e.error() == ec,
		"ec(" << ec << ") not matched(" << e.error() << ")");

	BOOST_REQUIRE_MESSAGE(msg == e.what(),
		"msg(" << msg << ") isn't matched(" << e.what() << ")");

	BOOST_REQUIRE_MESSAGE(e.message().find(msg) != std::string::npos,
		"msg(" << msg << ") isn't contained from message("
		<< e.message() << ")");
}

} // namespace anonymous

BOOST_AUTO_TEST_SUITE(EXCEPTION_TEST)

BOOST_AUTO_TEST_CASE(internal_error)
{
	CHECK_EXCEPTION(Exc::InternalError, CKM_API_ERROR_SERVER_ERROR, false);
}

BOOST_AUTO_TEST_CASE(database_locked)
{
	CHECK_EXCEPTION(Exc::DatabaseLocked, CKM_API_ERROR_DB_LOCKED, false);
}

BOOST_AUTO_TEST_CASE(database_failed)
{
	CHECK_EXCEPTION(Exc::DatabaseFailed, CKM_API_ERROR_DB_ERROR, false);
}

BOOST_AUTO_TEST_CASE(filesystem_failed)
{
	CHECK_EXCEPTION(Exc::FileSystemFailed, CKM_API_ERROR_FILE_SYSTEM, false);
}

BOOST_AUTO_TEST_CASE(inputparam)
{
	CHECK_EXCEPTION(Exc::InputParam, CKM_API_ERROR_INPUT_PARAM, true);
}

BOOST_AUTO_TEST_CASE(authentication_failed)
{
	CHECK_EXCEPTION(Exc::AuthenticationFailed, CKM_API_ERROR_AUTHENTICATION_FAILED, true);
}

BOOST_AUTO_TEST_CASE(transaction_failed)
{
	CHECK_EXCEPTION(Exc::TransactionFailed, CKM_API_ERROR_DB_ERROR, false);
}

BOOST_AUTO_TEST_SUITE_END()