MenuLinkContentResourceTestBase.php

Same filename and directory in other branches
  1. 9 core/modules/menu_link_content/tests/src/Functional/Rest/MenuLinkContentResourceTestBase.php
  2. 8.9.x core/modules/menu_link_content/tests/src/Functional/Rest/MenuLinkContentResourceTestBase.php
  3. 8.9.x core/modules/rest/tests/src/Functional/EntityResource/MenuLinkContent/MenuLinkContentResourceTestBase.php
  4. 10 core/modules/menu_link_content/tests/src/Functional/Rest/MenuLinkContentResourceTestBase.php

Namespace

Drupal\Tests\menu_link_content\Functional\Rest

File

core/modules/menu_link_content/tests/src/Functional/Rest/MenuLinkContentResourceTestBase.php

View source
<?php

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

use Drupal\menu_link_content\Entity\MenuLinkContent;
use Drupal\Tests\rest\Functional\EntityResource\EntityResourceTestBase;

/**
 * ResourceTestBase for MenuLinkContent entity.
 */
abstract class MenuLinkContentResourceTestBase extends EntityResourceTestBase {
    
    /**
     * {@inheritdoc}
     */
    protected static $modules = [
        'menu_link_content',
    ];
    
    /**
     * {@inheritdoc}
     */
    protected static $entityTypeId = 'menu_link_content';
    
    /**
     * {@inheritdoc}
     */
    protected static $patchProtectedFieldNames = [
        'changed' => NULL,
    ];
    
    /**
     * The MenuLinkContent entity.
     *
     * @var \Drupal\menu_link_content\MenuLinkContentInterface
     */
    protected $entity;
    
    /**
     * {@inheritdoc}
     */
    protected function setUpAuthorization($method) {
        switch ($method) {
            case 'GET':
            case 'POST':
            case 'PATCH':
            case 'DELETE':
                $this->grantPermissionsToTestedRole([
                    'administer menu',
                ]);
                break;
        }
    }
    
    /**
     * {@inheritdoc}
     */
    protected function createEntity() {
        $menu_link = MenuLinkContent::create([
            'id' => 'llama',
            'title' => 'Llama Gabilondo',
            'description' => 'Llama Gabilondo',
            'link' => [
                'uri' => 'https://nl.wikipedia.org/wiki/Llama',
                'options' => [
                    'fragment' => 'a-fragment',
                    'attributes' => [
                        'class' => [
                            'example-class',
                        ],
                    ],
                ],
            ],
            'weight' => 0,
            'menu_name' => 'main',
        ]);
        $menu_link->save();
        return $menu_link;
    }
    
    /**
     * {@inheritdoc}
     */
    protected function getNormalizedPostEntity() {
        return [
            'title' => [
                [
                    'value' => 'Drama llama',
                ],
            ],
            'link' => [
                [
                    'uri' => 'http://www.urbandictionary.com/define.php?term=drama%20llama',
                    'options' => [
                        'fragment' => 'a-fragment',
                        'attributes' => [
                            'class' => [
                                'example-class',
                            ],
                        ],
                    ],
                ],
            ],
            'bundle' => [
                [
                    'value' => 'menu_link_content',
                ],
            ],
        ];
    }
    
    /**
     * {@inheritdoc}
     */
    protected function getExpectedNormalizedEntity() {
        return [
            'uuid' => [
                [
                    'value' => $this->entity
                        ->uuid(),
                ],
            ],
            'id' => [
                [
                    'value' => 1,
                ],
            ],
            'revision_id' => [
                [
                    'value' => 1,
                ],
            ],
            'title' => [
                [
                    'value' => 'Llama Gabilondo',
                ],
            ],
            'link' => [
                [
                    'uri' => 'https://nl.wikipedia.org/wiki/Llama',
                    'title' => NULL,
                    'options' => [
                        'fragment' => 'a-fragment',
                        'attributes' => [
                            'class' => [
                                'example-class',
                            ],
                        ],
                    ],
                ],
            ],
            'weight' => [
                [
                    'value' => 0,
                ],
            ],
            'menu_name' => [
                [
                    'value' => 'main',
                ],
            ],
            'langcode' => [
                [
                    'value' => 'en',
                ],
            ],
            'bundle' => [
                [
                    'value' => 'menu_link_content',
                ],
            ],
            'description' => [
                [
                    'value' => 'Llama Gabilondo',
                ],
            ],
            'external' => [
                [
                    'value' => FALSE,
                ],
            ],
            'rediscover' => [
                [
                    'value' => FALSE,
                ],
            ],
            'expanded' => [
                [
                    'value' => FALSE,
                ],
            ],
            'enabled' => [
                [
                    'value' => TRUE,
                ],
            ],
            'changed' => [
                [
                    'value' => (new \DateTime())->setTimestamp($this->entity
                        ->getChangedTime())
                        ->setTimezone(new \DateTimeZone('UTC'))
                        ->format(\DateTime::RFC3339),
                    'format' => \DateTime::RFC3339,
                ],
            ],
            'default_langcode' => [
                [
                    'value' => TRUE,
                ],
            ],
            'parent' => [],
            'revision_created' => [
                [
                    'value' => (new \DateTime())->setTimestamp((int) $this->entity
                        ->getRevisionCreationTime())
                        ->setTimezone(new \DateTimeZone('UTC'))
                        ->format(\DateTime::RFC3339),
                    'format' => \DateTime::RFC3339,
                ],
            ],
            'revision_user' => [],
            'revision_log_message' => [],
            'revision_translation_affected' => [
                [
                    'value' => TRUE,
                ],
            ],
        ];
    }
    
    /**
     * {@inheritdoc}
     */
    protected function getExpectedUnauthorizedAccessMessage($method) {
        switch ($method) {
            case 'DELETE':
                return "The 'administer menu' permission is required.";
            default:
                return parent::getExpectedUnauthorizedAccessMessage($method);
        }
    }

}

Classes

Title Deprecated Summary
MenuLinkContentResourceTestBase ResourceTestBase for MenuLinkContent entity.

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