Merge branch 'tizen' into security-manager
[platform/core/test/security-tests.git] / src / security-manager-tests / common / sm_request.h
1 /*
2  * Copyright (c) 2014 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 setAppId(const char *appId, lib_retcode expectedresult = SECURITY_MANAGER_SUCCESS);
39     void setPkgId(const char *pkgId, lib_retcode expectedresult = SECURITY_MANAGER_SUCCESS);
40     void addPrivilege(const char *privilege, lib_retcode expectedresult = SECURITY_MANAGER_SUCCESS);
41     void addPath(const char *path, app_install_path_type pathType,
42                  lib_retcode expectedResult = SECURITY_MANAGER_SUCCESS);
43     void setUid(const uid_t uid, lib_retcode expectedresult = SECURITY_MANAGER_SUCCESS);
44
45     const app_inst_req *get() const { return m_req; }
46     friend std::ostream& operator<<(std::ostream &, const InstallRequest&);
47
48 private:
49     app_inst_req *m_req;
50
51     const char *m_appId;
52     const char *m_pkgId;
53     std::vector<std::string> m_privileges;
54     std::vector<std::pair<std::string, app_install_path_type> > m_paths;
55     std::pair<bool, uid_t> m_uid;
56 };
57
58 std::ostream& operator<<(std::ostream &os, const SecurityManagerTest::InstallRequest &request);
59
60 } // namespace SecurityManagerTest
61
62 #endif // SECURITY_MANAGER_TEST_INSTALLREQUEST