MenuLinkDefaultTest.php

Same filename and directory in other branches
  1. 8.9.x core/tests/Drupal/Tests/Core/Menu/MenuLinkDefaultTest.php
  2. 10 core/tests/Drupal/Tests/Core/Menu/MenuLinkDefaultTest.php
  3. 11.x core/tests/Drupal/Tests/Core/Menu/MenuLinkDefaultTest.php

Namespace

Drupal\Tests\Core\Menu

File

core/tests/Drupal/Tests/Core/Menu/MenuLinkDefaultTest.php

View source
<?php

namespace Drupal\Tests\Core\Menu;

use Drupal\Core\Menu\MenuLinkDefault;
use Drupal\Core\Menu\StaticMenuLinkOverridesInterface;
use Drupal\Tests\UnitTestCase;

/**
 * @coversDefaultClass \Drupal\Core\Menu\MenuLinkDefault
 * @group Menu
 */
class MenuLinkDefaultTest extends UnitTestCase {
    
    /**
     * @covers ::updateLink
     */
    public function testUpdateLink() {
        $plugin_definition = [
            'title' => 'Hey jude',
            'enabled' => 1,
            'expanded' => 1,
            'menu_name' => 'admin',
            'parent' => '',
            'weight' => 10,
        ];
        $expected_plugin_definition = $plugin_definition;
        $expected_plugin_definition['weight'] = -10;
        $static_override = $this->prophesize(StaticMenuLinkOverridesInterface::class);
        $static_override->saveOverride('example_menu_link', $expected_plugin_definition);
        $static_override = $static_override->reveal();
        $menu_link = new MenuLinkDefault([], 'example_menu_link', $plugin_definition, $static_override);
        $this->assertEquals($expected_plugin_definition, $menu_link->updateLink([
            'weight' => -10,
        ], TRUE));
    }
    
    /**
     * @covers ::updateLink
     */
    public function testUpdateLinkWithoutPersist() {
        $plugin_definition = [
            'title' => 'Hey jude',
            'enabled' => 1,
            'expanded' => 1,
            'menu_name' => 'admin',
            'parent' => '',
            'weight' => 10,
        ];
        $expected_plugin_definition = $plugin_definition;
        $expected_plugin_definition['weight'] = -10;
        $static_override = $this->prophesize(StaticMenuLinkOverridesInterface::class);
        $static_override->saveOverride()
            ->shouldNotBeCalled();
        $static_override = $static_override->reveal();
        $menu_link = new MenuLinkDefault([], 'example_menu_link', $plugin_definition, $static_override);
        $this->assertEquals($expected_plugin_definition, $menu_link->updateLink([
            'weight' => -10,
        ], FALSE));
    }

}

Classes

Title Deprecated Summary
MenuLinkDefaultTest @coversDefaultClass \Drupal\Core\Menu\MenuLinkDefault @group Menu

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.