WAE: API changed due to changed installer cred
[platform/core/test/security-tests.git] / src / security-manager-tests / common / sm_request.h
1 /*
2  * Copyright (c) 2014-2016 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
28 namespace SecurityManagerTest {
29
30 class InstallRequest
31 {
32 public:
33     InstallRequest();
34     InstallRequest(const InstallRequest&) = delete;
35     InstallRequest& operator=(const InstallRequest&) = delete;
36     ~InstallRequest();
37
38     void setAppTizenVersion(std::string tizenVer,
39             lib_retcode expectedresult = SECURITY_MANAGER_SUCCESS);
40     void setAppId(std::string appId, lib_retcode expectedresult = SECURITY_MANAGER_SUCCESS);
41     void setPkgId(std::string pkgId, lib_retcode expectedresult = SECURITY_MANAGER_SUCCESS);
42     void addPrivilege(const char *privilege, lib_retcode expectedresult = SECURITY_MANAGER_SUCCESS);
43     void addPath(std::string path, app_install_path_type pathType,
44                  lib_retcode expectedResult = SECURITY_MANAGER_SUCCESS);
45     void setUid(const uid_t uid, lib_retcode expectedresult = SECURITY_MANAGER_SUCCESS);
46     void setAuthorId(std::string authorId, lib_retcode expectedResult= SECURITY_MANAGER_SUCCESS);
47
48     std::string getAppTizenVersion() const { return m_tizenVer; }
49     app_inst_req *get() { return m_req; }
50     const app_inst_req *get() const { return m_req; }
51     friend std::ostream& operator<<(std::ostream &, const InstallRequest&);
52
53 private:
54     app_inst_req *m_req;
55
56     std::string m_tizenVer;
57     std::string m_appId;
58     std::string m_pkgId;
59     std::string m_authorId;
60     std::vector<std::string> m_privileges;
61     std::vector<std::pair<std::string, app_install_path_type> > m_paths;
62     std::pair<bool, uid_t> m_uid;
63 };
64
65 std::ostream& operator<<(std::ostream &os, const SecurityManagerTest::InstallRequest &request);
66
67 } // namespace SecurityManagerTest
68
69 #endif // SECURITY_MANAGER_TEST_INSTALLREQUEST