function JsonApiFunctionalMultilingualTest::testDeleteMultilingual
Tests deleting multilingual content.
File
- 
              core/modules/ jsonapi/ tests/ src/ Functional/ JsonApiFunctionalMultilingualTest.php, line 306 
Class
- JsonApiFunctionalMultilingualTest
- Tests JSON:API multilingual support.
Namespace
Drupal\Tests\jsonapi\FunctionalCode
public function testDeleteMultilingual() : void {
  $this->config('jsonapi.settings')
    ->set('read_only', FALSE)
    ->save(TRUE);
  $this->grantPermissions(Role::load(RoleInterface::ANONYMOUS_ID), [
    'bypass node access',
  ]);
  $response = $this->request('DELETE', Url::fromUri('base:/ca/jsonapi/node/article/' . $this->nodes[0]
    ->uuid()), []);
  $this->assertSame(405, $response->getStatusCode());
  $document = $this->getDocumentFromResponse($response, FALSE);
  $this->assertSame('Deleting a resource object translation is not yet supported. See https://www.drupal.org/docs/8/modules/jsonapi/translations.', $document['errors'][0]['detail']);
  $response = $this->request('DELETE', Url::fromUri('base:/ca-fr/jsonapi/node/article/' . $this->nodes[0]
    ->uuid()), []);
  $this->assertSame(405, $response->getStatusCode());
  $document = $this->getDocumentFromResponse($response, FALSE);
  $this->assertSame('Deleting a resource object translation is not yet supported. See https://www.drupal.org/docs/8/modules/jsonapi/translations.', $document['errors'][0]['detail']);
  $response = $this->request('DELETE', Url::fromUri('base:/jsonapi/node/article/' . $this->nodes[0]
    ->uuid()), []);
  $this->assertSame(204, $response->getStatusCode());
  $this->assertNull(Node::load($this->nodes[0]
    ->id()));
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
