2
2
3
3
declare (strict_types=1 );
4
4
5
+ /*
6
+ * This file is part of WickedOne\PHPUnitPrinter.
7
+ *
8
+
9
+ *
10
+ * For the full copyright and license information, please view the LICENSE
11
+ * file that was distributed with this source code.
12
+ */
13
+
5
14
namespace WickedOne \PHPUnitPrinter \Tests ;
6
15
7
16
use PHPUnit \Framework \AssertionFailedError ;
8
17
use PHPUnit \Framework \ErrorTestCase ;
9
18
use PHPUnit \Framework \TestCase ;
10
19
use PHPUnit \Framework \TestResult ;
20
+ use PHPUnit \Framework \TestSuite ;
11
21
use WickedOne \PHPUnitPrinter \PhpStormPrinter ;
22
+ use WickedOne \PHPUnitPrinter \Tests \Stub \EmptyTestClass ;
12
23
13
24
/**
14
25
* PhpStorm Printer Test.
17
28
*/
18
29
class PhpStormPrinterTest extends TestCase
19
30
{
20
-
21
31
/**
22
32
* 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.
24
34
*/
25
35
public function testPrintDefectFooter (): void
26
36
{
@@ -30,10 +40,9 @@ public function testPrintDefectFooter(): void
30
40
31
41
$ result ->addFailure ($ test , $ throwable , time ());
32
42
33
- $ filename = sys_get_temp_dir () . '/phpunit-printer.txt ' ;
34
- touch ($ filename );
43
+ $ filename = sys_get_temp_dir ().'/phpunit-printer.txt ' ;
35
44
36
- $ printer = new PhpStormPrinter (fopen ($ filename , 'rb + ' ));
45
+ $ printer = new PhpStormPrinter (fopen ($ filename , 'wb + ' ));
37
46
$ printer ->printResult ($ result );
38
47
39
48
$ result = file_get_contents ($ filename );
@@ -45,4 +54,29 @@ public function testPrintDefectFooter(): void
45
54
46
55
@unlink ($ filename );
47
56
}
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
+ }
48
82
}
0 commit comments