Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 12 |
|
0.00% |
0 / 4 |
CRAP | |
0.00% |
0 / 1 |
CompilationService | |
0.00% |
0 / 12 |
|
0.00% |
0 / 4 |
30 | |
0.00% |
0 / 1 |
setRubricBlockStyleSheetScoping | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
getCompiler | |
0.00% |
0 / 6 |
|
0.00% |
0 / 1 |
2 | |||
useClientContainer | |
0.00% |
0 / 4 |
|
0.00% |
0 / 1 |
6 | |||
getCompilerClass | |
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) 2013-2017 (original work) Open Assessment Technologies SA (under the project TAO-PRODUCT); |
19 | * |
20 | * |
21 | */ |
22 | |
23 | namespace oat\taoQtiTest\models\compilation; |
24 | |
25 | use oat\oatbox\service\ConfigurableService; |
26 | use oat\taoQtiItem\model\ItemModel; |
27 | use oat\taoQtiItem\model\QtiJsonItemCompiler; |
28 | |
29 | /** |
30 | * TestCompiler factory |
31 | * |
32 | * @access public |
33 | * @author Joel Bout, <joel.bout@tudor.lu> |
34 | * @package taoQtiTest |
35 | */ |
36 | class CompilationService extends ConfigurableService |
37 | { |
38 | /** |
39 | * Boolean option to enable/disable css scoping (enabled by default) |
40 | * @var string |
41 | */ |
42 | public const OPTION_RUBRIC_BLOCK_CSS_SCOPE = 'rubric-block-stylesheet-scoping'; |
43 | |
44 | /** |
45 | * Boolean option to enable/disable client container for testrunner (enabled by default) |
46 | * @var string |
47 | */ |
48 | public const OPTION_CLIENT_TESTRUNNER = 'client-testrunner'; |
49 | |
50 | /** |
51 | * Whenever or not style sheets in rubric blocks should be scoped |
52 | * @param boolean $boolean |
53 | */ |
54 | public function setRubricBlockStyleSheetScoping($boolean) |
55 | { |
56 | $this->setOption(self::OPTION_RUBRIC_BLOCK_CSS_SCOPE, (bool)$boolean); |
57 | } |
58 | |
59 | /** |
60 | * @return \taoQtiTest_models_classes_QtiTestCompiler |
61 | */ |
62 | public function getCompiler($resource, $storage) |
63 | { |
64 | $compilerClass = $this->getCompilerClass(); |
65 | $compiler = new $compilerClass($resource, $storage); |
66 | $this->propagate($compiler); |
67 | $compiler->setCssScoping($this->getOption(self::OPTION_RUBRIC_BLOCK_CSS_SCOPE)); |
68 | $compiler->setClientContainer($this->useClientContainer()); |
69 | return $compiler; |
70 | } |
71 | |
72 | /** |
73 | * Whenever or not to use client container for test runner |
74 | * Fallback determined by qtiItem model extension |
75 | * @return boolean |
76 | */ |
77 | public function useClientContainer() |
78 | { |
79 | if ($this->hasOption(self::OPTION_CLIENT_TESTRUNNER)) { |
80 | return $this->getOption(self::OPTION_CLIENT_TESTRUNNER); |
81 | } else { |
82 | // fallback to taoQtiItem config |
83 | $itemModel = $this->getServiceLocator()->get(ItemModel::SERVICE_ID); |
84 | return $itemModel->getCompilerClass() == QtiJsonItemCompiler::class; |
85 | } |
86 | } |
87 | |
88 | /** |
89 | * Class to use for the compiler object, should not need to be exposed anymore |
90 | * @deprecated |
91 | * @return string |
92 | */ |
93 | public function getCompilerClass() |
94 | { |
95 | return \taoQtiTest_models_classes_QtiTestCompiler::class; |
96 | } |
97 | } |