grantPermissionsToTestedRole(['administer node fields']); } /** * {@inheritdoc} */ protected function createEntity() { $camelids = NodeType::create([ 'name' => 'Camelids', 'type' => 'camelids', ]); $camelids->save(); $field_storage = FieldStorageConfig::create([ 'field_name' => 'field_llama', 'entity_type' => 'node', 'type' => 'text', ]); $field_storage->save(); $entity = FieldConfig::create([ 'field_storage' => $field_storage, 'bundle' => 'camelids', ]); $entity->save(); return $entity; } /** * {@inheritdoc} */ protected function getExpectedDocument(): array { $self_url = Url::fromUri('base:/jsonapi/field_config/field_config/' . $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' => 'field_config--field_config', 'links' => [ 'self' => ['href' => $self_url], ], 'attributes' => [ 'bundle' => 'camelids', 'default_value' => [], 'default_value_callback' => '', 'dependencies' => [ 'config' => [ 'field.storage.node.field_llama', 'node.type.camelids', ], 'module' => [ 'text', ], ], 'description' => '', 'entity_type' => 'node', 'field_name' => 'field_llama', 'field_type' => 'text', 'label' => 'field_llama', 'langcode' => 'en', 'required' => FALSE, 'settings' => ['allowed_formats' => []], 'status' => TRUE, 'translatable' => TRUE, 'drupal_internal__id' => 'node.camelids.field_llama', ], ], ]; } /** * {@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 fields' permission is required."; } /** * {@inheritdoc} */ protected function createAnotherEntity($key) { NodeType::create([ 'name' => 'Pachyderms', 'type' => 'pachyderms', ])->save(); $field_storage = FieldStorageConfig::create([ 'field_name' => 'field_pachyderm', 'entity_type' => 'node', 'type' => 'text', ]); $field_storage->save(); $entity = FieldConfig::create([ 'field_storage' => $field_storage, 'bundle' => 'pachyderms', ]); $entity->save(); return $entity; } /** * {@inheritdoc} */ protected static function entityAccess(EntityInterface $entity, $operation, AccountInterface $account) { // Also clear the 'field_storage_config' entity access handler cache because // the 'field_config' access handler delegates access to it. // @see \Drupal\field\FieldConfigAccessControlHandler::checkAccess() \Drupal::entityTypeManager()->getAccessControlHandler('field_storage_config')->resetCache(); return parent::entityAccess($entity, $operation, $account); } }