FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
phpunit-wrapper/src/NonFinal/JUnit.php at 9.0 · Codeception/phpunit-wrapper · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
This repository was archived by the owner on Mar 12, 2025. It is now read-only.
Codeception
/
phpunit-wrapper
Public archive
Notifications
You must be signed in to change notification settings
Fork
30
Star
239
Code
Issues
2
Pull requests
1
Actions
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Security and quality
Insights
Expand file tree
Breadcrumbs
phpunit-wrapper
/
src
/
NonFinal
/
JUnit.php
Copy path
More file actions
More file actions
Latest commit
History
History
History
436 lines (363 loc) · 11.5 KB
Breadcrumbs
phpunit-wrapper
/
src
/
NonFinal
/
JUnit.php
Copy path
File metadata and controls
436 lines (363 loc) · 11.5 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
<?php
declare
(strict_types=
1
);
/*
* This file is part of PHPUnit.
*
* (c) Sebastian Bergmann <sebastian@phpunit.de>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace
Codeception
\
PHPUnit
\
NonFinal
;
use
DOMDocument
;
use
DOMElement
;
use
PHPUnit
\
Framework
\
AssertionFailedError
;
use
PHPUnit
\
Framework
\
ExceptionWrapper
;
use
PHPUnit
\
Framework
\
SelfDescribing
;
use
PHPUnit
\
Framework
\
Test
;
use
PHPUnit
\
Framework
\
TestFailure
;
use
PHPUnit
\
Framework
\
TestListener
;
use
PHPUnit
\
Framework
\
TestSuite
;
use
PHPUnit
\
Framework
\
Warning
;
use
PHPUnit
\
Util
\
Filter
;
use
PHPUnit
\
Util
\
Printer
;
use
PHPUnit
\
Util
\
Xml
;
use
ReflectionClass
;
use
ReflectionException
;
/**
* @internal This class is not covered by the backward compatibility promise for PHPUnit
*/
class
JUnit
extends
Printer
implements
TestListener
{
/**
* @var DOMDocument
*/
protected
$
document
;
/**
* @var DOMElement
*/
protected
$
root
;
/**
* @var bool
*/
protected
$
reportUselessTests
=
false
;
/**
* @var bool
*/
protected
$
writeDocument
=
true
;
/**
* @var DOMElement[]
*/
protected
$
testSuites
= [];
/**
* @var int[]
*/
protected
$
testSuiteTests
= [
0
];
/**
* @var int[]
*/
protected
$
testSuiteAssertions
= [
0
];
/**
* @var int[]
*/
protected
$
testSuiteErrors
= [
0
];
/**
* @var int[]
*/
protected
$
testSuiteFailures
= [
0
];
/**
* @var int[]
*/
protected
$
testSuiteSkipped
= [
0
];
/**
* @var int[]
*/
protected
$
testSuiteTimes
= [
0
];
/**
* @var int
*/
protected
$
testSuiteLevel
=
0
;
/**
* @var DOMElement
*/
protected
$
currentTestCase
;
/**
* Constructor.
*
* @param null|mixed $out
*
* @throws \PHPUnit\Framework\Exception
*/
public
function
__construct
(
$
out
=
null
,
bool
$
reportUselessTests
=
false
)
{
$
this
->
document
=
new
DOMDocument
(
'
1.0
'
,
'
UTF-8
'
);
$
this
->
document
->
formatOutput
=
true
;
$
this
->
root
=
$
this
->
document
->
createElement
(
'
testsuites
'
);
$
this
->
document
->
appendChild
(
$
this
->
root
);
parent
::
__construct
(
$
out
);
$
this
->
reportUselessTests
=
$
reportUselessTests
;
}
/**
* Flush buffer and close output.
*/
public
function
flush
():
void
{
if
(
$
this
->
writeDocument
===
true
) {
$
this
->
write
(
$
this
->
getXML
());
}
parent
::
flush
();
}
/**
* An error occurred.
*
* @throws \InvalidArgumentException
* @throws ReflectionException
*/
public
function
addError
(
Test
$
test
,
\
Throwable
$
t
,
float
$
time
):
void
{
$
this
->
doAddFault
(
$
test
,
$
t
,
$
time
,
'
error
'
);
$
this
->
testSuiteErrors
[
$
this
->
testSuiteLevel
]++;
}
/**
* A warning occurred.
*
* @throws \InvalidArgumentException
* @throws ReflectionException
*/
public
function
addWarning
(
Test
$
test
,
Warning
$
e
,
float
$
time
):
void
{
$
this
->
doAddFault
(
$
test
,
$
e
,
$
time
,
'
warning
'
);
$
this
->
testSuiteFailures
[
$
this
->
testSuiteLevel
]++;
}
/**
* A failure occurred.
*
* @throws \InvalidArgumentException
* @throws ReflectionException
*/
public
function
addFailure
(
Test
$
test
,
AssertionFailedError
$
e
,
float
$
time
):
void
{
$
this
->
doAddFault
(
$
test
,
$
e
,
$
time
,
'
failure
'
);
$
this
->
testSuiteFailures
[
$
this
->
testSuiteLevel
]++;
}
/**
* Incomplete test.
*/
public
function
addIncompleteTest
(
Test
$
test
,
\
Throwable
$
t
,
float
$
time
):
void
{
$
this
->
doAddSkipped
(
$
test
);
}
/**
* Risky test.
*
* @throws ReflectionException
*/
public
function
addRiskyTest
(
Test
$
test
,
\
Throwable
$
t
,
float
$
time
):
void
{
if
(!
$
this
->
reportUselessTests
||
$
this
->
currentTestCase
===
null
) {
return
;
}
$
error
=
$
this
->
document
->
createElement
(
'
error
'
,
Xml::
prepareString
(
"
Risky Test
\n"
.
Filter::
getFilteredStacktrace
(
$
t
)
)
);
$
error
->
setAttribute
(
'
type
'
,
\get_class
(
$
t
));
$
this
->
currentTestCase
->
appendChild
(
$
error
);
$
this
->
testSuiteErrors
[
$
this
->
testSuiteLevel
]++;
}
/**
* Skipped test.
*/
public
function
addSkippedTest
(
Test
$
test
,
\
Throwable
$
t
,
float
$
time
):
void
{
$
this
->
doAddSkipped
(
$
test
);
}
/**
* A testsuite started.
*/
public
function
startTestSuite
(
TestSuite
$
suite
):
void
{
$
testSuite
=
$
this
->
document
->
createElement
(
'
testsuite
'
);
$
testSuite
->
setAttribute
(
'
name
'
,
$
suite
->
getName
());
if
(
\class_exists
(
$
suite
->
getName
(),
false
)) {
try
{
$
class
=
new
ReflectionClass
(
$
suite
->
getName
());
$
testSuite
->
setAttribute
(
'
file
'
,
$
class
->
getFileName
());
}
catch
(
ReflectionException
$
e
) {
}
}
if
(
$
this
->
testSuiteLevel
>
0
) {
$
this
->
testSuites
[
$
this
->
testSuiteLevel
]->
appendChild
(
$
testSuite
);
}
else
{
$
this
->
root
->
appendChild
(
$
testSuite
);
}
$
this
->
testSuiteLevel
++;
$
this
->
testSuites
[
$
this
->
testSuiteLevel
] =
$
testSuite
;
$
this
->
testSuiteTests
[
$
this
->
testSuiteLevel
] =
0
;
$
this
->
testSuiteAssertions
[
$
this
->
testSuiteLevel
] =
0
;
$
this
->
testSuiteErrors
[
$
this
->
testSuiteLevel
] =
0
;
$
this
->
testSuiteFailures
[
$
this
->
testSuiteLevel
] =
0
;
$
this
->
testSuiteSkipped
[
$
this
->
testSuiteLevel
] =
0
;
$
this
->
testSuiteTimes
[
$
this
->
testSuiteLevel
] =
0
;
}
/**
* A testsuite ended.
*/
public
function
endTestSuite
(
TestSuite
$
suite
):
void
{
$
this
->
testSuites
[
$
this
->
testSuiteLevel
]->
setAttribute
(
'
tests
'
,
(
string
)
$
this
->
testSuiteTests
[
$
this
->
testSuiteLevel
]
);
$
this
->
testSuites
[
$
this
->
testSuiteLevel
]->
setAttribute
(
'
assertions
'
,
(
string
)
$
this
->
testSuiteAssertions
[
$
this
->
testSuiteLevel
]
);
$
this
->
testSuites
[
$
this
->
testSuiteLevel
]->
setAttribute
(
'
errors
'
,
(
string
)
$
this
->
testSuiteErrors
[
$
this
->
testSuiteLevel
]
);
$
this
->
testSuites
[
$
this
->
testSuiteLevel
]->
setAttribute
(
'
failures
'
,
(
string
)
$
this
->
testSuiteFailures
[
$
this
->
testSuiteLevel
]
);
$
this
->
testSuites
[
$
this
->
testSuiteLevel
]->
setAttribute
(
'
skipped
'
,
(
string
)
$
this
->
testSuiteSkipped
[
$
this
->
testSuiteLevel
]
);
$
this
->
testSuites
[
$
this
->
testSuiteLevel
]->
setAttribute
(
'
time
'
,
\sprintf
(
'
%F
'
,
$
this
->
testSuiteTimes
[
$
this
->
testSuiteLevel
])
);
if
(
$
this
->
testSuiteLevel
>
1
) {
$
this
->
testSuiteTests
[
$
this
->
testSuiteLevel
-
1
] +=
$
this
->
testSuiteTests
[
$
this
->
testSuiteLevel
];
$
this
->
testSuiteAssertions
[
$
this
->
testSuiteLevel
-
1
] +=
$
this
->
testSuiteAssertions
[
$
this
->
testSuiteLevel
];
$
this
->
testSuiteErrors
[
$
this
->
testSuiteLevel
-
1
] +=
$
this
->
testSuiteErrors
[
$
this
->
testSuiteLevel
];
$
this
->
testSuiteFailures
[
$
this
->
testSuiteLevel
-
1
] +=
$
this
->
testSuiteFailures
[
$
this
->
testSuiteLevel
];
$
this
->
testSuiteSkipped
[
$
this
->
testSuiteLevel
-
1
] +=
$
this
->
testSuiteSkipped
[
$
this
->
testSuiteLevel
];
$
this
->
testSuiteTimes
[
$
this
->
testSuiteLevel
-
1
] +=
$
this
->
testSuiteTimes
[
$
this
->
testSuiteLevel
];
}
$
this
->
testSuiteLevel
--;
}
/**
* A test started.
*
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
* @throws ReflectionException
*/
public
function
startTest
(
Test
$
test
):
void
{
$
usesDataprovider
=
false
;
if
(
\method_exists
(
$
test
,
'
usesDataProvider
'
)) {
$
usesDataprovider
=
$
test
->
usesDataProvider
();
}
$
testCase
=
$
this
->
document
->
createElement
(
'
testcase
'
);
$
testCase
->
setAttribute
(
'
name
'
,
$
test
->
getName
());
$
class
=
new
ReflectionClass
(
$
test
);
$
methodName
=
$
test
->
getName
(!
$
usesDataprovider
);
if
(
$
class
->
hasMethod
(
$
methodName
)) {
$
method
=
$
class
->
getMethod
(
$
methodName
);
$
testCase
->
setAttribute
(
'
class
'
,
$
class
->
getName
());
$
testCase
->
setAttribute
(
'
classname
'
,
\str_replace
(
'\\'
,
'
.
'
,
$
class
->
getName
()));
$
testCase
->
setAttribute
(
'
file
'
,
$
class
->
getFileName
());
$
testCase
->
setAttribute
(
'
line
'
, (
string
)
$
method
->
getStartLine
());
}
$
this
->
currentTestCase
=
$
testCase
;
}
/**
* A test ended.
*/
public
function
endTest
(
Test
$
test
,
float
$
time
):
void
{
$
numAssertions
=
0
;
if
(
\method_exists
(
$
test
,
'
getNumAssertions
'
)) {
$
numAssertions
=
$
test
->
getNumAssertions
();
}
$
this
->
testSuiteAssertions
[
$
this
->
testSuiteLevel
] +=
$
numAssertions
;
$
this
->
currentTestCase
->
setAttribute
(
'
assertions
'
,
(
string
)
$
numAssertions
);
$
this
->
currentTestCase
->
setAttribute
(
'
time
'
,
\sprintf
(
'
%F
'
,
$
time
)
);
$
this
->
testSuites
[
$
this
->
testSuiteLevel
]->
appendChild
(
$
this
->
currentTestCase
);
$
this
->
testSuiteTests
[
$
this
->
testSuiteLevel
]++;
$
this
->
testSuiteTimes
[
$
this
->
testSuiteLevel
] +=
$
time
;
$
testOutput
=
''
;
if
(
\method_exists
(
$
test
,
'
hasOutput
'
) &&
\method_exists
(
$
test
,
'
getActualOutput
'
)) {
$
testOutput
=
$
test
->
hasOutput
() ?
$
test
->
getActualOutput
() :
''
;
}
if
(!
empty
(
$
testOutput
)) {
$
systemOut
=
$
this
->
document
->
createElement
(
'
system-out
'
,
Xml::
prepareString
(
$
testOutput
)
);
$
this
->
currentTestCase
->
appendChild
(
$
systemOut
);
}
$
this
->
currentTestCase
=
null
;
}
/**
* Returns the XML as a string.
*/
public
function
getXML
():
string
{
return
$
this
->
document
->
saveXML
();
}
/**
* Enables or disables the writing of the document
* in flush().
*
* This is a "hack" needed for the integration of
* PHPUnit with Phing.
*/
public
function
setWriteDocument
(
/*bool*/
$
flag
):
void
{
if
(
\is_bool
(
$
flag
)) {
$
this
->
writeDocument
=
$
flag
;
}
}
/**
* Method which generalizes addError() and addFailure()
*
* @throws \InvalidArgumentException
* @throws ReflectionException
*/
private
function
doAddFault
(
Test
$
test
,
\
Throwable
$
t
,
float
$
time
,
$
type
):
void
{
if
(
$
this
->
currentTestCase
===
null
) {
return
;
}
if
(
$
test
instanceof
SelfDescribing) {
$
buffer
=
$
test
->
toString
() .
"\n"
;
}
else
{
$
buffer
=
''
;
}
$
buffer
.= TestFailure::
exceptionToString
(
$
t
) .
"\n"
.
Filter::
getFilteredStacktrace
(
$
t
);
$
fault
=
$
this
->
document
->
createElement
(
$
type
,
Xml::
prepareString
(
$
buffer
)
);
if
(
$
t
instanceof
ExceptionWrapper) {
$
fault
->
setAttribute
(
'
type
'
,
$
t
->
getClassName
());
}
else
{
$
fault
->
setAttribute
(
'
type
'
,
\get_class
(
$
t
));
}
$
this
->
currentTestCase
->
appendChild
(
$
fault
);
}
private
function
doAddSkipped
(
Test
$
test
):
void
{
if
(
$
this
->
currentTestCase
===
null
) {
return
;
}
$
skipped
=
$
this
->
document
->
createElement
(
'
skipped
'
);
$
this
->
currentTestCase
->
appendChild
(
$
skipped
);
$
this
->
testSuiteSkipped
[
$
this
->
testSuiteLevel
]++;
}
}
Back
|
FazBrowse Home
|
New Git URL