function JsonApiRegressionTest::testAliasedFieldsWithVirtualRelationships

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

Tests that "virtual/missing" resources can exist for renamed fields.

See also

https://www.drupal.org/project/drupal/issues/3034786

https://www.drupal.org/project/drupal/issues/3035544

File

core/modules/jsonapi/tests/src/Functional/JsonApiRegressionTest.php, line 1228

Class

JsonApiRegressionTest
JSON:API regression tests.

Namespace

Drupal\Tests\jsonapi\Functional

Code

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());
}

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