You are here

protected function EditorTest::getExpectedDocument in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/jsonapi/tests/src/Functional/EditorTest.php \Drupal\Tests\jsonapi\Functional\EditorTest::getExpectedDocument()

Returns the expected JSON:API document for the entity.

Return value

array A JSON:API response document.

Overrides ResourceTestBase::getExpectedDocument

See also

::createEntity()

File

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

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' => [
            'ckeditor',
          ],
        ],
        'editor' => 'ckeditor',
        'image_upload' => [
          'status' => FALSE,
          'scheme' => 'public',
          'directory' => 'inline-images',
          'max_size' => '',
          'max_dimensions' => [
            'width' => NULL,
            'height' => NULL,
          ],
        ],
        'langcode' => 'en',
        'settings' => [
          'toolbar' => [
            'rows' => [
              [
                [
                  'name' => 'Formatting',
                  'items' => [
                    'Bold',
                    'Italic',
                  ],
                ],
                [
                  'name' => 'Links',
                  'items' => [
                    'DrupalLink',
                    'DrupalUnlink',
                  ],
                ],
                [
                  'name' => 'Lists',
                  'items' => [
                    'BulletedList',
                    'NumberedList',
                  ],
                ],
                [
                  'name' => 'Media',
                  'items' => [
                    'Blockquote',
                    'DrupalImage',
                  ],
                ],
                [
                  'name' => 'Tools',
                  'items' => [
                    'Source',
                  ],
                ],
              ],
            ],
          ],
          'plugins' => [
            'language' => [
              'language_list' => 'un',
            ],
          ],
        ],
        'status' => TRUE,
        'drupal_internal__format' => 'llama',
      ],
    ],
  ];
}