You are here

class MenuTest in Drupal 10

Same name in this branch
  1. 10 core/modules/jsonapi/tests/src/Functional/MenuTest.php \Drupal\Tests\jsonapi\Functional\MenuTest
  2. 10 core/modules/views/tests/src/Functional/Wizard/MenuTest.php \Drupal\Tests\views\Functional\Wizard\MenuTest
  3. 10 core/modules/system/tests/src/Kernel/Plugin/migrate/source/MenuTest.php \Drupal\Tests\system\Kernel\Plugin\migrate\source\MenuTest
Same name and namespace in other branches
  1. 8 core/modules/jsonapi/tests/src/Functional/MenuTest.php \Drupal\Tests\jsonapi\Functional\MenuTest
  2. 9 core/modules/jsonapi/tests/src/Functional/MenuTest.php \Drupal\Tests\jsonapi\Functional\MenuTest

JSON:API integration test for the "Menu" config entity type.

@group jsonapi

Hierarchy

Expanded class hierarchy of MenuTest

File

core/modules/jsonapi/tests/src/Functional/MenuTest.php, line 13

Namespace

Drupal\Tests\jsonapi\Functional
View source
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 [];
  }

}

Members