Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 11 |
|
0.00% |
0 / 4 |
CRAP | |
0.00% |
0 / 1 |
SecurityFeature | |
0.00% |
0 / 11 |
|
0.00% |
0 / 4 |
56 | |
0.00% |
0 / 1 |
__construct | |
0.00% |
0 / 2 |
|
0.00% |
0 / 1 |
2 | |||
getPluginsIds | |
0.00% |
0 / 7 |
|
0.00% |
0 / 1 |
20 | |||
getLabel | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
getDescription | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 |
1 | <?php |
2 | |
3 | /** |
4 | * This program is free software; you can redistribute it and/or |
5 | * modify it under the terms of the GNU General Public License |
6 | * as published by the Free Software Foundation; under version 2 |
7 | * of the License (non-upgradable). |
8 | * |
9 | * This program is distributed in the hope that it will be useful, |
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
12 | * GNU General Public License for more details. |
13 | * |
14 | * You should have received a copy of the GNU General Public License |
15 | * along with this program; if not, write to the Free Software |
16 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
17 | * |
18 | * Copyright (c) 2018 (original work) Open Assessment Technologies SA; |
19 | * |
20 | */ |
21 | |
22 | namespace oat\taoTests\models\runner\features; |
23 | |
24 | use oat\taoTests\models\runner\plugins\TestPluginService; |
25 | use Zend\ServiceManager\ServiceLocatorAwareInterface; |
26 | use Zend\ServiceManager\ServiceLocatorAwareTrait; |
27 | |
28 | /** |
29 | * Class SecurityFeature |
30 | * @package oat\taoTests\models\runner\features |
31 | * @author Aleh Hutnikau, <hutnikau@1pt.com> |
32 | * @deprecated |
33 | */ |
34 | class SecurityFeature extends TestRunnerFeature implements ServiceLocatorAwareInterface |
35 | { |
36 | use ServiceLocatorAwareTrait; |
37 | |
38 | public const FEATURE_ID = 'security'; |
39 | |
40 | public function __construct() |
41 | { |
42 | $this->id = self::FEATURE_ID; |
43 | $this->isEnabledByDefault = true; |
44 | } |
45 | |
46 | /** |
47 | * @return string[] |
48 | */ |
49 | public function getPluginsIds() |
50 | { |
51 | if ($this->pluginsIds === null) { |
52 | $testPluginService = $this->getServiceLocator()->get(TestPluginService::SERVICE_ID); |
53 | $this->pluginsIds = []; |
54 | foreach ($testPluginService->getAllPlugins() as $plugin) { |
55 | if ($plugin->getCategory() === 'security') { |
56 | $this->pluginsIds[] = $plugin->getId(); |
57 | } |
58 | } |
59 | } |
60 | return $this->pluginsIds; |
61 | } |
62 | |
63 | /** |
64 | * @inheritdoc |
65 | */ |
66 | public function getLabel() |
67 | { |
68 | return __('Security plugins'); |
69 | } |
70 | |
71 | /** |
72 | * @inheritdoc |
73 | */ |
74 | public function getDescription() |
75 | { |
76 | return __('Set of plugins with \'security\' category'); |
77 | } |
78 | } |