Skip to content

Commit 83b02e9

Browse files
committed
stack trace sanity
make sure the last element of the stack trace has a line number. otherwise don't print the editor url fixes #2
1 parent e5daba9 commit 83b02e9

6 files changed

+74
-8
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ specify this printer on the command line:
2121
$ php vendor/bin/phpunit --printer='WickedOne\PHPUnitPrinter\PhpStormPrinter' src/
2222
```
2323

24-
### phpunit xml configuration
24+
### phpunit xml configuration:
2525
specify this printer in your ``phpunit.xml.dist``:
2626
```xml
2727
<?xml version="1.0" encoding="UTF-8"?>

phpunit.xml.dist

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
<testsuites>
1616
<testsuite name="unit">
1717
<directory>tests/</directory>
18+
<exclude>tests/Stub</exclude>
1819
</testsuite>
1920
</testsuites>
2021

src/PhpStormPrinter.php

+6-1
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,14 @@ protected function printDefect(TestFailure $defect, int $count): void
4242
*/
4343
private function printDefectFooter(TestFailure $defect): void
4444
{
45-
$trace = explode(PHP_EOL, trim((string) $defect->thrownException()));
45+
$trace = explode(\PHP_EOL, trim((string) $defect->thrownException()));
4646
$offender = end($trace);
4747

48+
// the things you do to please infection... ;-)
49+
if (false === \is_int(strpos($offender, ':'))) {
50+
return;
51+
}
52+
4853
[$file, $line] = explode(':', $offender);
4954

5055
if (isset($file, $line)) {

tests/PhpStormPrinterTest.php

+39-5
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,24 @@
22

33
declare(strict_types=1);
44

5+
/*
6+
* This file is part of WickedOne\PHPUnitPrinter.
7+
*
8+
* (c) wicliff <[email protected]>
9+
*
10+
* For the full copyright and license information, please view the LICENSE
11+
* file that was distributed with this source code.
12+
*/
13+
514
namespace WickedOne\PHPUnitPrinter\Tests;
615

716
use PHPUnit\Framework\AssertionFailedError;
817
use PHPUnit\Framework\ErrorTestCase;
918
use PHPUnit\Framework\TestCase;
1019
use PHPUnit\Framework\TestResult;
20+
use PHPUnit\Framework\TestSuite;
1121
use WickedOne\PHPUnitPrinter\PhpStormPrinter;
22+
use WickedOne\PHPUnitPrinter\Tests\Stub\EmptyTestClass;
1223

1324
/**
1425
* PhpStorm Printer Test.
@@ -17,10 +28,9 @@
1728
*/
1829
class PhpStormPrinterTest extends TestCase
1930
{
20-
2131
/**
2232
* check for presence of editor url in output file
23-
* and whether original messages are still printed
33+
* and whether original messages are still printed.
2434
*/
2535
public function testPrintDefectFooter(): void
2636
{
@@ -30,10 +40,9 @@ public function testPrintDefectFooter(): void
3040

3141
$result->addFailure($test, $throwable, time());
3242

33-
$filename = sys_get_temp_dir() . '/phpunit-printer.txt';
34-
touch($filename);
43+
$filename = sys_get_temp_dir().'/phpunit-printer.txt';
3544

36-
$printer = new PhpStormPrinter(fopen($filename, 'rb+'));
45+
$printer = new PhpStormPrinter(fopen($filename, 'wb+'));
3746
$printer->printResult($result);
3847

3948
$result = file_get_contents($filename);
@@ -45,4 +54,29 @@ public function testPrintDefectFooter(): void
4554

4655
@unlink($filename);
4756
}
57+
58+
/**
59+
* in some occasions no trace is provided.
60+
* make sure printing editor url isn't printed in those occasions.
61+
*/
62+
public function testSkipDefectFooterOnWarning(): void
63+
{
64+
$result = (new TestSuite(EmptyTestClass::class))->run();
65+
66+
$filename = sys_get_temp_dir().'/phpunit-printer.txt';
67+
68+
$list = $GLOBALS['__PHPUNIT_ISOLATION_EXCLUDE_LIST'] ?? null;
69+
$GLOBALS['__PHPUNIT_ISOLATION_EXCLUDE_LIST'] = [__FILE__];
70+
71+
$printer = new PhpStormPrinter(fopen($filename, 'wb+'));
72+
$printer->printResult($result);
73+
74+
$GLOBALS['__PHPUNIT_ISOLATION_EXCLUDE_LIST'] = $list;
75+
76+
$result = file_get_contents($filename);
77+
78+
self::assertStringNotContainsString('phpstorm://open?file=', $result);
79+
80+
@unlink($filename);
81+
}
4882
}

tests/Stub/EmptyTestClass.php

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<?php
2+
3+
declare(strict_types=1);
4+
5+
/*
6+
* This file is part of WickedOne\PHPUnitPrinter.
7+
*
8+
* (c) wicliff <[email protected]>
9+
*
10+
* For the full copyright and license information, please view the LICENSE
11+
* file that was distributed with this source code.
12+
*/
13+
14+
namespace WickedOne\PHPUnitPrinter\Tests\Stub;
15+
16+
use PHPUnit\Framework\TestCase;
17+
18+
/**
19+
* EmptyTest Class.
20+
*
21+
* @author wicliff <[email protected]>
22+
*/
23+
class EmptyTestClass extends TestCase
24+
{
25+
}

tests/bootstrap.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
<?php
22

33
/*
4-
* This file is part of the SolrPHP SolariumBundle.
4+
* This file is part of WickedOne\PHPUnitPrinter.
5+
*
56
* (c) wicliff <[email protected]>
67
*
78
* For the full copyright and license information, please view the LICENSE

0 commit comments

Comments
 (0)