Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 17
0.00% covered (danger)
0.00%
0 / 1
CRAP
0.00% covered (danger)
0.00%
0 / 1
ResultTestVariableTransmissionTask
0.00% covered (danger)
0.00%
0 / 17
0.00% covered (danger)
0.00%
0 / 1
12
0.00% covered (danger)
0.00%
0 / 1
 __invoke
0.00% covered (danger)
0.00%
0 / 17
0.00% covered (danger)
0.00%
0 / 1
12
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
21declare(strict_types=1);
22
23namespace oat\taoQtiTest\models\classes\tasks\ResultTransmission;
24
25use oat\oatbox\reporting\Report;
26use oat\tao\model\taskQueue\Task\TaskAwareInterface;
27use oat\tao\model\taskQueue\Task\TaskAwareTrait;
28use oat\taoQtiTest\models\classes\tasks\ResultTransmission\Exception\ResultTransmissionTaskValidationException;
29use taoResultServer_models_classes_Variable;
30
31class ResultTestVariableTransmissionTask extends AbstractResultTransmissionTask implements TaskAwareInterface
32{
33    use TaskAwareTrait;
34
35    protected const REQUIRED_PARAMS = [
36        self::EXECUTION_ID_PARAMETER_KEY,
37        self::VARIABLES_PARAMETER_KEY,
38        self::TRANSMISSION_ID_PARAMETER_KEY,
39    ];
40
41    public function __invoke($params): Report
42    {
43        try {
44            $this->validateParams($params);
45        } catch (ResultTransmissionTaskValidationException $e) {
46            $this->getLogger()->error($e->getMessage(), ['exception' => $e]);
47            return Report::createError($e->getMessage());
48        }
49
50        try {
51            $this->buildTransmitter($params[self::EXECUTION_ID_PARAMETER_KEY])->transmitTestVariable(
52                $this->unpackVariables($params[self::VARIABLES_PARAMETER_KEY]),
53                $params[self::TRANSMISSION_ID_PARAMETER_KEY],
54                $params[self::TEST_URI_PARAMETER_KEY] ?? ''
55            );
56        } catch (\taoQtiCommon_helpers_ResultTransmissionException $e) {
57            $this->getLogger()->error($e->getMessage(), ['exception' => $e]);
58            return Report::createError("Result test variable transmission problem, check logs for details");
59        }
60
61        $this->getLogger()->info(sprintf(
62            'Result test variable successfully transmitted for deliver execution - %s',
63            $params[self::EXECUTION_ID_PARAMETER_KEY]
64        ));
65        return Report::createSuccess("Result item transmission succeeded");
66    }
67}