Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 11 |
|
0.00% |
0 / 4 |
CRAP | |
0.00% |
0 / 1 |
ValidationException | |
0.00% |
0 / 11 |
|
0.00% |
0 / 4 |
30 | |
0.00% |
0 / 1 |
__construct | |
0.00% |
0 / 3 |
|
0.00% |
0 / 1 |
2 | |||
getFilename | |
0.00% |
0 / 4 |
|
0.00% |
0 / 1 |
6 | |||
getReport | |
0.00% |
0 / 3 |
|
0.00% |
0 / 1 |
2 | |||
getSeverity | |
0.00% |
0 / 1 |
|
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) 2015 (original work) Open Assessment Technologies SA; |
19 | * |
20 | */ |
21 | |
22 | namespace oat\taoQtiItem\model\qti\parser; |
23 | |
24 | use common_Exception; |
25 | use common_Logger; |
26 | use common_report_Report; |
27 | use oat\oatbox\filesystem\File; |
28 | |
29 | class ValidationException extends common_Exception |
30 | { |
31 | private $errors; |
32 | private $xmlFile; |
33 | |
34 | /** |
35 | * @param string|File $file |
36 | * @param array $errors |
37 | */ |
38 | public function __construct($file, $errors) |
39 | { |
40 | $this->errors = $errors; |
41 | $this->xmlFile = $file; |
42 | |
43 | parent::__construct('Failed to validate ' . $this->getFilename()); |
44 | } |
45 | |
46 | /** |
47 | * return string |
48 | */ |
49 | private function getFilename() |
50 | { |
51 | $filename = $this->xmlFile; |
52 | if ($this->xmlFile instanceof File) { |
53 | $filename = $this->xmlFile->getBasename(); |
54 | } |
55 | return $filename; |
56 | } |
57 | |
58 | /** |
59 | * @return common_report_Report |
60 | */ |
61 | public function getReport() |
62 | { |
63 | return common_report_Report::createFailure( |
64 | __("Malformed XML[%s]:\n%s", $this->getFilename(), implode("\n", $this->errors)) |
65 | ); |
66 | } |
67 | |
68 | /** |
69 | * @return int |
70 | */ |
71 | public function getSeverity() |
72 | { |
73 | return common_Logger::ERROR_LEVEL; |
74 | } |
75 | } |