function TourTest::getExpectedDocument

Same name and namespace in other branches
  1. 8.9.x core/modules/jsonapi/tests/src/Functional/TourTest.php \Drupal\Tests\jsonapi\Functional\TourTest::getExpectedDocument()
  2. 10 core/modules/tour/tests/src/Functional/Jsonapi/TourTest.php \Drupal\Tests\tour\Functional\Jsonapi\TourTest::getExpectedDocument()
  3. 11.x core/modules/tour/tests/src/Functional/Jsonapi/TourTest.php \Drupal\Tests\tour\Functional\Jsonapi\TourTest::getExpectedDocument()

Overrides ResourceTestBase::getExpectedDocument

File

core/modules/jsonapi/tests/src/Functional/TourTest.php, line 82

Class

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

Namespace

Drupal\Tests\jsonapi\Functional

Code

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,
                        'selector' => '#tour-llama-1',
                    ],
                ],
                'drupal_internal__id' => 'tour-llama',
            ],
        ],
    ];
}

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