Rename file operation functions of cynara-tests
[platform/core/test/security-tests.git] / tests / cynara-tests / common / cynara_test_commons.cpp
1 /*
2  * Copyright (c) 2014-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 #include <cynara_test_commons.h>
18 #include <cynara_test_env.h>
19 #include <cynara_test_file_operations.h>
20 #include <cynara_test_cynara_mask.h>
21
22 #include <dpl/exception.h>
23 #include <dpl/test/test_runner.h>
24
25 #include <exception>
26
27 namespace CynaraTestConsts
28 {
29
30 const std::string DB_DIR(CYNARA_DB_DIR);
31 const std::string USER("cynara");
32 const std::string LABEL("System");
33 const std::string SERVICE("cynara.service");
34 const std::string SERVICE_PLUGINS_DIR("/usr/lib/cynara/plugin/service/");
35
36 }
37
38 void environmentWrap(const char *testName, const std::function<void(void)> &func)
39 {
40     CynaraTestEnv env(testName);
41     env.save();
42
43     try {
44         func();
45     } catch (const DPL::Test::TestRunner::TestFailed &e) {
46         env.restore();
47         throw e;
48     } catch (const DPL::Test::TestRunner::Ignored &e) {
49         env.restore();
50         throw e;
51     } catch (const DPL::Exception &e) {
52         env.restore();
53         throw e;
54     } catch (const std::exception &e) {
55         env.restore();
56         throw e;
57     } catch (...) {
58         env.restore();
59         throw std::runtime_error("Unknown exception");
60     }
61     env.restore();
62 }
63
64 void loadServicePlugins(const DirectoryPaths &pluginDirectories)
65 {
66     CynaraMask mask;
67
68     FileOperations::removeDirFiles(CynaraTestConsts::SERVICE_PLUGINS_DIR);
69     for (const auto &dir : pluginDirectories)
70         FileOperations::copyCynaraFiles(dir.c_str(), CynaraTestConsts::SERVICE_PLUGINS_DIR);
71 }