Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
21.74% covered (danger)
21.74%
10 / 46
40.00% covered (danger)
40.00%
6 / 15
CRAP
0.00% covered (danger)
0.00%
0 / 1
DefaultConfigurationRegistry
21.74% covered (danger)
21.74%
10 / 46
40.00% covered (danger)
40.00%
6 / 15
173.30
0.00% covered (danger)
0.00%
0 / 1
 setPartIdPrefix
0.00% covered (danger)
0.00%
0 / 2
0.00% covered (danger)
0.00%
0 / 1
2
 getPartIdPrefix
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 setSectionIdPrefix
0.00% covered (danger)
0.00%
0 / 2
0.00% covered (danger)
0.00%
0 / 1
2
 getSectionIdPrefix
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 setSectionTitlePrefix
0.00% covered (danger)
0.00%
0 / 2
0.00% covered (danger)
0.00%
0 / 1
2
 getSectionTitlePrefix
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 setCategories
0.00% covered (danger)
0.00%
0 / 4
0.00% covered (danger)
0.00%
0 / 1
2
 getCategories
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 setNavigationMode
0.00% covered (danger)
0.00%
0 / 10
0.00% covered (danger)
0.00%
0 / 1
6
 getNavigationMode
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 setSubmissionMode
0.00% covered (danger)
0.00%
0 / 10
0.00% covered (danger)
0.00%
0 / 1
6
 getSubmissionMode
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 setMaxAttempts
0.00% covered (danger)
0.00%
0 / 2
0.00% covered (danger)
0.00%
0 / 1
2
 getMaxAttempts
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 getConfigurationValue
57.14% covered (warning)
57.14%
4 / 7
0.00% covered (danger)
0.00%
0 / 1
2.31
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) 2020 (original work) Open Assessment Technologies SA;
19 *
20 * @author Sergei Mikhailov <sergei.mikhailov@taotesting.com>
21 */
22
23declare(strict_types=1);
24
25namespace oat\taoQtiTest\models\test\Template;
26
27use DomainException;
28use InvalidArgumentException;
29use oat\tao\model\ClientLibConfigRegistry;
30use qtism\data\NavigationMode;
31use qtism\data\SubmissionMode;
32
33class DefaultConfigurationRegistry extends ClientLibConfigRegistry
34{
35    public const ID = 'taoQtiTest/controller/creator/config/defaults';
36
37    public function setPartIdPrefix(string $partIdPrefix): self
38    {
39        $this->register(static::ID, compact('partIdPrefix'));
40
41        return $this;
42    }
43
44    public function getPartIdPrefix(): string
45    {
46        return $this->getConfigurationValue(__FUNCTION__);
47    }
48
49    public function setSectionIdPrefix(string $sectionIdPrefix): self
50    {
51        $this->register(static::ID, compact('sectionIdPrefix'));
52
53        return $this;
54    }
55
56    public function getSectionIdPrefix(): string
57    {
58        return $this->getConfigurationValue(__FUNCTION__);
59    }
60
61    public function setSectionTitlePrefix(string $sectionTitlePrefix): self
62    {
63        $this->register(static::ID, compact('sectionTitlePrefix'));
64
65        return $this;
66    }
67
68    public function getSectionTitlePrefix(): string
69    {
70        return $this->getConfigurationValue(__FUNCTION__);
71    }
72
73    public function setCategories(array $categories): self
74    {
75        $configuration = $this->get(static::ID);
76        $configuration['categories'] = $categories;
77
78        $this->set(static::ID, $configuration);
79
80        return $this;
81    }
82
83    public function getCategories(): array
84    {
85        return $this->getConfigurationValue(__FUNCTION__);
86    }
87
88    public function setNavigationMode(int $navigationMode): self
89    {
90        if (!in_array($navigationMode, NavigationMode::asArray(), true)) {
91            throw new InvalidArgumentException(
92                sprintf(
93                    'Expected one of the following values %s, %d given.',
94                    implode(', ', NavigationMode::asArray()),
95                    $navigationMode
96                )
97            );
98        }
99
100        $this->register(static::ID, compact('navigationMode'));
101
102        return $this;
103    }
104
105    public function getNavigationMode(): int
106    {
107        return $this->getConfigurationValue(__FUNCTION__);
108    }
109
110    public function setSubmissionMode(int $submissionMode): self
111    {
112        if (!in_array($submissionMode, SubmissionMode::asArray(), true)) {
113            throw new InvalidArgumentException(
114                sprintf(
115                    'Expected one of the following values %s, %d given.',
116                    implode(', ', SubmissionMode::asArray()),
117                    $submissionMode
118                )
119            );
120        }
121
122        $this->register(static::ID, compact('submissionMode'));
123
124        return $this;
125    }
126
127    public function getSubmissionMode(): int
128    {
129        return $this->getConfigurationValue(__FUNCTION__);
130    }
131
132    public function setMaxAttempts(int $maxAttempts): self
133    {
134        $this->register(static::ID, compact('maxAttempts'));
135
136        return $this;
137    }
138
139    public function getMaxAttempts(): int
140    {
141        return $this->getConfigurationValue(__FUNCTION__);
142    }
143
144    private function getConfigurationValue(string $getter)
145    {
146        $configurationKey = lcfirst(substr($getter, 3));
147
148        $configuration = $this->get(static::ID);
149
150        if (!isset($configuration[$configurationKey])) {
151            throw new DomainException(
152                sprintf('%s::%s value was requested, but not defined.', static::class, $configurationKey)
153            );
154        }
155
156        return $configuration[$configurationKey];
157    }
158}