Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
84.44% covered (warning)
84.44%
38 / 45
86.67% covered (warning)
86.67%
13 / 15
CRAP
0.00% covered (danger)
0.00%
0 / 1
ImportResult
84.44% covered (warning)
84.44%
38 / 45
86.67% covered (warning)
86.67%
13 / 15
23.82
0.00% covered (danger)
0.00%
0 / 1
 __construct
100.00% covered (success)
100.00%
9 / 9
100.00% covered (success)
100.00%
1 / 1
1
 getHeaderErrors
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 getWarnings
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 getErrors
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 getWarningsAndErrors
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 getTotalHeaderErrors
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 getTotalWarnings
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 getTotalErrors
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 getTotalScannedRecords
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 increaseTotalScannedRecords
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 getTotalImportedRecords
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 increaseTotalImportedRecords
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 addException
60.00% covered (warning)
60.00%
3 / 5
0.00% covered (danger)
0.00%
0 / 1
3.58
 addAggregatedException
0.00% covered (danger)
0.00%
0 / 5
0.00% covered (danger)
0.00%
0 / 1
12
 addInternalException
100.00% covered (success)
100.00%
15 / 15
100.00% covered (success)
100.00%
1 / 1
4
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) 2022 (original work) Open Assessment Technologies SA.
19 */
20
21declare(strict_types=1);
22
23namespace oat\tao\model\StatisticalMetadata\Import\Result;
24
25use Throwable;
26use oat\tao\model\StatisticalMetadata\Import\Exception\ErrorValidationException;
27use oat\tao\model\StatisticalMetadata\Import\Exception\HeaderValidationException;
28use oat\tao\model\StatisticalMetadata\Import\Exception\WarningValidationException;
29use oat\tao\model\StatisticalMetadata\Import\Exception\AbstractValidationException;
30use oat\tao\model\StatisticalMetadata\Import\Exception\AggregatedValidationException;
31
32class ImportResult
33{
34    /** @var HeaderValidationException[] */
35    private $headerErrors;
36
37    /** @var WarningValidationException[] */
38    private $warnings;
39
40    /** @var ErrorValidationException[] */
41    private $errors;
42
43    /** @var WarningValidationException[] */
44    private $warningsAndErrors;
45
46    /** @var int */
47    private $totalHeaderErrors;
48
49    /** @var int */
50    private $totalWarnings;
51
52    /** @var int */
53    private $totalErrors;
54
55    /** @var int */
56    private $totalScannedRecords;
57
58    /** @var int */
59    private $totalImportedRecords;
60
61    public function __construct()
62    {
63        $this->headerErrors = [];
64        $this->warnings = [];
65        $this->errors = [];
66        $this->warningsAndErrors = [];
67        $this->totalHeaderErrors = 0;
68        $this->totalWarnings = 0;
69        $this->totalErrors = 0;
70        $this->totalScannedRecords = 0;
71        $this->totalImportedRecords = 0;
72    }
73
74    public function getHeaderErrors(): array
75    {
76        return $this->headerErrors;
77    }
78
79    public function getWarnings(): array
80    {
81        return $this->warnings;
82    }
83
84    public function getErrors(): array
85    {
86        return $this->errors;
87    }
88
89    public function getWarningsAndErrors(): array
90    {
91        return $this->warningsAndErrors;
92    }
93
94    public function getTotalHeaderErrors(): int
95    {
96        return $this->totalHeaderErrors;
97    }
98
99    public function getTotalWarnings(): int
100    {
101        return $this->totalWarnings;
102    }
103
104    public function getTotalErrors(): int
105    {
106        return $this->totalErrors;
107    }
108
109    public function getTotalScannedRecords(): int
110    {
111        return $this->totalScannedRecords;
112    }
113
114    public function increaseTotalScannedRecords(): void
115    {
116        ++$this->totalScannedRecords;
117    }
118
119    public function getTotalImportedRecords(): int
120    {
121        return $this->totalImportedRecords;
122    }
123
124    public function increaseTotalImportedRecords(): void
125    {
126        ++$this->totalImportedRecords;
127    }
128
129    public function addException(int $line, Throwable $exception): self
130    {
131        if ($exception instanceof AggregatedValidationException) {
132            return $this->addAggregatedException($line, $exception);
133        }
134
135        if ($exception instanceof AbstractValidationException) {
136            return $this->addInternalException($line, $exception);
137        }
138
139        return $this->addInternalException($line, new ErrorValidationException($exception->getMessage()));
140    }
141
142    private function addAggregatedException(int $line, AggregatedValidationException $exception): self
143    {
144        foreach ($exception->getWarnings() as $warningException) {
145            $this->addInternalException($line, $warningException);
146        }
147
148        foreach ($exception->getErrors() as $errorException) {
149            $this->addInternalException($line, $errorException);
150        }
151
152        return $this;
153    }
154
155    private function addInternalException(int $line, AbstractValidationException $exception): self
156    {
157        $this->warningsAndErrors[$line] = $this->warningsAndErrors[$line] ?? [];
158        $this->warningsAndErrors[$line][] = $exception;
159
160        if ($exception instanceof HeaderValidationException) {
161            ++$this->totalHeaderErrors;
162
163            $this->headerErrors[$line] = $this->headerErrors[$line] ?? [];
164            $this->headerErrors[$line][] = $exception;
165        }
166
167        if ($exception instanceof WarningValidationException) {
168            ++$this->totalWarnings;
169
170            $this->warnings[$line] = $this->warnings[$line] ?? [];
171            $this->warnings[$line][] = $exception;
172        }
173
174        if ($exception instanceof ErrorValidationException) {
175            ++$this->totalErrors;
176
177            $this->errors[$line] = $this->errors[$line] ?? [];
178            $this->errors[$line][] = $exception;
179        }
180
181        return $this;
182    }
183}