function EditorTest::getExpectedDocument

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

Overrides ResourceTestBase::getExpectedDocument

File

core/modules/jsonapi/tests/src/Functional/EditorTest.php, line 98

Class

EditorTest
JSON:API integration test for the "Editor" config entity type.

Namespace

Drupal\Tests\jsonapi\Functional

Code

protected function getExpectedDocument() {
    $self_url = Url::fromUri('base:/jsonapi/editor/editor/' . $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' => 'editor--editor',
            'links' => [
                'self' => [
                    'href' => $self_url,
                ],
            ],
            'attributes' => [
                'dependencies' => [
                    'config' => [
                        'filter.format.llama',
                    ],
                    'module' => [
                        'ckeditor5',
                    ],
                ],
                'editor' => 'ckeditor5',
                'image_upload' => [
                    'status' => FALSE,
                    'scheme' => 'public',
                    'directory' => 'inline-images',
                    'max_size' => '',
                    'max_dimensions' => [
                        'width' => NULL,
                        'height' => NULL,
                    ],
                ],
                'langcode' => 'en',
                'settings' => [
                    'toolbar' => [
                        'items' => [
                            'heading',
                            'bold',
                            'italic',
                        ],
                    ],
                    'plugins' => [
                        'ckeditor5_heading' => Heading::DEFAULT_CONFIGURATION,
                    ],
                ],
                'status' => TRUE,
                'drupal_internal__format' => 'llama',
            ],
        ],
    ];
}

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