SearchPageTest.php

Same filename in this branch
  1. 11.x core/modules/search/tests/src/Kernel/Migrate/d6/SearchPageTest.php
  2. 11.x core/modules/search/tests/src/Kernel/Migrate/d7/SearchPageTest.php
Same filename and directory in other branches
  1. 9 core/modules/jsonapi/tests/src/Functional/SearchPageTest.php
  2. 9 core/modules/search/tests/src/Kernel/Migrate/d6/SearchPageTest.php
  3. 9 core/modules/search/tests/src/Kernel/Migrate/d7/SearchPageTest.php
  4. 8.9.x core/modules/jsonapi/tests/src/Functional/SearchPageTest.php
  5. 8.9.x core/modules/search/tests/src/Kernel/Migrate/d6/SearchPageTest.php
  6. 8.9.x core/modules/search/tests/src/Kernel/Migrate/d7/SearchPageTest.php
  7. 10 core/modules/jsonapi/tests/src/Functional/SearchPageTest.php
  8. 10 core/modules/search/tests/src/Kernel/Migrate/d6/SearchPageTest.php
  9. 10 core/modules/search/tests/src/Kernel/Migrate/d7/SearchPageTest.php

Namespace

Drupal\Tests\jsonapi\Functional

File

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

View source
<?php

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

use Drupal\Core\Url;
use Drupal\search\Entity\SearchPage;
// cspell:ignore hinode

/**
 * JSON:API integration test for the "SearchPage" config entity type.
 *
 * @group jsonapi
 * @group #slow
 */
class SearchPageTest extends ConfigEntityResourceTestBase {
    
    /**
     * {@inheritdoc}
     */
    protected static $modules = [
        'node',
        'search',
    ];
    
    /**
     * {@inheritdoc}
     */
    protected $defaultTheme = 'stark';
    
    /**
     * {@inheritdoc}
     */
    protected static $entityTypeId = 'search_page';
    
    /**
     * {@inheritdoc}
     */
    protected static $resourceTypeName = 'search_page--search_page';
    
    /**
     * {@inheritdoc}
     *
     * @var \Drupal\search\SearchPageInterface
     */
    protected $entity;
    
    /**
     * {@inheritdoc}
     */
    protected function setUpAuthorization($method) {
        switch ($method) {
            case 'GET':
                $this->grantPermissionsToTestedRole([
                    'access content',
                ]);
                break;
            case 'POST':
            case 'PATCH':
            case 'DELETE':
                $this->grantPermissionsToTestedRole([
                    'administer search',
                ]);
                break;
        }
    }
    
    /**
     * {@inheritdoc}
     */
    protected function createEntity() {
        $search_page = SearchPage::create([
            'id' => 'hinode_search',
            'plugin' => 'node_search',
            'label' => 'Search of magnetic activity of the Sun',
            'path' => 'sun',
        ]);
        $search_page->save();
        return $search_page;
    }
    
    /**
     * {@inheritdoc}
     */
    protected function getExpectedDocument() {
        $self_url = Url::fromUri('base:/jsonapi/search_page/search_page/' . $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' => 'search_page--search_page',
                'links' => [
                    'self' => [
                        'href' => $self_url,
                    ],
                ],
                'attributes' => [
                    'configuration' => [
                        'rankings' => [],
                    ],
                    'dependencies' => [
                        'module' => [
                            'node',
                        ],
                    ],
                    'label' => 'Search of magnetic activity of the Sun',
                    'langcode' => 'en',
                    'path' => 'sun',
                    'plugin' => 'node_search',
                    'status' => TRUE,
                    'weight' => 0,
                    'drupal_internal__id' => 'hinode_search',
                ],
            ],
        ];
    }
    
    /**
     * {@inheritdoc}
     */
    protected function getPostDocument() {
        // @todo Update in https://www.drupal.org/node/2300677.
        return [];
    }
    
    /**
     * {@inheritdoc}
     */
    protected function getExpectedUnauthorizedAccessMessage($method) {
        switch ($method) {
            case 'GET':
                return "The 'access content' permission is required.";
            default:
                return parent::getExpectedUnauthorizedAccessMessage($method);
        }
    }
    
    /**
     * {@inheritdoc}
     */
    protected function getExpectedUnauthorizedAccessCacheability() {
        // @see \Drupal\search\SearchPageAccessControlHandler::checkAccess()
        return parent::getExpectedUnauthorizedAccessCacheability()->addCacheTags([
            'config:search.page.hinode_search',
        ]);
    }

}

Classes

Title Deprecated Summary
SearchPageTest JSON:API integration test for the "SearchPage" config entity type.

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