You are here

protected function EntityResourceTestBase::provisionEntityResource in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/rest/tests/src/Functional/EntityResource/EntityResourceTestBase.php \Drupal\Tests\rest\Functional\EntityResource\EntityResourceTestBase::provisionEntityResource()

Provides an entity resource.

Parameters

bool $single_format: Provisions a single-format entity REST resource. Defaults to FALSE.

17 calls to EntityResourceTestBase::provisionEntityResource()
CommentResourceTestBase::testPostDxWithoutCriticalBaseFields in core/modules/comment/tests/src/Functional/Rest/CommentResourceTestBase.php
Tests POSTing a comment without critical base fields.
CommentResourceTestBase::testPostSkipCommentApproval in core/modules/comment/tests/src/Functional/Rest/CommentResourceTestBase.php
Tests POSTing a comment with and without 'skip comment approval'
ConfigurableLanguageResourceTestBase::testGetDefaultConfig in core/modules/language/tests/src/Functional/Rest/ConfigurableLanguageResourceTestBase.php
Test a GET request for a default config entity, which has a _core key.
EntityResourceTestBase::testDelete in core/modules/rest/tests/src/Functional/EntityResource/EntityResourceTestBase.php
Tests a DELETE request for an entity, plus edge cases to ensure good DX.
EntityResourceTestBase::testGet in core/modules/rest/tests/src/Functional/EntityResource/EntityResourceTestBase.php
Test a GET request for an entity, plus edge cases to ensure good DX.

... See full list

File

core/modules/rest/tests/src/Functional/EntityResource/EntityResourceTestBase.php, line 166

Class

EntityResourceTestBase
Even though there is the generic EntityResource, it's necessary for every entity type to have its own test, because they each have different fields, validation constraints, et cetera. It's not because the generic case works, that every case…

Namespace

Drupal\Tests\rest\Functional\EntityResource

Code

protected function provisionEntityResource($single_format = FALSE) {
  if ($existing = $this->resourceConfigStorage
    ->load(static::$resourceConfigId)) {
    $existing
      ->delete();
  }
  $format = $single_format ? [
    static::$format,
  ] : [
    static::$format,
    'foobar',
  ];

  // It's possible to not have any authentication providers enabled, when
  // testing public (anonymous) usage of a REST resource.
  $auth = isset(static::$auth) ? [
    static::$auth,
  ] : [];
  $this
    ->provisionResource($format, $auth);
}