Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 13
0.00% covered (danger)
0.00%
0 / 3
CRAP
0.00% covered (danger)
0.00%
0 / 1
taoTests_models_classes_CrudTestsService
0.00% covered (danger)
0.00%
0 / 13
0.00% covered (danger)
0.00%
0 / 3
30
0.00% covered (danger)
0.00%
0 / 1
 getClassService
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 delete
0.00% covered (danger)
0.00%
0 / 2
0.00% covered (danger)
0.00%
0 / 1
2
 createFromArray
0.00% covered (danger)
0.00%
0 / 10
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) 2013-2014 (original work) Open Assessment Technologies SA
19 *
20 */
21
22use oat\generis\model\OntologyRdf;
23use oat\generis\model\OntologyRdfs;
24
25/**
26 * Crud services implements basic CRUD services, orginally intended for
27 * REST controllers/ HTTP exception handlers .
28 *
29 * Consequently the signatures and behaviors is closer to REST and throwing HTTP like exceptions
30 *
31 * @author Patrick Plichart, patrick@taotesting.com
32 *
33 */
34class taoTests_models_classes_CrudTestsService extends tao_models_classes_CrudService
35{
36    /** (non-PHPdoc)
37     * @see tao_models_classes_CrudService::getClassService()
38     */
39    protected function getClassService()
40    {
41        return taoTests_models_classes_TestsService::singleton();
42    }
43
44    /**
45     * (non-PHPdoc)
46     * @see tao_models_classes_CrudService::delete()
47     */
48    public function delete($resource)
49    {
50        $this->getClassService()->deleteTest(new core_kernel_classes_Resource($resource));
51        return true;
52    }
53
54    /**
55     *
56     * @author Patrick Plichart, patrick@taotesting.com
57     * @param array $propertiesValues
58     * @return core_kernel_classes_Resource
59     */
60    public function createFromArray(array $propertiesValues)
61    {
62
63        if (!isset($propertiesValues[OntologyRdfs::RDFS_LABEL])) {
64            $propertiesValues[OntologyRdfs::RDFS_LABEL] = "";
65        }
66        $type = isset($propertiesValues[OntologyRdf::RDF_TYPE])
67            ? $propertiesValues[OntologyRdf::RDF_TYPE]
68            : $this->getRootClass();
69        $label = $propertiesValues[OntologyRdfs::RDFS_LABEL];
70        //hmmm
71        unset($propertiesValues[OntologyRdfs::RDFS_LABEL]);
72        unset($propertiesValues[OntologyRdf::RDF_TYPE]);
73        $resource =  parent::create($label, $type, $propertiesValues);
74        return $resource;
75    }
76}