You are here

protected function EntityDisplayTest::assertDependencyHelper in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/field_ui/src/Tests/EntityDisplayTest.php \Drupal\field_ui\Tests\EntityDisplayTest::assertDependencyHelper()

Provides a helper for dependency assertions.

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.

Return value

bool TRUE if the assertion succeeded, FALSE otherwise.

2 calls to EntityDisplayTest::assertDependencyHelper()
EntityDisplayTest::assertDependency in core/modules/field_ui/src/Tests/EntityDisplayTest.php
Asserts that $key is a $type type dependency of $display config entity.
EntityDisplayTest::assertNoDependency in core/modules/field_ui/src/Tests/EntityDisplayTest.php
Asserts that $key is not a $type type dependency of $display config entity.

File

core/modules/field_ui/src/Tests/EntityDisplayTest.php, line 645
Contains \Drupal\field_ui\Tests\EntityDisplayTest.

Class

EntityDisplayTest
Tests the entity display configuration entities.

Namespace

Drupal\field_ui\Tests

Code

protected function assertDependencyHelper($assertion, $type, $key, EntityDisplayInterface $display) {
  $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);
  return $this
    ->assert($value, $message);
}