Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
100.00% |
19 / 19 |
|
100.00% |
2 / 2 |
CRAP | |
100.00% |
1 / 1 |
DependencyRepositoryContext | |
100.00% |
19 / 19 |
|
100.00% |
2 / 2 |
5 | |
100.00% |
1 / 1 |
getSupportedParameters | |
100.00% |
4 / 4 |
|
100.00% |
1 / 1 |
1 | |||
validateParameter | |
100.00% |
15 / 15 |
|
100.00% |
1 / 1 |
4 |
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) 2021 (original work) Open Assessment Technologies SA; |
19 | */ |
20 | |
21 | declare(strict_types=1); |
22 | |
23 | namespace oat\tao\model\Lists\Business\Domain; |
24 | |
25 | use InvalidArgumentException; |
26 | use oat\tao\model\Context\AbstractContext; |
27 | |
28 | class DependencyRepositoryContext extends AbstractContext |
29 | { |
30 | public const PARAM_LIST_URIS = 'list_uris'; |
31 | public const PARAM_DEPENDENCY_LIST_VALUES = 'dependency_list_values'; |
32 | |
33 | protected function getSupportedParameters(): array |
34 | { |
35 | return [ |
36 | self::PARAM_LIST_URIS, |
37 | self::PARAM_DEPENDENCY_LIST_VALUES, |
38 | ]; |
39 | } |
40 | |
41 | protected function validateParameter(string $parameter, $parameterValue): void |
42 | { |
43 | if (!is_array($parameterValue)) { |
44 | throw new InvalidArgumentException( |
45 | sprintf( |
46 | 'Context parameter %s is not valid. It should be an array.', |
47 | $parameter |
48 | ) |
49 | ); |
50 | } |
51 | |
52 | foreach ($parameterValue as $value) { |
53 | if (!is_string($value)) { |
54 | throw new InvalidArgumentException( |
55 | sprintf( |
56 | 'Context parameter %s is not valid. The values must be a string.', |
57 | $parameter |
58 | ) |
59 | ); |
60 | } |
61 | } |
62 | } |
63 | } |