Merge branch 'ckm' into tizen
[platform/core/test/security-tests.git] / src / common / sm_request.h
1 /*
2  * Copyright (c) 2014-2019 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 #ifndef SECURITY_MANAGER_TEST_INSTALLREQUEST
18 #define SECURITY_MANAGER_TEST_INSTALLREQUEST
19
20 #include <iostream>
21 #include <string>
22 #include <sys/types.h>
23 #include <utility>
24 #include <vector>
25
26 #include <security-manager.h>
27 #include <app_def_privilege.h>
28
29 namespace SecurityManagerTest {
30 class InstallRequest;
31 void prepare_request(InstallRequest &request,
32                      const std::string &app_id,
33                      const std::string &pkg_id,
34                      app_install_path_type pathType,
35                      const std::string &path,
36                      uid_t uid);
37 class InstallRequest
38 {
39 public:
40     InstallRequest();
41     InstallRequest(const InstallRequest&) = delete;
42     InstallRequest& operator=(const InstallRequest&) = delete;
43     InstallRequest(InstallRequest &&other)
44         : m_req(std::move(other.m_req)),
45           m_pkgId(std::move(other.m_pkgId)),
46           m_authorId(std::move(other.m_authorId)),
47           m_privileges(std::move(other.m_privileges)),
48           m_paths(std::move(other.m_paths)),
49           m_uid(std::move(other.m_uid))
50     {
51         other.m_req = nullptr;
52         other.m_uid.first = false;
53         other.m_uid.second = 0;
54     }
55     ~InstallRequest();
56
57     void setAppTizenVersion(std::string tizenVer,
58             lib_retcode expectedresult = SECURITY_MANAGER_SUCCESS);
59     void setAppId(std::string appId, lib_retcode expectedresult = SECURITY_MANAGER_SUCCESS);
60     void setPkgId(std::string pkgId, lib_retcode expectedresult = SECURITY_MANAGER_SUCCESS);
61     void addPrivilege(Privilege privilege, lib_retcode expectedresult = SECURITY_MANAGER_SUCCESS);
62     void addAppDefinedPrivilege(Privilege privilege, lib_retcode expectedResult = SECURITY_MANAGER_SUCCESS);
63     void addPath(std::string path, app_install_path_type pathType,
64                  lib_retcode expectedResult = SECURITY_MANAGER_SUCCESS);
65     void setUid(const uid_t uid, lib_retcode expectedresult = SECURITY_MANAGER_SUCCESS);
66     void setAuthorId(std::string authorId, lib_retcode expectedResult= SECURITY_MANAGER_SUCCESS);
67     void setInstallType(const enum app_install_type &type, lib_retcode expectedResult = SECURITY_MANAGER_SUCCESS);
68     void setHybrid(lib_retcode expectedResult = SECURITY_MANAGER_SUCCESS);
69     void nextApp(lib_retcode expectedResult = SECURITY_MANAGER_SUCCESS);
70     std::string getPkgId() const { return m_pkgId; }
71     std::string getAppTizenVersion() const { return m_tizenVer; }
72     app_inst_req *get() { return m_req; }
73     const app_inst_req *get() const { return m_req; }
74     friend std::ostream& operator<<(std::ostream &, const InstallRequest&);
75
76 private:
77     app_inst_req *m_req;
78
79     std::string m_tizenVer;
80     std::string m_pkgId;
81     std::string m_authorId;
82     PrivilegeVector m_privileges;
83     PrivilegeVector m_appDefinedPrivileges;
84     std::vector<std::pair<std::string, app_install_path_type> > m_paths;
85     std::pair<bool, uid_t> m_uid;
86 };
87
88 std::ostream& operator<<(std::ostream &os, const SecurityManagerTest::InstallRequest &request);
89
90 class PathsRequest
91 {
92 public:
93     PathsRequest();
94     PathsRequest(const PathsRequest&) = delete;
95     PathsRequest& operator=(const PathsRequest&) = delete;
96     ~PathsRequest();
97
98     void setPkgId(std::string pkgId, lib_retcode expectedresult = SECURITY_MANAGER_SUCCESS);
99     void addPath(std::string path, app_install_path_type pathType,
100                  lib_retcode expectedResult = SECURITY_MANAGER_SUCCESS);
101     void setUid(const uid_t uid, lib_retcode expectedresult = SECURITY_MANAGER_SUCCESS);
102     void setInstallType(const enum app_install_type &type, lib_retcode expectedResult = SECURITY_MANAGER_SUCCESS);
103
104     //app_inst_req *get() { return m_req; }
105     const path_req *get() const { return m_req; }
106     friend std::ostream& operator<<(std::ostream &, const PathsRequest&);
107
108 private:
109     path_req *m_req;
110
111     std::string m_pkgId;
112     std::vector<std::pair<std::string, app_install_path_type> > m_paths;
113     std::pair<bool, uid_t> m_uid;
114 };
115
116 std::ostream& operator<<(std::ostream &os, const SecurityManagerTest::PathsRequest &request);
117
118 } // namespace SecurityManagerTest
119
120 #endif // SECURITY_MANAGER_TEST_INSTALLREQUEST