15
15
16
16
use PHPUnit \Framework \Attributes \DataProvider ;
17
17
use PHPUnit \Framework \Attributes \Group ;
18
- use PHPUnit \Framework \Attributes \RunInSeparateProcess ;
19
18
use PHPUnit \Framework \TestCase ;
20
19
use SplFileObject ;
21
20
use SplTempFileObject ;
30
29
use function xdebug_get_headers ;
31
30
32
31
use const PHP_EOL ;
32
+ use const PHP_VERSION_ID ;
33
33
34
34
#[Group('csv ' )]
35
35
final class AbstractCsvTest extends TestCase
@@ -108,7 +108,6 @@ public function testCloningIsForbidden(): void
108
108
clone $ this ->csv ;
109
109
}
110
110
111
- #[RunInSeparateProcess]
112
111
public function testOutputSize (): void
113
112
{
114
113
ob_start ();
@@ -124,7 +123,6 @@ public function testInvalidOutputFile(): void
124
123
$ this ->csv ->output ('invalid/file.csv ' );
125
124
}
126
125
127
- #[RunInSeparateProcess]
128
126
public function testOutputHeaders (): void
129
127
{
130
128
if (!function_exists ('xdebug_get_headers ' )) {
@@ -415,24 +413,41 @@ public function testBOMStripping(): void
415
413
self ::assertFalse ($ reader ->isInputBOMIncluded ());
416
414
}
417
415
418
- #[RunInSeparateProcess]
419
- public function testOutputDoesNotStripBOM (): void
416
+ public function testOutputStripBOM (): void
420
417
{
418
+ if (PHP_VERSION_ID >= 80300 ) {
419
+ self ::markTestSkipped ('Issue with PHPUnit in PHP8.3 ' );
420
+ }
421
+
421
422
$ raw_csv = ByteSequence::
BOM_UTF8 .
"john,doe,[email protected] \njane,doe,[email protected] \n" ;
422
423
$ csv = Reader::createFromString ($ raw_csv );
423
424
$ csv ->setOutputBOM (ByteSequence::BOM_UTF16_BE );
425
+
424
426
ob_start ();
425
427
$ csv ->output ();
426
428
/** @var string $result */
427
429
$ result = ob_get_clean ();
430
+
428
431
self ::assertStringNotContainsString (ByteSequence::BOM_UTF8 , $ result );
429
- self ::assertStringContainsString (ByteSequence::BOM_UTF16_BE , $ result );
432
+ self ::assertTrue (str_starts_with ($ result , ByteSequence::BOM_UTF16_BE ));
433
+ }
434
+
435
+ public function testOutputDoesNotStripBOM (): void
436
+ {
437
+ if (PHP_VERSION_ID >= 80300 ) {
438
+ self ::markTestSkipped ('Issue with PHPUnit in PHP8.3 ' );
439
+ }
430
440
441
+ $ raw_csv = ByteSequence::
BOM_UTF8 .
"john,doe,[email protected] \njane,doe,[email protected] \n" ;
442
+ $ csv = Reader::createFromString ($ raw_csv );
443
+ $ csv ->setOutputBOM (ByteSequence::BOM_UTF16_BE );
431
444
$ csv ->includeInputBOM ();
445
+
432
446
ob_start ();
433
447
$ csv ->output ();
434
448
/** @var string $result */
435
449
$ result = ob_get_clean ();
450
+
436
451
self ::assertStringContainsString (ByteSequence::BOM_UTF16_BE , $ result );
437
452
self ::assertStringContainsString (ByteSequence::BOM_UTF8 , $ result );
438
453
self ::assertTrue (str_starts_with ($ result , ByteSequence::BOM_UTF16_BE .ByteSequence::BOM_UTF8 ));
0 commit comments