Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 16
0.00% covered (danger)
0.00%
0 / 5
CRAP
0.00% covered (danger)
0.00%
0 / 1
QtiTestDeliveryContainer
0.00% covered (danger)
0.00%
0 / 16
0.00% covered (danger)
0.00%
0 / 5
30
0.00% covered (danger)
0.00%
0 / 1
 setRuntimeParams
0.00% covered (danger)
0.00%
0 / 4
0.00% covered (danger)
0.00%
0 / 1
2
 getSourceTest
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 getPublicDirId
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 getPrivateDirId
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 getExecutionContainer
0.00% covered (danger)
0.00%
0 / 9
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) 2016 (original work) Open Assessment Technologies SA;
19 */
20
21namespace oat\taoQtiTest\models\container;
22
23use oat\taoDelivery\model\container\delivery\AbstractContainer;
24use oat\taoDelivery\model\execution\DeliveryExecution;
25use oat\taoDelivery\model\DeliveryContainerService;
26use oat\taoDelivery\model\container\execution\ExecutionClientContainer;
27
28class QtiTestDeliveryContainer extends AbstractContainer
29{
30    private $source;
31    private $private;
32    private $public;
33
34    public function setRuntimeParams($params)
35    {
36        parent::setRuntimeParams($params);
37        $this->source = $params['source'];
38        $this->private = $params['private'];
39        $this->public = $params['public'];
40    }
41
42    public function getSourceTest(DeliveryExecution $execution)
43    {
44        return $this->source;
45    }
46
47    public function getPublicDirId(DeliveryExecution $execution)
48    {
49        return $this->public;
50    }
51
52    public function getPrivateDirId(DeliveryExecution $execution)
53    {
54        return $this->private;
55    }
56
57    public function getExecutionContainer(DeliveryExecution $execution)
58    {
59        $container = new ExecutionClientContainer($execution);
60        $containerService = $this->getServiceLocator()->get(DeliveryContainerService::SERVICE_ID);
61        $container->setData('providers', $containerService->getProviders($execution));
62        $container->setData('plugins', $containerService->getPlugins($execution));
63        $container->setData('bootstrap', $containerService->getBootstrap($execution));
64        $container->setData('serviceCallId', $execution->getIdentifier());
65        $container->setData('deliveryExecution', $execution->getIdentifier());
66        $container->setData('deliveryServerConfig', []);
67
68        return $container;
69    }
70}