Group privilege check refactoring
[platform/core/test/security-tests.git] / src / security-manager-tests / common / app_install_helper_ext.h
1 /*
2  * Copyright (c) 2020 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 #pragma once
17
18 #include <sys/types.h>
19
20 #include <vector>
21
22 #include <app_install_helper.h>
23 #include <template_parser.h>
24 #include <app_def_privilege.h>
25
26 namespace SecurityManagerTest {
27
28 class AppInstallHelperExt : public AppInstallHelper {
29 public:
30     using AppInstallHelper::AppInstallHelper;
31
32     void checkPrivileges(const PrivilegeVector &allowedPrivs,
33                          const PrivilegeVector &deniedPrivs) const;
34     void checkDeniedPrivileges(const PrivilegeVector &deniedPrivs) const;
35     void checkGroupPrivileges(const PrivilegeVector &allowedPrivs) const;
36     void checkSmackPrivileges(const PrivilegeVector &allowedPrivs,
37                               const PrivilegeVector &deniedPrivs = {}) const;
38     void checkAfterInstall() const;
39     void checkAfterUninstall(bool removePkg = true) const;
40
41     void checkSmackAccesses(std::vector<AccessRequest> rules, bool hasAccess = true) const;
42
43 private:
44     void checkPkgSmackRulesAfterUninstall() const;
45     void checkHybridAppSmackRulesAterUninstall() const;
46     void checkAppIdExistence(bool expected) const;
47 };
48
49 } // namespace SecurityManagerTest