Skip to content
Snippets Groups Projects
Verified Commit 1368057e authored by Lee Rowlands's avatar Lee Rowlands
Browse files

Issue #3034786 by Wim Leers, BR0kEN, gabesullice, dutchyoda, eelkeblok,...

Issue #3034786 by Wim Leers, BR0kEN, gabesullice, dutchyoda, eelkeblok, axicdv: ResourceIdentifier::getVirtualOrMissingResourceIdentifier() ignores field aliases; causes $relatable_resource_types field to be empty and results in an error
parent 7f458382
No related branches found
No related tags found
6 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!1012Issue #3226887: Hreflang on non-canonical content pages,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10,!596Issue #3046532: deleting an entity reference field, used in a contextual view, makes the whole site unrecoverable,!496Issue #2463967: Use .user.ini file for PHP settings,!144Issue #2666286: Clean up menu_ui to conform to Drupal coding standards
...@@ -419,7 +419,8 @@ protected static function getVirtualOrMissingResourceIdentifier(EntityReferenceI ...@@ -419,7 +419,8 @@ protected static function getVirtualOrMissingResourceIdentifier(EntityReferenceI
assert($host_entity instanceof EntityInterface); assert($host_entity instanceof EntityInterface);
$resource_type = $resource_type_repository->get($host_entity->getEntityTypeId(), $host_entity->bundle()); $resource_type = $resource_type_repository->get($host_entity->getEntityTypeId(), $host_entity->bundle());
assert($resource_type instanceof ResourceType); assert($resource_type instanceof ResourceType);
$relatable_resource_types = $resource_type->getRelatableResourceTypesByField($field->getName()); $relatable_resource_types = $resource_type->getRelatableResourceTypesByField($resource_type->getPublicName($field->getName()));
assert(!empty($relatable_resource_types));
$get_metadata = function ($type) { $get_metadata = function ($type) {
return [ return [
'links' => [ 'links' => [
......
...@@ -1187,4 +1187,52 @@ public function testLeakCacheMetadataInOmitted() { ...@@ -1187,4 +1187,52 @@ public function testLeakCacheMetadataInOmitted() {
$this->assertEquals($term->uuid(), Json::decode((string) $response->getBody())['included'][0]['id'], 'JSON API response contains "included" taxonomy term as it became published, i.e accessible.'); $this->assertEquals($term->uuid(), Json::decode((string) $response->getBody())['included'][0]['id'], 'JSON API response contains "included" taxonomy term as it became published, i.e accessible.');
} }
/**
* Tests that "virtual/missing" resources can exist for renamed fields.
*
* @see https://www.drupal.org/project/jsonapi/issues/3034786
* @see https://www.drupal.org/project/jsonapi_extras/issues/3035544
*/
public function testAliasedFieldsWithVirtualRelationships() {
// Set up the data model.
$this->assertTrue($this->container->get('module_installer')->install([
'taxonomy',
'jsonapi_test_resource_type_building',
], TRUE), 'Installed modules.');
\Drupal::state()->set('jsonapi_test_resource_type_builder.resource_type_field_aliases', [
'node--article' => [
'field_tags' => 'field_aliased',
],
]);
$this->rebuildAll();
$tag_term = Term::create([
'vid' => 'tags',
'name' => 'test_tag',
]);
$tag_term->save();
$article_node = Node::create([
'type' => 'article',
'title' => 'test_article',
'field_tags' => ['target_id' => $tag_term->id()],
]);
$article_node->save();
// Make a broken reference.
$tag_term->delete();
// Make sure that accessing a node that references a deleted term does not
// cause an error.
$user = $this->drupalCreateUser(['bypass node access']);
$request_options = [
RequestOptions::AUTH => [
$user->getAccountName(),
$user->pass_raw,
],
];
$response = $this->request('GET', Url::fromUri('internal:/jsonapi/node/article/' . $article_node->uuid()), $request_options);
$this->assertSame(200, $response->getStatusCode());
}
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment