Use new exception types in KeyProvider class.
[platform/core/security/key-manager.git] / tests / main.cpp
1 /*
2  *  Copyright (c) 2000 - 2015 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  *  Licensed under the Apache License, Version 2.0 (the "License");
5  *  you may not use this file except in compliance with the License.
6  *  You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  *  Unless required by applicable law or agreed to in writing, software
11  *  distributed under the License is distributed on an "AS IS" BASIS,
12  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *  See the License for the specific language governing permissions and
14  *  limitations under the License
15  */
16 /*
17  * @file       main.cpp
18  * @author     Krzysztof Jackiewicz (k.jackiewicz@samsung.com)
19  * @version    1.0
20  */
21
22 #include <iostream>
23 #include <key-provider.h>
24 #include <boost/test/unit_test.hpp>
25 #include <boost/test/unit_test_log.hpp>
26 #include <boost/test/results_reporter.hpp>
27 #include <colour_log_formatter.h>
28 #include <dpl/log/log.h>
29 #include <log-setup.h>
30
31 #include <exception.h>
32
33 struct TestConfig {
34     TestConfig() {
35         boost::unit_test::unit_test_log.set_threshold_level( boost::unit_test::log_test_units);
36         boost::unit_test::results_reporter::set_level(boost::unit_test::SHORT_REPORT);
37         boost::unit_test::unit_test_log.set_formatter(new CKM::colour_log_formatter);
38     }
39     ~TestConfig(){
40     }
41 };
42
43 bool isLibInitialized = false;
44
45 struct KeyProviderLib {
46     KeyProviderLib() {
47         try {
48             CKM::KeyProvider::initializeLibrary();
49             isLibInitialized = true;
50         } catch (const CKM::Exc::Exception &) {
51             std::cout << "Library initialization failed!" << std::endl;
52         }
53     }
54     ~KeyProviderLib() {
55         try {
56             CKM::KeyProvider::closeLibrary();
57         } catch (const CKM::Exc::Exception &) {
58             std::cout << "Library deinitialization failed!" << std::endl;
59         }
60     }
61 };
62
63 struct LogSetup {
64     LogSetup() {
65         CKM::SetupClientLogSystem();
66         CKM::Singleton<CKM::Log::LogSystem>::Instance().SetTag("CKM_INTERNAL_TESTS");
67     }
68     ~LogSetup() {}
69 };
70
71 BOOST_GLOBAL_FIXTURE(KeyProviderLib)
72 BOOST_GLOBAL_FIXTURE(TestConfig)
73 BOOST_GLOBAL_FIXTURE(LogSetup)
74