Skip to content

Commit be383b6

Browse files
committed
Merge branch '5.4' into 6.4
* 5.4: [PropertyInfo] Update DoctrineExtractor for new DBAL 4 BIGINT type Update security.nl.xlf [Validator] IBAN Check digits should always between 2 and 98 [Security] Populate translations for trans-unit 20 add missing plural translation messages filter out empty HTTP header parts [String] Fix folded in compat mode Remove calls to `getMockForAbstractClass()` [ErrorHandler] Do not call xdebug_get_function_stack() with xdebug >= 3.0 when not in develop mode [Serializer] Fix type for missing property add test for JSON response with null as content [Filesystem] Fix dumpFile `stat failed` error hitting custom handler Remove calls to `TestCase::iniSet()` and calls to deprecated methods of `MockBuilder` [PhpUnitBridge] Fix `DeprecationErrorHandler` with PhpUnit 10
2 parents 718f103 + 08c924b commit be383b6

File tree

2 files changed

+38
-17
lines changed

2 files changed

+38
-17
lines changed

Test/Traits/ValidatorExtensionTrait.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ protected function getValidatorExtension(): ValidatorExtension
3636

3737
$this->validator = $this->createMock(ValidatorInterface::class);
3838
$metadata = $this->getMockBuilder(ClassMetadata::class)->setConstructorArgs([''])->onlyMethods(['addPropertyConstraint'])->getMock();
39-
$this->validator->expects($this->any())->method('getMetadataFor')->will($this->returnValue($metadata));
40-
$this->validator->expects($this->any())->method('validate')->will($this->returnValue(new ConstraintViolationList()));
39+
$this->validator->expects($this->any())->method('getMetadataFor')->willReturn($metadata);
40+
$this->validator->expects($this->any())->method('validate')->willReturn(new ConstraintViolationList());
4141

4242
return new ValidatorExtension($this->validator, false);
4343
}

Tests/Extension/Core/DataTransformer/DateTimeToLocalizedStringTransformerTest.php

+36-15
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,17 @@ class DateTimeToLocalizedStringTransformerTest extends BaseDateTimeTransformerTe
2525
protected \DateTime $dateTimeWithoutSeconds;
2626
private string $defaultLocale;
2727

28+
private $initialTestCaseUseException;
29+
private $initialTestCaseErrorLevel;
30+
2831
protected function setUp(): void
2932
{
3033
parent::setUp();
3134

3235
// Normalize intl. configuration settings.
3336
if (\extension_loaded('intl')) {
34-
$this->iniSet('intl.use_exceptions', 0);
35-
$this->iniSet('intl.error_level', 0);
37+
$this->initialTestCaseUseException = ini_set('intl.use_exceptions', 0);
38+
$this->initialTestCaseErrorLevel = ini_set('intl.error_level', 0);
3639
}
3740

3841
// Since we test against "de_AT", we need the full implementation
@@ -48,6 +51,11 @@ protected function setUp(): void
4851
protected function tearDown(): void
4952
{
5053
\Locale::setDefault($this->defaultLocale);
54+
55+
if (\extension_loaded('intl')) {
56+
ini_set('intl.use_exceptions', $this->initialTestCaseUseException);
57+
ini_set('intl.error_level', $this->initialTestCaseUseException);
58+
}
5159
}
5260

5361
public static function dataProvider()
@@ -337,11 +345,15 @@ public function testReverseTransformWrapsIntlErrorsWithErrorLevel()
337345
$this->markTestSkipped('intl extension is not loaded');
338346
}
339347

340-
$this->iniSet('intl.error_level', \E_WARNING);
348+
$errorLevel = ini_set('intl.error_level', \E_WARNING);
341349

342-
$this->expectException(TransformationFailedException::class);
343-
$transformer = new DateTimeToLocalizedStringTransformer();
344-
$transformer->reverseTransform('12345');
350+
try {
351+
$this->expectException(TransformationFailedException::class);
352+
$transformer = new DateTimeToLocalizedStringTransformer();
353+
$transformer->reverseTransform('12345');
354+
} finally {
355+
ini_set('intl.error_level', $errorLevel);
356+
}
345357
}
346358

347359
public function testReverseTransformWrapsIntlErrorsWithExceptions()
@@ -350,11 +362,15 @@ public function testReverseTransformWrapsIntlErrorsWithExceptions()
350362
$this->markTestSkipped('intl extension is not loaded');
351363
}
352364

353-
$this->iniSet('intl.use_exceptions', 1);
365+
$initialUseExceptions = ini_set('intl.use_exceptions', 1);
354366

355-
$this->expectException(TransformationFailedException::class);
356-
$transformer = new DateTimeToLocalizedStringTransformer();
357-
$transformer->reverseTransform('12345');
367+
try {
368+
$this->expectException(TransformationFailedException::class);
369+
$transformer = new DateTimeToLocalizedStringTransformer();
370+
$transformer->reverseTransform('12345');
371+
} finally {
372+
ini_set('intl.use_exceptions', $initialUseExceptions);
373+
}
358374
}
359375

360376
public function testReverseTransformWrapsIntlErrorsWithExceptionsAndErrorLevel()
@@ -363,12 +379,17 @@ public function testReverseTransformWrapsIntlErrorsWithExceptionsAndErrorLevel()
363379
$this->markTestSkipped('intl extension is not loaded');
364380
}
365381

366-
$this->iniSet('intl.use_exceptions', 1);
367-
$this->iniSet('intl.error_level', \E_WARNING);
382+
$initialUseExceptions = ini_set('intl.use_exceptions', 1);
383+
$initialErrorLevel = ini_set('intl.error_level', \E_WARNING);
368384

369-
$this->expectException(TransformationFailedException::class);
370-
$transformer = new DateTimeToLocalizedStringTransformer();
371-
$transformer->reverseTransform('12345');
385+
try {
386+
$this->expectException(TransformationFailedException::class);
387+
$transformer = new DateTimeToLocalizedStringTransformer();
388+
$transformer->reverseTransform('12345');
389+
} finally {
390+
ini_set('intl.use_exceptions', $initialUseExceptions);
391+
ini_set('intl.error_level', $initialErrorLevel);
392+
}
372393
}
373394

374395
protected function createDateTimeTransformer(?string $inputTimezone = null, ?string $outputTimezone = null): BaseDateTimeTransformer

0 commit comments

Comments
 (0)