TourTest.php

Same filename in this branch
  1. 8.9.x core/modules/tour/tests/src/Unit/Entity/TourTest.php
  2. 8.9.x core/modules/tour/tests/src/Functional/TourTest.php
Same filename and directory in other branches
  1. 9 core/modules/jsonapi/tests/src/Functional/TourTest.php
  2. 9 core/modules/tour/tests/src/Unit/Entity/TourTest.php
  3. 9 core/modules/tour/tests/src/Functional/TourTest.php
  4. 10 core/modules/tour/tests/src/Unit/Entity/TourTest.php
  5. 10 core/modules/tour/tests/src/Functional/TourTest.php
  6. 10 core/modules/tour/tests/src/Functional/Jsonapi/TourTest.php
  7. 11.x core/modules/tour/tests/src/Unit/Entity/TourTest.php
  8. 11.x core/modules/tour/tests/src/Functional/TourTest.php
  9. 11.x core/modules/tour/tests/src/Functional/Jsonapi/TourTest.php

Namespace

Drupal\Tests\jsonapi\Functional

File

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

View source
<?php

namespace Drupal\Tests\jsonapi\Functional;

use Drupal\Core\Url;
use Drupal\tour\Entity\Tour;

/**
 * JSON:API integration test for the "Tour" config entity type.
 *
 * @group jsonapi
 */
class TourTest extends ResourceTestBase {
    
    /**
     * {@inheritdoc}
     */
    public static $modules = [
        'tour',
    ];
    
    /**
     * {@inheritdoc}
     */
    protected $defaultTheme = 'stark';
    
    /**
     * {@inheritdoc}
     */
    protected static $entityTypeId = 'tour';
    
    /**
     * {@inheritdoc}
     */
    protected static $resourceTypeName = 'tour--tour';
    
    /**
     * {@inheritdoc}
     *
     * @var \Drupal\tour\TourInterface
     */
    protected $entity;
    
    /**
     * {@inheritdoc}
     */
    protected function setUpAuthorization($method) {
        $this->grantPermissionsToTestedRole([
            'access tour',
        ]);
    }
    
    /**
     * {@inheritdoc}
     */
    protected function createEntity() {
        $tour = Tour::create([
            'id' => 'tour-llama',
            'label' => 'Llama tour',
            'langcode' => 'en',
            'module' => 'tour',
            'routes' => [
                [
                    'route_name' => '<front>',
                ],
            ],
            'tips' => [
                'tour-llama-1' => [
                    'id' => 'tour-llama-1',
                    'plugin' => 'text',
                    'label' => 'Llama',
                    'body' => 'Who handle the awesomeness of llamas?',
                    'weight' => 100,
                    'attributes' => [
                        'data-id' => 'tour-llama-1',
                    ],
                ],
            ],
        ]);
        $tour->save();
        return $tour;
    }
    
    /**
     * {@inheritdoc}
     */
    protected function getExpectedDocument() {
        $self_url = Url::fromUri('base:/jsonapi/tour/tour/' . $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' => 'tour--tour',
                'links' => [
                    'self' => [
                        'href' => $self_url,
                    ],
                ],
                'attributes' => [
                    'dependencies' => [],
                    'label' => 'Llama tour',
                    'langcode' => 'en',
                    'module' => 'tour',
                    'routes' => [
                        [
                            'route_name' => '<front>',
                        ],
                    ],
                    'status' => TRUE,
                    'tips' => [
                        'tour-llama-1' => [
                            'id' => 'tour-llama-1',
                            'plugin' => 'text',
                            'label' => 'Llama',
                            'body' => 'Who handle the awesomeness of llamas?',
                            'weight' => 100,
                            'attributes' => [
                                'data-id' => 'tour-llama-1',
                            ],
                        ],
                    ],
                    'drupal_internal__id' => 'tour-llama',
                ],
            ],
        ];
    }
    
    /**
     * {@inheritdoc}
     */
    protected function getPostDocument() {
        // @todo Update in https://www.drupal.org/node/2300677.
    }
    
    /**
     * {@inheritdoc}
     */
    protected function getExpectedUnauthorizedAccessMessage($method) {
        return "The following permissions are required: 'access tour' OR 'administer site configuration'.";
    }

}

Classes

Title Deprecated Summary
TourTest JSON:API integration test for the "Tour" config entity type.

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