Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / modules / rest / tests / src / Functional / EntityResource / Term / TermResourceTestBase.php
index 85a4b1a1077f36690d581359d84e66c4ded67c3a..7fd07e5ec94030bf642fae8edc4008960d8a7bd1 100644 (file)
 
 namespace Drupal\Tests\rest\Functional\EntityResource\Term;
 
-use Drupal\Core\Cache\Cache;
-use Drupal\taxonomy\Entity\Term;
-use Drupal\taxonomy\Entity\Vocabulary;
-use Drupal\Tests\rest\Functional\BcTimestampNormalizerUnixTestTrait;
-use Drupal\Tests\rest\Functional\EntityResource\EntityResourceTestBase;
-use GuzzleHttp\RequestOptions;
+@trigger_error('The ' . __NAMESPACE__ . '\TermResourceTestBase is deprecated in Drupal 8.6.x and will be removed before Drupal 9.0.0. Instead, use Drupal\Tests\taxonomy\Functional\Rest\TermResourceTestBase. See https://www.drupal.org/node/2971931.', E_USER_DEPRECATED);
 
-abstract class TermResourceTestBase extends EntityResourceTestBase {
-
-  use BcTimestampNormalizerUnixTestTrait;
-
-  /**
-   * {@inheritdoc}
-   */
-  public static $modules = ['taxonomy', 'path'];
-
-  /**
-   * {@inheritdoc}
-   */
-  protected static $entityTypeId = 'taxonomy_term';
-
-  /**
-   * {@inheritdoc}
-   */
-  protected static $patchProtectedFieldNames = [
-    'changed',
-  ];
-
-  /**
-   * @var \Drupal\taxonomy\TermInterface
-   */
-  protected $entity;
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function setUpAuthorization($method) {
-    switch ($method) {
-      case 'GET':
-        $this->grantPermissionsToTestedRole(['access content']);
-        break;
-
-      case 'POST':
-        $this->grantPermissionsToTestedRole(['create terms in camelids']);
-        break;
-
-      case 'PATCH':
-        // Grant the 'create url aliases' permission to test the case when
-        // the path field is accessible, see
-        // \Drupal\Tests\rest\Functional\EntityResource\Node\NodeResourceTestBase
-        // for a negative test.
-        $this->grantPermissionsToTestedRole(['edit terms in camelids', 'create url aliases']);
-        break;
-
-      case 'DELETE':
-        $this->grantPermissionsToTestedRole(['delete terms in camelids']);
-        break;
-
-    }
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function createEntity() {
-    $vocabulary = Vocabulary::load('camelids');
-    if (!$vocabulary) {
-      // Create a "Camelids" vocabulary.
-      $vocabulary = Vocabulary::create([
-        'name' => 'Camelids',
-        'vid' => 'camelids',
-      ]);
-      $vocabulary->save();
-    }
-
-    // Create a "Llama" taxonomy term.
-    $term = Term::create(['vid' => $vocabulary->id()])
-      ->setName('Llama')
-      ->setDescription("It is a little known fact that llamas cannot count higher than seven.")
-      ->setChangedTime(123456789)
-      ->set('path', '/llama');
-    $term->save();
-
-    return $term;
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function getExpectedNormalizedEntity() {
-    return [
-      'tid' => [
-        ['value' => 1],
-      ],
-      'uuid' => [
-        ['value' => $this->entity->uuid()],
-      ],
-      'vid' => [
-        [
-          'target_id' => 'camelids',
-          'target_type' => 'taxonomy_vocabulary',
-          'target_uuid' => Vocabulary::load('camelids')->uuid(),
-        ],
-      ],
-      'name' => [
-        ['value' => 'Llama'],
-      ],
-      'description' => [
-        [
-          'value' => 'It is a little known fact that llamas cannot count higher than seven.',
-          'format' => NULL,
-          'processed' => "<p>It is a little known fact that llamas cannot count higher than seven.</p>\n",
-        ],
-      ],
-      'parent' => [],
-      'weight' => [
-        ['value' => 0],
-      ],
-      'langcode' => [
-        [
-          'value' => 'en',
-        ],
-      ],
-      'changed' => [
-        $this->formatExpectedTimestampItemValues($this->entity->getChangedTime()),
-      ],
-      'default_langcode' => [
-        [
-          'value' => TRUE,
-        ],
-      ],
-      'path' => [
-        [
-          'alias' => '/llama',
-          'pid' => 1,
-          'langcode' => 'en',
-        ],
-      ],
-    ];
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function getNormalizedPostEntity() {
-    return [
-      'vid' => [
-        [
-          'target_id' => 'camelids',
-        ],
-      ],
-      'name' => [
-        [
-          'value' => 'Dramallama',
-        ],
-      ],
-      'description' => [
-        [
-          'value' => 'Dramallamas are the coolest camelids.',
-          'format' => NULL,
-        ],
-      ],
-    ];
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function getExpectedUnauthorizedAccessMessage($method) {
-    if ($this->config('rest.settings')->get('bc_entity_resource_permissions')) {
-      return parent::getExpectedUnauthorizedAccessMessage($method);
-    }
-
-    switch ($method) {
-      case 'GET':
-        return "The 'access content' permission is required.";
-      case 'POST':
-        return "The following permissions are required: 'create terms in camelids' OR 'administer taxonomy'.";
-      case 'PATCH':
-        return "The following permissions are required: 'edit terms in camelids' OR 'administer taxonomy'.";
-      case 'DELETE':
-        return "The following permissions are required: 'delete terms in camelids' OR 'administer taxonomy'.";
-      default:
-        return parent::getExpectedUnauthorizedAccessMessage($method);
-    }
-  }
-
-  /**
-   * Tests PATCHing a term's path.
-   *
-   * For a negative test, see the similar test coverage for Node.
-   *
-   * @see \Drupal\Tests\rest\Functional\EntityResource\Node\NodeResourceTestBase::testPatchPath()
-   */
-  public function testPatchPath() {
-    $this->initAuthentication();
-    $this->provisionEntityResource();
-    $this->setUpAuthorization('GET');
-    $this->setUpAuthorization('PATCH');
-
-    $url = $this->getEntityResourceUrl()->setOption('query', ['_format' => static::$format]);
-
-    // GET term's current normalization.
-    $response = $this->request('GET', $url, $this->getAuthenticationRequestOptions('GET'));
-    $normalization = $this->serializer->decode((string) $response->getBody(), static::$format);
-
-    // Change term's path alias.
-    $normalization['path'][0]['alias'] .= 's-rule-the-world';
-
-    // Create term PATCH request.
-    $request_options = [];
-    $request_options[RequestOptions::HEADERS]['Content-Type'] = static::$mimeType;
-    $request_options = array_merge_recursive($request_options, $this->getAuthenticationRequestOptions('PATCH'));
-    $request_options[RequestOptions::BODY] = $this->serializer->encode($normalization, static::$format);
-
-    // PATCH request: 200.
-    $response = $this->request('PATCH', $url, $request_options);
-    $this->assertResourceResponse(200, FALSE, $response);
-    $updated_normalization = $this->serializer->decode((string) $response->getBody(), static::$format);
-    $this->assertSame($normalization['path'], $updated_normalization['path']);
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function getExpectedCacheTags() {
-    return Cache::mergeTags(parent::getExpectedCacheTags(), ['config:filter.format.plain_text', 'config:filter.settings']);
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function getExpectedCacheContexts() {
-    return Cache::mergeContexts(['url.site'], $this->container->getParameter('renderer.config')['required_cache_contexts']);
-  }
+use Drupal\Tests\taxonomy\Functional\Rest\TermResourceTestBase as TermResourceTestBaseReal;
 
+/**
+ * @deprecated in Drupal 8.6.x. Will be removed before Drupal 9.0.0. Use
+ *   Drupal\Tests\taxonomy\Functional\Rest\TermResourceTestBase instead.
+ *
+ * @see https://www.drupal.org/node/2971931
+ */
+abstract class TermResourceTestBase extends TermResourceTestBaseReal {
 }