View source
<?php
namespace Drupal\Tests\jsonapi\Functional;
use Drupal\Core\Url;
use Drupal\image\Entity\ImageStyle;
class ImageStyleTest extends ResourceTestBase {
protected static $modules = [
'image',
];
protected $defaultTheme = 'stark';
protected static $entityTypeId = 'image_style';
protected static $resourceTypeName = 'image_style--image_style';
protected $entity;
protected $effectUuid;
protected function setUpAuthorization($method) {
$this
->grantPermissionsToTestedRole([
'administer image styles',
]);
}
protected function createEntity() {
$camelids = ImageStyle::create([
'name' => 'camelids',
'label' => 'Camelids',
]);
$effect = [
'id' => 'image_scale_and_crop',
'data' => [
'width' => 120,
'height' => 121,
],
'weight' => 0,
];
$this->effectUuid = $camelids
->addImageEffect($effect);
$camelids
->save();
return $camelids;
}
protected function getExpectedDocument() {
$self_url = Url::fromUri('base:/jsonapi/image_style/image_style/' . $this->entity
->uuid())
->setAbsolute()
->toString(TRUE)
->getGeneratedUrl();
return [
'jsonapi' => [
'meta' => [
'links' => [
'self' => [
'href' => 'http://jsonapi.org/format/1.0/',
],
],
],
'version' => '1.0',
],
'links' => [
'self' => [
'href' => $self_url,
],
],
'data' => [
'id' => $this->entity
->uuid(),
'type' => 'image_style--image_style',
'links' => [
'self' => [
'href' => $self_url,
],
],
'attributes' => [
'dependencies' => [],
'effects' => [
$this->effectUuid => [
'uuid' => $this->effectUuid,
'id' => 'image_scale_and_crop',
'weight' => 0,
'data' => [
'anchor' => 'center-center',
'width' => 120,
'height' => 121,
],
],
],
'label' => 'Camelids',
'langcode' => 'en',
'status' => TRUE,
'drupal_internal__name' => 'camelids',
],
],
];
}
protected function getPostDocument() {
}
}