ViewTest.php

Same filename in this branch
  1. 10 core/modules/views/tests/src/Unit/Plugin/area/ViewTest.php
Same filename in other branches
  1. 9 core/modules/jsonapi/tests/src/Functional/ViewTest.php
  2. 9 core/modules/views/tests/src/Unit/Plugin/area/ViewTest.php
  3. 8.9.x core/modules/jsonapi/tests/src/Functional/ViewTest.php
  4. 8.9.x core/modules/views/tests/src/Unit/Plugin/area/ViewTest.php
  5. 11.x core/modules/jsonapi/tests/src/Functional/ViewTest.php
  6. 11.x core/modules/views/tests/src/Unit/Plugin/area/ViewTest.php

Namespace

Drupal\Tests\jsonapi\Functional

File

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

View source
<?php

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

use Drupal\Core\Url;
use Drupal\views\Entity\View;

/**
 * JSON:API integration test for the "View" config entity type.
 *
 * @group jsonapi
 * @group #slow
 */
class ViewTest extends ConfigEntityResourceTestBase {
    
    /**
     * {@inheritdoc}
     */
    protected static $modules = [
        'views',
        'views_ui',
    ];
    
    /**
     * {@inheritdoc}
     */
    protected $defaultTheme = 'stark';
    
    /**
     * {@inheritdoc}
     */
    protected static $entityTypeId = 'view';
    
    /**
     * {@inheritdoc}
     */
    protected static $resourceTypeName = 'view--view';
    
    /**
     * {@inheritdoc}
     *
     * @var \Drupal\views\ViewEntityInterface
     */
    protected $entity;
    
    /**
     * {@inheritdoc}
     */
    protected function setUpAuthorization($method) {
        $this->grantPermissionsToTestedRole([
            'administer views',
        ]);
    }
    
    /**
     * {@inheritdoc}
     */
    protected function createEntity() {
        $view = View::create([
            'id' => 'test_rest',
            'label' => 'Test REST',
        ]);
        $view->save();
        return $view;
    }
    
    /**
     * {@inheritdoc}
     */
    protected function getExpectedDocument() {
        $self_url = Url::fromUri('base:/jsonapi/view/view/' . $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' => 'view--view',
                'links' => [
                    'self' => [
                        'href' => $self_url,
                    ],
                ],
                'attributes' => [
                    'base_field' => 'nid',
                    'base_table' => 'node',
                    'dependencies' => [],
                    'description' => '',
                    'display' => [
                        'default' => [
                            'display_plugin' => 'default',
                            'id' => 'default',
                            'display_title' => 'Default',
                            'position' => 0,
                            'display_options' => [
                                'display_extenders' => [],
                            ],
                            'cache_metadata' => [
                                'max-age' => -1,
                                'contexts' => [
                                    'languages:language_interface',
                                    'url.query_args',
                                ],
                                'tags' => [],
                            ],
                        ],
                    ],
                    'label' => 'Test REST',
                    'langcode' => 'en',
                    'module' => 'views',
                    'status' => TRUE,
                    'tag' => '',
                    'drupal_internal__id' => 'test_rest',
                ],
            ],
        ];
    }
    
    /**
     * {@inheritdoc}
     */
    protected function getPostDocument() {
        // @todo Update in https://www.drupal.org/node/2300677.
        return [];
    }

}

Classes

Title Deprecated Summary
ViewTest JSON:API integration test for the "View" config entity type.

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