You are here

protected function MigrateMenuLinkTestTrait::assertEntity in Drupal 9

Asserts various aspects of a menu link entity.

Parameters

string $id: The link ID.

string $langcode: The language of the menu link.

string $title: The expected title of the link.

string $menu: The expected ID of the menu to which the link will belong.

string $description: The link's expected description.

bool $enabled: Whether the link is enabled.

bool $expanded: Whether the link is expanded.

array $attributes: Additional attributes the link is expected to have.

string $uri: The expected URI of the link.

int $weight: The expected weight of the link.

Return value

\Drupal\menu_link_content\MenuLinkContentInterface The menu link content.

3 calls to MigrateMenuLinkTestTrait::assertEntity()
MigrateMenuLinkLocalizedTest::testMenuLinkLocalized in core/modules/menu_link_content/tests/src/Kernel/Migrate/d7/MigrateMenuLinkLocalizedTest.php
Tests migration of menu link localized translations.
MigrateMenuLinkTest::testMenuLinks in core/modules/menu_link_content/tests/src/Kernel/Migrate/d7/MigrateMenuLinkTest.php
Tests migration of menu links.
MigrateMenuLinkTranslationTest::testMenuLinkTranslation in core/modules/menu_link_content/tests/src/Kernel/Migrate/d7/MigrateMenuLinkTranslationTest.php
Tests migration of menu link translations.

File

core/modules/menu_link_content/tests/src/Kernel/Migrate/MigrateMenuLinkTestTrait.php, line 40

Class

MigrateMenuLinkTestTrait
Provides assertions for testing MenuLinkContent.

Namespace

Drupal\Tests\menu_link_content\Kernel\Migrate

Code

protected function assertEntity($id, $langcode, $title, $menu, $description, $enabled, $expanded, array $attributes, $uri, $weight) {

  /** @var \Drupal\menu_link_content\MenuLinkContentInterface $menu_link */
  $menu_link = MenuLinkContent::load($id);
  $menu_link = $menu_link
    ->getTranslation($langcode);
  $this
    ->assertInstanceOf(MenuLinkContentInterface::class, $menu_link);
  $this
    ->assertSame($title, $menu_link
    ->getTitle());
  $this
    ->assertSame($langcode, $menu_link
    ->language()
    ->getId());
  $this
    ->assertSame($menu, $menu_link
    ->getMenuName());
  $this
    ->assertSame($description, $menu_link
    ->getDescription());
  $this
    ->assertSame($enabled, $menu_link
    ->isEnabled());
  $this
    ->assertSame($expanded, $menu_link
    ->isExpanded());
  $this
    ->assertSame($attributes, $menu_link->link->options);
  $this
    ->assertSame($uri, $menu_link->link->uri);
  $this
    ->assertSame($weight, $menu_link
    ->getWeight());
  return $menu_link;
}