You are here

protected static function CommentTest::getIncludePermissions in JSON:API 8

Same name and namespace in other branches
  1. 8.2 tests/src/Functional/CommentTest.php \Drupal\Tests\jsonapi\Functional\CommentTest::getIncludePermissions()

Authorize the user under test with additional permissions to view includes.

Return value

array An array of special permissions to be granted for certain relationship paths where the keys are relationships paths and values are an array of permissions.

Overrides ResourceTestBase::getIncludePermissions

File

tests/src/Functional/CommentTest.php, line 426

Class

CommentTest
JSON API integration test for the "Comment" content entity type.

Namespace

Drupal\Tests\jsonapi\Functional

Code

protected static function getIncludePermissions() {
  return [
    'type' => [
      'administer comment types',
    ],
    'uid' => [
      'access user profiles',
    ],
  ];
}