94f51a8ec3d025d459bd97ea67fbbbdedf17321c
[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
30 struct TestConfig {
31     TestConfig() {
32         boost::unit_test::unit_test_log.set_threshold_level( boost::unit_test::log_test_units);
33         boost::unit_test::results_reporter::set_level(boost::unit_test::SHORT_REPORT);
34         boost::unit_test::unit_test_log.set_formatter(new CKM::colour_log_formatter);
35     }
36     ~TestConfig(){
37     }
38 };
39
40 bool isLibInitialized = false;
41
42 struct KeyProviderLib {
43     KeyProviderLib() {
44         Try {
45             CKM::KeyProvider::initializeLibrary();
46             isLibInitialized = true;
47         }
48         Catch (CKM::Exception) {
49             std::cout << "Library initialization failed!" << std::endl;
50         }
51     }
52     ~KeyProviderLib() {
53         Try { CKM::KeyProvider::closeLibrary(); }
54         Catch (CKM::Exception) {
55             std::cout << "Library deinitialization failed!" << std::endl;
56         }
57     }
58 };
59
60 struct LogSetup {
61     LogSetup() {
62         CKM::Singleton<CKM::Log::LogSystem>::Instance().SetTag("CKM_INTERNAL_TESTS");
63     }
64     ~LogSetup() {}
65 };
66
67 BOOST_GLOBAL_FIXTURE(KeyProviderLib)
68 BOOST_GLOBAL_FIXTURE(TestConfig)
69 BOOST_GLOBAL_FIXTURE(LogSetup)
70