trait ExpectDeprecationTrait in Drupal 8
Same name and namespace in other branches
- 9 core/tests/Drupal/Tests/Traits/ExpectDeprecationTrait.php \Drupal\Tests\Traits\ExpectDeprecationTrait
Adds the ability to dynamically set expected deprecation messages in tests.
@internal This class should only be used by Drupal core and will be removed once https://github.com/symfony/symfony/pull/25757 is resolved.
@todo Remove once https://github.com/symfony/symfony/pull/25757 is resolved.
Hierarchy
- trait \Drupal\Tests\Traits\ExpectDeprecationTrait
14 files declare their use of ExpectDeprecationTrait
- ContentEntityBaseUnitTest.php in core/
tests/ Drupal/ Tests/ Core/ Entity/ ContentEntityBaseUnitTest.php - ContextAwarePluginBaseTest.php in core/
tests/ Drupal/ KernelTests/ Core/ Plugin/ Context/ ContextAwarePluginBaseTest.php - DeprecationListenerTrait.php in core/
tests/ Drupal/ Tests/ Listeners/ DeprecationListenerTrait.php - EntityTestMapFieldResourceTestBase.php in core/
modules/ system/ tests/ modules/ entity_test/ tests/ src/ Functional/ Rest/ EntityTestMapFieldResourceTestBase.php - EntityTestResourceTestBase.php in core/
modules/ system/ tests/ modules/ entity_test/ tests/ src/ Functional/ Rest/ EntityTestResourceTestBase.php
File
- core/
tests/ Drupal/ Tests/ Traits/ ExpectDeprecationTrait.php, line 20
Namespace
Drupal\Tests\TraitsView source
trait ExpectDeprecationTrait {
/**
* Sets an expected deprecation message.
*
* @param string $message
* The expected deprecation message.
*/
protected function addExpectedDeprecationMessage($message) {
$this
->expectedDeprecations([
$message,
]);
}
/**
* Sets an expected deprecation message.
*
* @param string $message
* The expected deprecation message.
*
* @deprecated in drupal:8.8.5 and is removed from drupal:9.0.0. Use
* ::addExpectedDeprecationMessage() instead.
*
* @see https://www.drupal.org/node/3106024
*/
protected function expectDeprecation($message) {
if (strpos($message, 'ExpectDeprecationTrait::expectDeprecation') === FALSE) {
@trigger_error('ExpectDeprecationTrait::expectDeprecation is deprecated in drupal:8.8.5 and is removed from drupal:9.0.0. Use ::addExpectedDeprecationMessage() instead. See https://www.drupal.org/node/3106024', E_USER_DEPRECATED);
}
$this
->addExpectedDeprecationMessage($message);
}
/**
* Sets expected deprecation messages.
*
* @param string[] $messages
* The expected deprecation messages.
*/
public function expectedDeprecations(array $messages) {
if ($this instanceof TestCase) {
// Ensure the class or method is in the legacy group.
$groups = Test::getGroups(get_class($this), $this
->getName(FALSE));
if (!in_array('legacy', $groups, TRUE)) {
throw new AssertionFailedError('Only tests with the `@group legacy` annotation can call `setExpectedDeprecation()`.');
}
// If setting an expected deprecation there is no need to be strict about
// testing nothing as this is an assertion.
$this
->getTestResultObject()
->beStrictAboutTestsThatDoNotTestAnything(FALSE);
if ($trait = $this
->getSymfonyTestListenerTrait()) {
// Add the expected deprecation message to the class property.
$reflection_class = new \ReflectionClass($trait);
$expected_deprecations_property = $reflection_class
->getProperty('expectedDeprecations');
$expected_deprecations_property
->setAccessible(TRUE);
$expected_deprecations = $expected_deprecations_property
->getValue($trait);
$expected_deprecations = array_merge($expected_deprecations, $messages);
$expected_deprecations_property
->setValue($trait, $expected_deprecations);
// Register the error handler if necessary.
$previous_error_handler_property = $reflection_class
->getProperty('previousErrorHandler');
$previous_error_handler_property
->setAccessible(TRUE);
$previous_error_handler = $previous_error_handler_property
->getValue($trait);
if (!$previous_error_handler) {
$previous_error_handler = set_error_handler([
$trait,
'handleError',
]);
$previous_error_handler_property
->setValue($trait, $previous_error_handler);
}
return;
}
}
// Expected deprecations set by isolated tests need to be written to a file
// so that the test running process can take account of them.
if ($file = getenv('DRUPAL_EXPECTED_DEPRECATIONS_SERIALIZE')) {
$expected_deprecations = file_get_contents($file);
if ($expected_deprecations) {
$expected_deprecations = array_merge(unserialize($expected_deprecations), $messages);
}
else {
$expected_deprecations = $messages;
}
file_put_contents($file, serialize($expected_deprecations));
return;
}
throw new AssertionFailedError('Can not set an expected deprecation message because the Symfony\\Bridge\\PhpUnit\\SymfonyTestsListener is not registered as a PHPUnit test listener.');
}
/**
* Gets the SymfonyTestsListenerTrait.
*
* @return \Symfony\Bridge\PhpUnit\Legacy\SymfonyTestsListenerTrait|null
* The SymfonyTestsListenerTrait object or NULL is a Symfony test listener
* is not present.
*/
private function getSymfonyTestListenerTrait() {
$test_result_object = $this
->getTestResultObject();
$reflection_class = new \ReflectionClass($test_result_object);
$reflection_property = $reflection_class
->getProperty('listeners');
$reflection_property
->setAccessible(TRUE);
$listeners = $reflection_property
->getValue($test_result_object);
foreach ($listeners as $listener) {
if ($listener instanceof SymfonyTestsListener || $listener instanceof LegacySymfonyTestsListener) {
$reflection_class = new \ReflectionClass($listener);
$reflection_property = $reflection_class
->getProperty('trait');
$reflection_property
->setAccessible(TRUE);
return $reflection_property
->getValue($listener);
}
}
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ExpectDeprecationTrait:: |
protected | function | Sets an expected deprecation message. | |
ExpectDeprecationTrait:: |
protected | function | Sets an expected deprecation message. | |
ExpectDeprecationTrait:: |
public | function | Sets expected deprecation messages. | |
ExpectDeprecationTrait:: |
private | function | Gets the SymfonyTestsListenerTrait. |