Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 64
0.00% covered (danger)
0.00%
0 / 1
CRAP
0.00% covered (danger)
0.00%
0 / 1
ImportServiceProvider
0.00% covered (danger)
0.00%
0 / 64
0.00% covered (danger)
0.00%
0 / 1
2
0.00% covered (danger)
0.00%
0 / 1
 __invoke
0.00% covered (danger)
0.00%
0 / 64
0.00% covered (danger)
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) 2023 (original work) Open Assessment Technologies SA.
19 */
20
21declare(strict_types=1);
22
23namespace oat\taoResultServer\models\Import;
24
25use oat\generis\model\data\Ontology;
26use oat\generis\model\DependencyInjection\ContainerServiceProviderInterface;
27use oat\oatbox\event\EventManager;
28use oat\tao\model\taskQueue\QueueDispatcher;
29use oat\taoDelivery\model\execution\DeliveryExecutionService;
30use oat\taoDeliveryRdf\model\DeliveryContainerService;
31use oat\taoQtiTest\models\runner\QtiRunnerService;
32use oat\taoResultServer\models\classes\ResultServerService;
33use oat\taoResultServer\models\Import\Factory\ImportResultInputFactory;
34use oat\taoResultServer\models\Import\Factory\QtiResultXmlFactory;
35use oat\taoResultServer\models\Import\Service\QtiResultXmlImporter;
36use oat\taoResultServer\models\Import\Service\DeliveredTestOutcomeDeclarationsService;
37use oat\taoResultServer\models\Import\Service\ResultImporter;
38use oat\taoResultServer\models\Import\Service\SendCalculatedResultService;
39use oat\taoResultServer\models\Import\Task\ResultImportScheduler;
40use oat\taoResultServer\models\Parser\QtiResultParser;
41use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
42use taoQtiTest_models_classes_QtiTestService;
43
44use function Symfony\Component\DependencyInjection\Loader\Configurator\service;
45
46class ImportServiceProvider implements ContainerServiceProviderInterface
47{
48    public function __invoke(ContainerConfigurator $configurator): void
49    {
50        $services = $configurator->services();
51
52        $services->set(QtiResultXmlFactory::class, QtiResultXmlFactory::class)
53            ->public()
54            ->args(
55                [
56                    service(Ontology::SERVICE_ID),
57                    service(ResultServerService::SERVICE_ID)
58                ]
59            );
60
61        $services->set(QtiResultXmlImporter::class, QtiResultXmlImporter::class)
62            ->public()
63            ->args(
64                [
65                    service(Ontology::SERVICE_ID),
66                    service(ResultServerService::SERVICE_ID),
67                    service(QtiResultXmlFactory::class),
68                    service(QtiResultParser::class),
69                    service(taoQtiTest_models_classes_QtiTestService::class),
70                    service(DeliveryExecutionService::SERVICE_ID),
71                ]
72            );
73
74        $services->set(ResultImporter::class, ResultImporter::class)
75            ->public()
76            ->args(
77                [
78                    service(Ontology::SERVICE_ID),
79                    service(ResultServerService::SERVICE_ID),
80                    service(DeliveryExecutionService::SERVICE_ID),
81                ]
82            );
83
84        $services->set(ResultImportScheduler::class, ResultImportScheduler::class)
85            ->public()
86            ->args(
87                [
88                    service(QueueDispatcher::SERVICE_ID),
89                    service(ImportResultInputFactory::class),
90                ]
91            );
92
93
94        $services->set(DeliveredTestOutcomeDeclarationsService::class, DeliveredTestOutcomeDeclarationsService::class)
95            ->public()
96            ->args(
97                [
98
99                    service(QtiRunnerService::SERVICE_ID),
100                    service(DeliveryExecutionService::SERVICE_ID),
101                    service(DeliveryContainerService::SERVICE_ID),
102                ]
103            );
104
105        $services->set(SendCalculatedResultService::class, SendCalculatedResultService::class)
106            ->public()
107            ->args(
108                [
109                    service(ResultServerService::SERVICE_ID),
110                    service(EventManager::SERVICE_ID),
111                    service(DeliveryExecutionService::SERVICE_ID),
112                    service(DeliveredTestOutcomeDeclarationsService::class),
113                ]
114            );
115
116
117        $services->set(ImportResultInputFactory::class, ImportResultInputFactory::class)
118            ->public()
119            ->args(
120                [
121                    service(DeliveryExecutionService::SERVICE_ID),
122                ]
123            );
124    }
125}