Adjust cynara wrapper to framework
[platform/core/test/security-tests.git] / src / 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_file_operations.h>
19 #include <cynara_test_cynara_mask.h>
20
21 #include <dpl/exception.h>
22 #include <dpl/test/test_exception.h>
23
24 #include <exception>
25
26 namespace CynaraTestConsts
27 {
28
29 const std::string DB_DIR(CYNARA_DB_DIR);
30 const std::string USER("cynara");
31 const std::string LABEL("System");
32 const std::string SERVICE("cynara.service");
33 const std::string SOCKET_CLIENT("cynara.socket");
34 const std::string SOCKET_ADMIN("cynara-admin.socket");
35 const std::string SOCKET_AGENT("cynara-agent.socket");
36
37 const std::string SERVICE_PLUGINS_DIR("/usr/lib/cynara/plugin/service/");
38
39 }
40
41 void loadServicePlugins(const DirectoryPaths &pluginDirectories)
42 {
43     CynaraMask mask;
44
45     FileOperations::removeDirFiles(CynaraTestConsts::SERVICE_PLUGINS_DIR);
46     for (const auto &dir : pluginDirectories)
47         FileOperations::copyCynaraFiles(dir.c_str(), CynaraTestConsts::SERVICE_PLUGINS_DIR);
48 }
49
50 void restartCynaraService()
51 {
52     ServiceManager service(CynaraTestConsts::SERVICE);
53     service.restartService();
54 }
55
56 void restartCynaraServiceAndSockets()
57 {
58     ServiceManager service(CynaraTestConsts::SERVICE, { CynaraTestConsts::SOCKET_CLIENT,
59                                                         CynaraTestConsts::SOCKET_ADMIN,
60                                                         CynaraTestConsts::SOCKET_AGENT });
61
62     service.restartService(true);
63 }