View source
<?php
namespace Drupal\Tests\jsonapi\Functional;
use Drupal\Core\Entity\EntityInterface;
use Drupal\Core\Url;
use Drupal\file\Entity\File;
use Drupal\media\Entity\Media;
use Drupal\media\Entity\MediaType;
use Drupal\Tests\rest\Functional\BcTimestampNormalizerUnixTestTrait;
use Drupal\Tests\jsonapi\Traits\CommonCollectionFilterAccessTestPatternsTrait;
use Drupal\user\Entity\User;
class MediaTest extends ResourceTestBase {
use BcTimestampNormalizerUnixTestTrait;
use CommonCollectionFilterAccessTestPatternsTrait;
public static $modules = [
'media',
];
protected static $entityTypeId = 'media';
protected static $resourceTypeName = 'media--camelids';
protected $entity;
protected static $patchProtectedFieldNames = [
'changed' => NULL,
];
protected function setUpAuthorization($method) {
switch ($method) {
case 'GET':
$this
->grantPermissionsToTestedRole([
'view media',
]);
break;
case 'POST':
if (floatval(\Drupal::VERSION) < 8.5) {
$this
->grantPermissionsToTestedRole([
'create media',
'access content',
]);
}
$this
->grantPermissionsToTestedRole([
'create camelids media',
'access content',
]);
break;
case 'PATCH':
if (floatval(\Drupal::VERSION) < 8.5) {
$this
->grantPermissionsToTestedRole([
'update any media',
]);
}
$this
->grantPermissionsToTestedRole([
'edit any camelids media',
]);
$this
->grantPermissionsToTestedRole([
'access content',
]);
break;
case 'DELETE':
if (floatval(\Drupal::VERSION) < 8.5) {
$this
->grantPermissionsToTestedRole([
'delete any media',
]);
}
$this
->grantPermissionsToTestedRole([
'delete any camelids media',
]);
break;
}
}
protected function createEntity() {
if (!MediaType::load('camelids')) {
$media_type = MediaType::create([
'name' => 'Camelids',
'id' => 'camelids',
'description' => 'Camelids are large, strictly herbivorous animals with slender necks and long legs.',
'source' => 'file',
]);
$media_type
->save();
$source_field = $media_type
->getSource()
->createSourceField($media_type);
$source_field
->getFieldStorageDefinition()
->save();
$source_field
->save();
$media_type
->set('source_configuration', [
'source_field' => $source_field
->getName(),
])
->save();
}
$file = File::create([
'uri' => 'public://llama.txt',
]);
$file
->setPermanent();
$file
->save();
$post_file = File::create([
'uri' => 'public://llama2.txt',
]);
$post_file
->setPermanent();
$post_file
->save();
$file_field_name = floatval(\Drupal::VERSION) >= 8.5 ? 'field_media_file' : 'field_media_file_1';
$media = Media::create([
'bundle' => 'camelids',
$file_field_name => [
'target_id' => $file
->id(),
],
]);
$media
->setName('Llama')
->setPublished(TRUE)
->setCreatedTime(123456789)
->setOwnerId($this->account
->id())
->setRevisionUserId($this->account
->id())
->save();
return $media;
}
protected function getExpectedDocument() {
$file = File::load(1);
$thumbnail = File::load(3);
$author = User::load($this->entity
->getOwnerId());
$self_url = Url::fromUri('base:/jsonapi/media/camelids/' . $this->entity
->uuid())
->setAbsolute()
->toString(TRUE)
->getGeneratedUrl();
$data = [
'jsonapi' => [
'meta' => [
'links' => [
'self' => 'http://jsonapi.org/format/1.0/',
],
],
'version' => '1.0',
],
'links' => [
'self' => $self_url,
],
'data' => [
'id' => $this->entity
->uuid(),
'type' => 'media--camelids',
'links' => [
'self' => $self_url,
],
'attributes' => [
'mid' => 1,
'vid' => 1,
'langcode' => 'en',
'name' => 'Llama',
'status' => TRUE,
'created' => 123456789,
'changed' => $this->entity
->getChangedTime(),
'revision_created' => (int) $this->entity
->getRevisionCreationTime(),
'default_langcode' => TRUE,
'revision_log_message' => NULL,
'revision_translation_affected' => TRUE,
'uuid' => $this->entity
->uuid(),
],
'relationships' => [
'field_media_file' => [
'data' => [
'id' => $file
->uuid(),
'meta' => [
'description' => NULL,
'display' => NULL,
],
'type' => 'file--file',
],
'links' => [
'related' => $self_url . '/field_media_file',
'self' => $self_url . '/relationships/field_media_file',
],
],
'thumbnail' => [
'data' => [
'id' => $thumbnail
->uuid(),
'meta' => [
'alt' => '',
'width' => 180,
'height' => 180,
'title' => NULL,
],
'type' => 'file--file',
],
'links' => [
'related' => $self_url . '/thumbnail',
'self' => $self_url . '/relationships/thumbnail',
],
],
'bundle' => [
'data' => [
'id' => MediaType::load('camelids')
->uuid(),
'type' => 'media_type--media_type',
],
'links' => [
'related' => $self_url . '/bundle',
'self' => $self_url . '/relationships/bundle',
],
],
'uid' => [
'data' => [
'id' => $author
->uuid(),
'type' => 'user--user',
],
'links' => [
'related' => $self_url . '/uid',
'self' => $self_url . '/relationships/uid',
],
],
'revision_user' => [
'data' => [
'id' => $author
->uuid(),
'type' => 'user--user',
],
'links' => [
'related' => $self_url . '/revision_user',
'self' => $self_url . '/relationships/revision_user',
],
],
],
],
];
if (floatval(\Drupal::VERSION) < 8.6) {
$data['data']['relationships']['thumbnail']['data']['meta']['alt'] = 'Thumbnail';
$data['data']['relationships']['thumbnail']['data']['meta']['title'] = 'Llama';
}
return $data;
}
protected function getPostDocument() {
$file = File::load(2);
return [
'data' => [
'type' => 'media--camelids',
'attributes' => [
'name' => 'Dramallama',
],
'relationships' => [
'field_media_file' => [
'data' => [
'id' => $file
->uuid(),
'meta' => [
'description' => 'This file is better!',
'display' => NULL,
],
'type' => 'file--file',
],
],
],
],
];
}
protected function getExpectedUnauthorizedAccessMessage($method) {
switch ($method) {
case 'GET':
return "The 'view media' permission is required and the media item must be published.";
case 'POST':
return "The following permissions are required: 'administer media' OR 'create media' OR 'create camelids media'.";
case 'PATCH':
return "The following permissions are required: 'update any media' OR 'update own media' OR 'camelids: edit any media' OR 'camelids: edit own media'.";
case 'DELETE':
return "The following permissions are required: 'delete any media' OR 'delete own media' OR 'camelids: delete any media' OR 'camelids: delete own media'.";
default:
return '';
}
}
protected function getExpectedUnauthorizedAccessCacheability() {
return parent::getExpectedUnauthorizedAccessCacheability()
->addCacheTags([
'media:1',
]);
}
public function testPostIndividual() {
parent::testPostIndividual();
}
protected function getExpectedGetRelationshipDocumentData($relationship_field_name, EntityInterface $entity = NULL) {
$data = parent::getExpectedGetRelationshipDocumentData($relationship_field_name, $entity);
switch ($relationship_field_name) {
case 'thumbnail':
$data['meta'] = [
'alt' => '',
'width' => 180,
'height' => 180,
'title' => NULL,
];
if (floatval(\Drupal::VERSION) < 8.6) {
$data['meta']['alt'] = 'Thumbnail';
$data['meta']['title'] = 'Llama';
}
return $data;
case 'field_media_file':
$data['meta'] = [
'description' => NULL,
'display' => NULL,
];
return $data;
default:
return $data;
}
}
protected function doTestRelationshipPost(array $request_options) {
$this
->grantPermissionsToTestedRole([
'access content',
]);
parent::doTestRelationshipPost($request_options);
}
public function testCollectionFilterAccess() {
$this
->doTestCollectionFilterAccessForPublishableEntities('name', 'view media', 'administer media');
}
}