You are here

public function MenuLinksTest::testCreateLink in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/menu_link_content/tests/src/Kernel/MenuLinksTest.php \Drupal\Tests\menu_link_content\Kernel\MenuLinksTest::testCreateLink()
  2. 10 core/modules/menu_link_content/tests/src/Kernel/MenuLinksTest.php \Drupal\Tests\menu_link_content\Kernel\MenuLinksTest::testCreateLink()

Assert that a link entity's created timestamp is set.

File

core/modules/menu_link_content/tests/src/Kernel/MenuLinksTest.php, line 137

Class

MenuLinksTest
Tests handling of menu links hierarchies.

Namespace

Drupal\Tests\menu_link_content\Kernel

Code

public function testCreateLink() {
  $options = [
    'menu_name' => 'menu_test',
    'bundle' => 'menu_link_content',
    'link' => [
      [
        'uri' => 'internal:/',
      ],
    ],
    'title' => 'Link test',
  ];
  $link = MenuLinkContent::create($options);
  $link
    ->save();

  // Make sure the changed timestamp is set.
  $this
    ->assertEqual($link
    ->getChangedTime(), REQUEST_TIME, 'Creating a menu link sets the "changed" timestamp.');
  $options = [
    'title' => 'Test Link',
  ];
  $link->link->options = $options;
  $link->changed->value = 0;
  $link
    ->save();

  // Make sure the changed timestamp is updated.
  $this
    ->assertEqual($link
    ->getChangedTime(), REQUEST_TIME, 'Changing a menu link sets "changed" timestamp.');
}