Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 13 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 1 |
FinishDeliveryExecutionsService | |
0.00% |
0 / 13 |
|
0.00% |
0 / 1 |
20 | |
0.00% |
0 / 1 |
action | |
0.00% |
0 / 13 |
|
0.00% |
0 / 1 |
20 |
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) 2018 (original work) Open Assessment Technologies SA; |
19 | */ |
20 | |
21 | namespace oat\taoProctoring\model; |
22 | |
23 | use oat\taoProctoring\model\execution\DeliveryExecutionsUpdater; |
24 | use common_report_Report as Report; |
25 | use oat\taoProctoring\model\implementation\TestSessionService; |
26 | |
27 | class FinishDeliveryExecutionsService extends DeliveryExecutionsUpdater |
28 | { |
29 | public const SERVICE_ID = 'taoProctoring/FinishDeliveryExecutions'; |
30 | |
31 | /** |
32 | * @param $deliveryExecution |
33 | * @param $executionId |
34 | * @param bool $isEndDate |
35 | * @return mixed|void |
36 | * @throws \common_exception_Error |
37 | * @throws \common_exception_MissingParameter |
38 | * @throws \qtism\runtime\tests\AssessmentTestSessionException |
39 | */ |
40 | protected function action($deliveryExecution, $executionId, $isEndDate = false) |
41 | { |
42 | /** @var TestSessionService $testSessionService */ |
43 | $testSessionService = $this->getServiceLocator()->get(TestSessionService::SERVICE_ID); |
44 | $testSession = $testSessionService->getTestSession($deliveryExecution); |
45 | // To calculate all TestVariables |
46 | if ($testSession && $testSession->isRunning()) { |
47 | $testSession->endTestSession(); |
48 | } |
49 | |
50 | $this->getDeliveryStateService()->finish($deliveryExecution, [ |
51 | 'reasons' => [ |
52 | 'category' => 'Technical' |
53 | ], |
54 | 'comment' => $isEndDate |
55 | ? 'The assessment was automatically finished because end time expired.' |
56 | : 'The assessment was automatically finished.' |
57 | ]); |
58 | $this->report->add(Report::createSuccess('Execution finished with success: ' . $executionId)); |
59 | } |
60 | } |