MenuTest.php

Same filename in this branch
  1. 11.x core/modules/views/tests/src/Functional/Wizard/MenuTest.php
  2. 11.x core/modules/system/tests/src/Kernel/Plugin/migrate/source/MenuTest.php
  3. 11.x core/modules/migrate_drupal_ui/tests/modules/migrate_drupal_message_test/src/Plugin/migrate/source/MenuTest.php
Same filename and directory in other branches
  1. 9 core/modules/jsonapi/tests/src/Functional/MenuTest.php
  2. 9 core/modules/views/tests/src/Functional/Wizard/MenuTest.php
  3. 9 core/modules/system/tests/src/Kernel/Plugin/migrate/source/MenuTest.php
  4. 8.9.x core/modules/jsonapi/tests/src/Functional/MenuTest.php
  5. 8.9.x core/modules/views/tests/src/Functional/Wizard/MenuTest.php
  6. 8.9.x core/modules/system/tests/src/Kernel/Plugin/migrate/source/MenuTest.php
  7. 10 core/modules/jsonapi/tests/src/Functional/MenuTest.php
  8. 10 core/modules/views/tests/src/Functional/Wizard/MenuTest.php
  9. 10 core/modules/system/tests/src/Kernel/Plugin/migrate/source/MenuTest.php
  10. 10 core/modules/migrate_drupal_ui/tests/modules/migrate_drupal_message_test/src/Plugin/migrate/source/MenuTest.php

Namespace

Drupal\Tests\jsonapi\Functional

File

core/modules/jsonapi/tests/src/Functional/MenuTest.php

View source
<?php

declare (strict_types=1);
namespace Drupal\Tests\jsonapi\Functional;

use Drupal\Core\Url;
use Drupal\system\Entity\Menu;

/**
 * JSON:API integration test for the "Menu" config entity type.
 *
 * @group jsonapi
 * @group #slow
 */
class MenuTest extends ConfigEntityResourceTestBase {
    
    /**
     * {@inheritdoc}
     */
    protected static $modules = [];
    
    /**
     * {@inheritdoc}
     */
    protected $defaultTheme = 'stark';
    
    /**
     * {@inheritdoc}
     */
    protected static $entityTypeId = 'menu';
    
    /**
     * {@inheritdoc}
     */
    protected static $resourceTypeName = 'menu--menu';
    
    /**
     * {@inheritdoc}
     */
    protected static $anonymousUsersCanViewLabels = TRUE;
    
    /**
     * {@inheritdoc}
     *
     * @var \Drupal\system\MenuInterface
     */
    protected $entity;
    
    /**
     * {@inheritdoc}
     */
    protected function setUpAuthorization($method) {
        $this->grantPermissionsToTestedRole([
            'administer menu',
        ]);
    }
    
    /**
     * {@inheritdoc}
     */
    protected function createEntity() {
        $menu = Menu::create([
            'id' => 'menu',
            'label' => 'Menu',
            'description' => 'Menu',
        ]);
        $menu->save();
        return $menu;
    }
    
    /**
     * {@inheritdoc}
     */
    protected function getExpectedDocument() {
        $self_url = Url::fromUri('base:/jsonapi/menu/menu/' . $this->entity
            ->uuid())
            ->setAbsolute()
            ->toString(TRUE)
            ->getGeneratedUrl();
        return [
            'jsonapi' => [
                'meta' => [
                    'links' => [
                        'self' => [
                            'href' => 'http://jsonapi.org/format/1.0/',
                        ],
                    ],
                ],
                'version' => '1.0',
            ],
            'links' => [
                'self' => [
                    'href' => $self_url,
                ],
            ],
            'data' => [
                'id' => $this->entity
                    ->uuid(),
                'type' => 'menu--menu',
                'links' => [
                    'self' => [
                        'href' => $self_url,
                    ],
                ],
                'attributes' => [
                    'dependencies' => [],
                    'description' => 'Menu',
                    'label' => 'Menu',
                    'langcode' => 'en',
                    'locked' => FALSE,
                    'status' => TRUE,
                    'drupal_internal__id' => 'menu',
                ],
            ],
        ];
    }
    
    /**
     * {@inheritdoc}
     */
    protected function getPostDocument() {
        // @todo Update in https://www.drupal.org/node/2300677.
        return [];
    }

}

Classes

Title Deprecated Summary
MenuTest JSON:API integration test for the "Menu" config entity type.

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