You are here

protected function ResourceTestBase::refreshTestStateAfterRestConfigChange in Drupal 8

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

Refreshes the state of the tester to be in sync with the testee.

Should be called after every change made to:

  • RestResourceConfig entities
  • the 'rest.settings' simple configuration
12 calls to ResourceTestBase::refreshTestStateAfterRestConfigChange()
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.
EntityResourceTestBase::testPatch in core/modules/rest/tests/src/Functional/EntityResource/EntityResourceTestBase.php
Tests a PATCH request for an entity, plus edge cases to ensure good DX.
EntityResourceTestBase::testPost in core/modules/rest/tests/src/Functional/EntityResource/EntityResourceTestBase.php
Tests a POST request for an entity, plus edge cases to ensure good DX.
FileUploadResourceTestBase::setUp in core/modules/rest/tests/src/Functional/FileUploadResourceTestBase.php

... See full list

File

core/modules/rest/tests/src/Functional/ResourceTestBase.php, line 168

Class

ResourceTestBase
Subclass this for every REST resource, every format and every auth provider.

Namespace

Drupal\Tests\rest\Functional

Code

protected function refreshTestStateAfterRestConfigChange() {

  // Ensure that the cache tags invalidator has its internal values reset.
  // Otherwise the http_response cache tag invalidation won't work.
  $this
    ->refreshVariables();

  // Tests using this base class may trigger route rebuilds due to changes to
  // RestResourceConfig entities or 'rest.settings'. Ensure the test generates
  // routes using an up-to-date router.
  \Drupal::service('router.builder')
    ->rebuildIfNeeded();
}