You are here

protected function EntityDisplayTest::assertDependencyHelper in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/field_ui/tests/src/Kernel/EntityDisplayTest.php \Drupal\Tests\field_ui\Kernel\EntityDisplayTest::assertDependencyHelper()
  2. 9 core/modules/field_ui/tests/src/Kernel/EntityDisplayTest.php \Drupal\Tests\field_ui\Kernel\EntityDisplayTest::assertDependencyHelper()

Provides a helper for dependency assertions.

@internal

Parameters

bool $assertion: Assertion: positive or negative.

string $type: The dependency type: 'config', 'content', 'module' or 'theme'.

string $key: The string to be checked.

\Drupal\Core\Entity\Display\EntityDisplayInterface $display: The entity display object to get dependencies from.

File

core/modules/field_ui/tests/src/Kernel/EntityDisplayTest.php, line 688

Class

EntityDisplayTest
Tests the entity display configuration entities.

Namespace

Drupal\Tests\field_ui\Kernel

Code

protected function assertDependencyHelper(bool $assertion, string $type, string $key, EntityDisplayInterface $display) : void {
  $all_dependencies = $display
    ->getDependencies();
  $dependencies = !empty($all_dependencies[$type]) ? $all_dependencies[$type] : [];
  $context = $display instanceof EntityViewDisplayInterface ? 'View' : 'Form';
  $value = $assertion ? in_array($key, $dependencies) : !in_array($key, $dependencies);
  $args = [
    '@context' => $context,
    '@id' => $display
      ->id(),
    '@type' => $type,
    '@key' => $key,
  ];
  $message = $assertion ? new FormattableMarkup("@context display '@id' depends on @type '@key'.", $args) : new FormattableMarkup("@context display '@id' do not depend on @type '@key'.", $args);
  $this
    ->assertTrue($value, $message);
}