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 / Comment / CommentResourceTestBase.php
index d3098545cdfe0d06cd14c7a8d75a30fed601937d..4b449025d936c4e31c3c4bb23f46653cba9c9135 100644 (file)
 
 namespace Drupal\Tests\rest\Functional\EntityResource\Comment;
 
-use Drupal\comment\Entity\Comment;
-use Drupal\comment\Entity\CommentType;
-use Drupal\comment\Tests\CommentTestTrait;
-use Drupal\Core\Cache\Cache;
-use Drupal\entity_test\Entity\EntityTest;
-use Drupal\Tests\rest\Functional\BcTimestampNormalizerUnixTestTrait;
-use Drupal\Tests\rest\Functional\EntityResource\EntityResourceTestBase;
-use Drupal\user\Entity\User;
-use GuzzleHttp\RequestOptions;
+@trigger_error('The ' . __NAMESPACE__ . '\CommentResourceTestBase is deprecated in Drupal 8.6.x and will be removed before Drupal 9.0.0. Instead, use Drupal\Tests\comment\Functional\Rest\CommentResourceTestBase. See https://www.drupal.org/node/2971931.', E_USER_DEPRECATED);
 
-abstract class CommentResourceTestBase extends EntityResourceTestBase {
-
-  use CommentTestTrait, BcTimestampNormalizerUnixTestTrait;
-
-  /**
-   * {@inheritdoc}
-   */
-  public static $modules = ['comment', 'entity_test'];
-
-  /**
-   * {@inheritdoc}
-   */
-  protected static $entityTypeId = 'comment';
-
-  /**
-   * {@inheritdoc}
-   */
-  protected static $patchProtectedFieldNames = [
-    'status',
-    'pid',
-    'entity_id',
-    'uid',
-    'name',
-    'homepage',
-    'created',
-    'changed',
-    'thread',
-    'entity_type',
-    'field_name',
-  ];
-
-  /**
-   * @var \Drupal\comment\CommentInterface
-   */
-  protected $entity;
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function setUpAuthorization($method) {
-    switch ($method) {
-      case 'GET':
-        $this->grantPermissionsToTestedRole(['access comments', 'view test entity']);
-        break;
-      case 'POST':
-        $this->grantPermissionsToTestedRole(['post comments']);
-        break;
-      case 'PATCH':
-        // Anononymous users are not ever allowed to edit their own comments. To
-        // be able to test PATCHing comments as the anonymous user, the more
-        // permissive 'administer comments' permission must be granted.
-        // @see \Drupal\comment\CommentAccessControlHandler::checkAccess
-        if (static::$auth) {
-          $this->grantPermissionsToTestedRole(['edit own comments']);
-        }
-        else {
-          $this->grantPermissionsToTestedRole(['administer comments']);
-        }
-        break;
-      case 'DELETE':
-        $this->grantPermissionsToTestedRole(['administer comments']);
-        break;
-    }
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function createEntity() {
-    // Create a "bar" bundle for the "entity_test" entity type and create.
-    $bundle = 'bar';
-    entity_test_create_bundle($bundle, NULL, 'entity_test');
-
-    // Create a comment field on this bundle.
-    $this->addDefaultCommentField('entity_test', 'bar', 'comment');
-
-    // Create a "Camelids" test entity that the comment will be assigned to.
-    $commented_entity = EntityTest::create([
-      'name' => 'Camelids',
-      'type' => 'bar',
-    ]);
-    $commented_entity->save();
-
-    // Create a "Llama" comment.
-    $comment = Comment::create([
-      'comment_body' => [
-        'value' => 'The name "llama" was adopted by European settlers from native Peruvians.',
-        'format' => 'plain_text',
-      ],
-      'entity_id' => $commented_entity->id(),
-      'entity_type' => 'entity_test',
-      'field_name' => 'comment',
-    ]);
-    $comment->setSubject('Llama')
-      ->setOwnerId(static::$auth ? $this->account->id() : 0)
-      ->setPublished(TRUE)
-      ->setCreatedTime(123456789)
-      ->setChangedTime(123456789);
-    $comment->save();
-
-    return $comment;
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function getExpectedNormalizedEntity() {
-    $author = User::load($this->entity->getOwnerId());
-    return [
-      'cid' => [
-        ['value' => 1],
-      ],
-      'uuid' => [
-        ['value' => $this->entity->uuid()],
-      ],
-      'langcode' => [
-        [
-          'value' => 'en',
-        ],
-      ],
-      'comment_type' => [
-        [
-          'target_id' => 'comment',
-          'target_type' => 'comment_type',
-          'target_uuid' => CommentType::load('comment')->uuid(),
-        ],
-      ],
-      'subject' => [
-        [
-          'value' => 'Llama',
-        ],
-      ],
-      'status' => [
-        [
-          'value' => TRUE,
-        ],
-      ],
-      'created' => [
-        $this->formatExpectedTimestampItemValues(123456789),
-      ],
-      'changed' => [
-        $this->formatExpectedTimestampItemValues($this->entity->getChangedTime()),
-      ],
-      'default_langcode' => [
-        [
-          'value' => TRUE,
-        ],
-      ],
-      'uid' => [
-        [
-          'target_id' => (int) $author->id(),
-          'target_type' => 'user',
-          'target_uuid' => $author->uuid(),
-          'url' => base_path() . 'user/' . $author->id(),
-        ],
-      ],
-      'pid' => [],
-      'entity_type' => [
-        [
-          'value' => 'entity_test',
-        ],
-      ],
-      'entity_id' => [
-        [
-          'target_id' => 1,
-          'target_type' => 'entity_test',
-          'target_uuid' => EntityTest::load(1)->uuid(),
-          'url' => base_path() . 'entity_test/1',
-        ],
-      ],
-      'field_name' => [
-        [
-          'value' => 'comment',
-        ],
-      ],
-      'name' => [],
-      'homepage' => [],
-      'thread' => [
-        [
-          'value' => '01/',
-        ],
-      ],
-      'comment_body' => [
-        [
-          'value' => 'The name "llama" was adopted by European settlers from native Peruvians.',
-          'format' => 'plain_text',
-          'processed' => '<p>The name &quot;llama&quot; was adopted by European settlers from native Peruvians.</p>' . "\n",
-        ],
-      ],
-    ];
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function getNormalizedPostEntity() {
-    return [
-      'comment_type' => [
-        [
-          'target_id' => 'comment',
-        ],
-      ],
-      'entity_type' => [
-        [
-          'value' => 'entity_test',
-        ],
-      ],
-      'entity_id' => [
-        [
-          'target_id' => (int) EntityTest::load(1)->id(),
-        ],
-      ],
-      'field_name' => [
-        [
-          'value' => 'comment',
-        ],
-      ],
-      'subject' => [
-        [
-          'value' => 'Dramallama',
-        ],
-      ],
-      'comment_body' => [
-        [
-          'value' => 'Llamas are awesome.',
-          'format' => 'plain_text',
-        ],
-      ],
-    ];
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function getNormalizedPatchEntity() {
-    return array_diff_key($this->getNormalizedPostEntity(), ['entity_type' => TRUE, 'entity_id' => TRUE, 'field_name' => TRUE]);
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function getExpectedCacheTags() {
-    return Cache::mergeTags(parent::getExpectedCacheTags(), ['config:filter.format.plain_text']);
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function getExpectedCacheContexts() {
-    return Cache::mergeContexts(['languages:language_interface', 'theme'], parent::getExpectedCacheContexts());
-  }
-
-  /**
-   * Tests POSTing a comment without critical base fields.
-   *
-   * testPost() is testing with the most minimal normalization possible: the one
-   * returned by ::getNormalizedPostEntity().
-   *
-   * But Comment entities have some very special edge cases:
-   * - base fields that are not marked as required in
-   *   \Drupal\comment\Entity\Comment::baseFieldDefinitions() yet in fact are
-   *   required.
-   * - base fields that are marked as required, but yet can still result in
-   *   validation errors other than "missing required field".
-   */
-  public function testPostDxWithoutCriticalBaseFields() {
-    $this->initAuthentication();
-    $this->provisionEntityResource();
-    $this->setUpAuthorization('POST');
-
-    $url = $this->getEntityResourcePostUrl()->setOption('query', ['_format' => static::$format]);
-    $request_options = [];
-    $request_options[RequestOptions::HEADERS]['Accept'] = static::$mimeType;
-    $request_options[RequestOptions::HEADERS]['Content-Type'] = static::$mimeType;
-    $request_options = array_merge_recursive($request_options, $this->getAuthenticationRequestOptions('POST'));
-
-    // DX: 422 when missing 'entity_type' field.
-    $request_options[RequestOptions::BODY] = $this->serializer->encode(array_diff_key($this->getNormalizedPostEntity(), ['entity_type' => TRUE]), static::$format);
-    $response = $this->request('POST', $url, $request_options);
-    // @todo Uncomment, remove next 3 lines in https://www.drupal.org/node/2820364.
-    $this->assertSame(500, $response->getStatusCode());
-    $this->assertSame(['text/plain; charset=UTF-8'], $response->getHeader('Content-Type'));
-    $this->assertStringStartsWith('The website encountered an unexpected error. Please try again later.</br></br><em class="placeholder">Symfony\Component\HttpKernel\Exception\HttpException</em>: Internal Server Error in <em class="placeholder">Drupal\rest\Plugin\rest\resource\EntityResource-&gt;post()</em>', (string) $response->getBody());
-    // $this->assertResourceErrorResponse(422, "Unprocessable Entity: validation failed.\nentity_type: This value should not be null.\n", $response);
-
-    // DX: 422 when missing 'entity_id' field.
-    $request_options[RequestOptions::BODY] = $this->serializer->encode(array_diff_key($this->getNormalizedPostEntity(), ['entity_id' => TRUE]), static::$format);
-    // @todo Remove the try/catch in favor of the two commented lines in
-    // https://www.drupal.org/node/2820364.
-    try {
-      $response = $this->request('POST', $url, $request_options);
-      // This happens on DrupalCI.
-      // $this->assertSame(500, $response->getStatusCode());
-    }
-    catch (\Exception $e) {
-      // This happens on Wim's local machine.
-      // $this->assertSame("Error: Call to a member function get() on null\nDrupal\\comment\\Plugin\\Validation\\Constraint\\CommentNameConstraintValidator->getAnonymousContactDetailsSetting()() (Line: 96)\n", $e->getMessage());
-    }
-    // $response = $this->request('POST', $url, $request_options);
-    // $this->assertResourceErrorResponse(422, "Unprocessable Entity: validation failed.\nentity_type: This value should not be null.\n", $response);
-
-    // DX: 422 when missing 'entity_type' field.
-    $request_options[RequestOptions::BODY] = $this->serializer->encode(array_diff_key($this->getNormalizedPostEntity(), ['field_name' => TRUE]), static::$format);
-    $response = $this->request('POST', $url, $request_options);
-    // @todo Uncomment, remove next 2 lines in https://www.drupal.org/node/2820364.
-    $this->assertSame(500, $response->getStatusCode());
-    $this->assertSame(['text/plain; charset=UTF-8'], $response->getHeader('Content-Type'));
-    // $this->assertResourceErrorResponse(422, "Unprocessable Entity: validation failed.\nfield_name: This value should not be null.\n", $response);
-  }
-
-  /**
-   * {@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 comments' permission is required and the comment must be published.";
-      case 'POST';
-        return "The 'post comments' permission is required.";
-      default:
-        return parent::getExpectedUnauthorizedAccessMessage($method);
-    }
-  }
-
-  /**
-   * Tests POSTing a comment with and without 'skip comment approval'
-   */
-  public function testPostSkipCommentApproval() {
-    $this->initAuthentication();
-    $this->provisionEntityResource();
-    $this->setUpAuthorization('POST');
-
-    // Create request.
-    $request_options = [];
-    $request_options[RequestOptions::HEADERS]['Accept'] = static::$mimeType;
-    $request_options[RequestOptions::HEADERS]['Content-Type'] = static::$mimeType;
-    $request_options = array_merge_recursive($request_options, $this->getAuthenticationRequestOptions('POST'));
-    $request_options[RequestOptions::BODY] = $this->serializer->encode($this->getNormalizedPostEntity(), static::$format);
-
-    $url = $this->getEntityResourcePostUrl()->setOption('query', ['_format' => static::$format]);
-
-    // Status should be FALSE when posting as anonymous.
-    $response = $this->request('POST', $url, $request_options);
-    $unserialized = $this->serializer->deserialize((string) $response->getBody(), get_class($this->entity), static::$format);
-    $this->assertResourceResponse(201, FALSE, $response);
-    $this->assertFalse($unserialized->getStatus());
-
-    // Grant anonymous permission to skip comment approval.
-    $this->grantPermissionsToTestedRole(['skip comment approval']);
-
-    // Status should be TRUE when posting as anonymous and skip comment approval.
-    $response = $this->request('POST', $url, $request_options);
-    $unserialized = $this->serializer->deserialize((string) $response->getBody(), get_class($this->entity), static::$format);
-    $this->assertResourceResponse(201, FALSE, $response);
-    $this->assertTrue($unserialized->getStatus());
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function getExpectedUnauthorizedAccessCacheability() {
-    // @see \Drupal\comment\CommentAccessControlHandler::checkAccess()
-    return parent::getExpectedUnauthorizedAccessCacheability()
-      ->addCacheTags(['comment:1']);
-  }
+use Drupal\Tests\comment\Functional\Rest\CommentResourceTestBase as CommentResourceTestBaseReal;
 
+/**
+ * @deprecated in Drupal 8.6.x. Will be removed before Drupal 9.0.0. Use
+ *   Drupal\Tests\comment\Functional\Rest\CommentResourceTestBase instead.
+ *
+ * @see https://www.drupal.org/node/2971931
+ */
+abstract class CommentResourceTestBase extends CommentResourceTestBaseReal {
 }