grantPermissionsToTestedRole(['administer node display']); } /** * {@inheritdoc} */ protected function createEntity() { // Create a "Camelids" node type. $camelids = NodeType::create([ 'name' => 'Camelids', 'type' => 'camelids', ]); $camelids->save(); // Create a view display. $view_display = EntityViewDisplay::create([ 'targetEntityType' => 'node', 'bundle' => 'camelids', 'mode' => 'default', 'status' => TRUE, ]); $view_display->save(); return $view_display; } /** * {@inheritdoc} */ protected function getExpectedDocument(): array { $self_url = Url::fromUri('base:/jsonapi/entity_view_display/entity_view_display/' . $this->entity->uuid())->setAbsolute()->toString(TRUE)->getGeneratedUrl(); return [ 'jsonapi' => [ 'meta' => [ 'links' => [ 'self' => ['href' => JsonApiSpec::SUPPORTED_SPECIFICATION_PERMALINK], ], ], 'version' => JsonApiSpec::SUPPORTED_SPECIFICATION_VERSION, ], 'links' => [ 'self' => ['href' => $self_url], ], 'data' => [ 'id' => $this->entity->uuid(), 'type' => 'entity_view_display--entity_view_display', 'links' => [ 'self' => ['href' => $self_url], ], 'attributes' => [ 'bundle' => 'camelids', 'content' => [ 'links' => [ 'region' => 'content', 'weight' => 100, 'settings' => [], 'third_party_settings' => [], ], ], 'dependencies' => [ 'config' => [ 'node.type.camelids', ], 'module' => [ 'user', ], ], 'hidden' => [], 'langcode' => 'en', 'mode' => 'default', 'status' => TRUE, 'targetEntityType' => 'node', 'drupal_internal__id' => 'node.camelids.default', ], ], ]; } /** * {@inheritdoc} */ protected function getPostDocument(): array { // @todo Update in https://www.drupal.org/node/2300677. return []; } /** * {@inheritdoc} */ protected function getExpectedUnauthorizedAccessMessage($method): string { return "The 'administer node display' permission is required."; } /** * {@inheritdoc} */ protected function createAnotherEntity($key) { NodeType::create([ 'name' => 'Pachyderms', 'type' => 'pachyderms', ])->save(); $entity = EntityViewDisplay::create([ 'targetEntityType' => 'node', 'bundle' => 'pachyderms', 'mode' => 'default', 'status' => TRUE, ]); $entity->save(); return $entity; } }