Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
80.00% covered (warning)
80.00%
24 / 30
33.33% covered (danger)
33.33%
1 / 3
CRAP
0.00% covered (danger)
0.00%
0 / 1
TestCreationListener
80.00% covered (warning)
80.00%
24 / 30
33.33% covered (danger)
33.33%
1 / 3
14.35
0.00% covered (danger)
0.00%
0 / 1
 __construct
100.00% covered (success)
100.00%
4 / 4
100.00% covered (success)
100.00%
1 / 1
1
 populateUniqueId
94.74% covered (success)
94.74%
18 / 19
0.00% covered (danger)
0.00%
0 / 1
7.01
 getEventTest
28.57% covered (danger)
28.57%
2 / 7
0.00% covered (danger)
0.00%
0 / 1
14.11
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) 2024 (original work) Open Assessment Technologies SA.
19 */
20
21declare(strict_types=1);
22
23namespace oat\taoQtiTest\models\UniqueId\Listener;
24
25use core_kernel_classes_Resource;
26use InvalidArgumentException;
27use oat\generis\model\data\Ontology;
28use oat\oatbox\event\Event;
29use oat\tao\model\featureFlag\FeatureFlagCheckerInterface;
30use oat\tao\model\IdentifierGenerator\Generator\IdentifierGeneratorInterface;
31use oat\tao\model\resources\Event\InstanceCopiedEvent;
32use oat\tao\model\TaoOntology;
33use oat\tao\model\Translation\Service\AbstractQtiIdentifierSetter;
34use oat\taoQtiTest\models\classes\event\TestImportedEvent;
35use oat\taoQtiTest\models\Qti\Identifier\Service\QtiIdentifierSetter;
36use oat\taoTests\models\event\TestCreatedEvent;
37use oat\taoTests\models\event\TestDuplicatedEvent;
38
39class TestCreationListener
40{
41    private FeatureFlagCheckerInterface $featureFlagChecker;
42    private Ontology $ontology;
43    private IdentifierGeneratorInterface $identifierGenerator;
44    private QtiIdentifierSetter $qtiIdentifierSetter;
45
46    public function __construct(
47        FeatureFlagCheckerInterface $featureFlagChecker,
48        Ontology $ontology,
49        IdentifierGeneratorInterface $identifierGenerator,
50        QtiIdentifierSetter $qtiIdentifierSetter
51    ) {
52        $this->featureFlagChecker = $featureFlagChecker;
53        $this->ontology = $ontology;
54        $this->identifierGenerator = $identifierGenerator;
55        $this->qtiIdentifierSetter = $qtiIdentifierSetter;
56    }
57
58    public function populateUniqueId(Event $event): void
59    {
60        if (
61            !$event instanceof TestCreatedEvent
62            && !$event instanceof TestDuplicatedEvent
63            && !$event instanceof TestImportedEvent
64            && !$event instanceof InstanceCopiedEvent
65        ) {
66            return;
67        }
68
69        if (!$this->featureFlagChecker->isEnabled('FEATURE_FLAG_UNIQUE_NUMERIC_QTI_IDENTIFIER')) {
70            return;
71        }
72
73        $test = $this->getEventTest($event);
74
75        if ($test->getRootId() !== TaoOntology::CLASS_URI_TEST) {
76            return;
77        }
78
79        $identifier = $this->identifierGenerator->generate([IdentifierGeneratorInterface::OPTION_RESOURCE => $test]);
80
81        $test->editPropertyValues(
82            $this->ontology->getProperty(TaoOntology::PROPERTY_UNIQUE_IDENTIFIER),
83            $identifier
84        );
85        $this->qtiIdentifierSetter->set([
86            AbstractQtiIdentifierSetter::OPTION_RESOURCE => $test,
87            AbstractQtiIdentifierSetter::OPTION_IDENTIFIER => $identifier,
88        ]);
89    }
90
91    private function getEventTest(Event $event): core_kernel_classes_Resource
92    {
93        if ($event instanceof TestCreatedEvent || $event instanceof TestImportedEvent) {
94            return $this->ontology->getResource($event->getTestUri());
95        }
96
97        if ($event instanceof TestDuplicatedEvent) {
98            return $this->ontology->getResource($event->getCloneUri());
99        }
100
101        if ($event instanceof InstanceCopiedEvent) {
102            return $this->ontology->getResource($event->getInstanceUri());
103        }
104
105        throw new InvalidArgumentException('Cannot retrieve event test: event %s is not supported', get_class($event));
106    }
107}