ImageStyleTest.php

Same filename in this branch
  1. 10 core/modules/image/tests/src/Unit/ImageStyleTest.php
Same filename and directory in other branches
  1. 9 core/modules/jsonapi/tests/src/Functional/ImageStyleTest.php
  2. 9 core/modules/image/tests/src/Unit/ImageStyleTest.php
  3. 8.9.x core/modules/jsonapi/tests/src/Functional/ImageStyleTest.php
  4. 8.9.x core/modules/image/tests/src/Unit/ImageStyleTest.php
  5. 11.x core/modules/jsonapi/tests/src/Functional/ImageStyleTest.php
  6. 11.x core/modules/image/tests/src/Unit/ImageStyleTest.php

Namespace

Drupal\Tests\jsonapi\Functional

File

core/modules/jsonapi/tests/src/Functional/ImageStyleTest.php

View source
<?php

declare (strict_types=1);
namespace Drupal\Tests\jsonapi\Functional;

use Drupal\Core\Url;
use Drupal\image\Entity\ImageStyle;

/**
 * JSON:API integration test for the "ImageStyle" config entity type.
 *
 * @group jsonapi
 * @group #slow
 */
class ImageStyleTest extends ConfigEntityResourceTestBase {
    
    /**
     * {@inheritdoc}
     */
    protected static $modules = [
        'image',
    ];
    
    /**
     * {@inheritdoc}
     */
    protected $defaultTheme = 'stark';
    
    /**
     * {@inheritdoc}
     */
    protected static $entityTypeId = 'image_style';
    
    /**
     * {@inheritdoc}
     */
    protected static $resourceTypeName = 'image_style--image_style';
    
    /**
     * {@inheritdoc}
     *
     * @var \Drupal\image\ImageStyleInterface
     */
    protected $entity;
    
    /**
     * The effect UUID.
     *
     * @var string
     */
    protected $effectUuid;
    
    /**
     * {@inheritdoc}
     */
    protected function setUpAuthorization($method) {
        $this->grantPermissionsToTestedRole([
            'administer image styles',
        ]);
    }
    
    /**
     * {@inheritdoc}
     */
    protected function createEntity() {
        // Create a "Camelids" image style.
        $camelids = ImageStyle::create([
            'name' => 'camelids',
            'label' => 'Camelids',
        ]);
        // Add an image effect.
        $effect = [
            'id' => 'image_scale_and_crop',
            'data' => [
                'width' => 120,
                'height' => 121,
            ],
            'weight' => 0,
        ];
        $this->effectUuid = $camelids->addImageEffect($effect);
        $camelids->save();
        return $camelids;
    }
    
    /**
     * {@inheritdoc}
     */
    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',
                ],
            ],
        ];
    }
    
    /**
     * {@inheritdoc}
     */
    protected function getPostDocument() {
        // @todo Update in https://www.drupal.org/node/2300677.
        return [];
    }

}

Classes

Title Deprecated Summary
ImageStyleTest JSON:API integration test for the "ImageStyle" config entity type.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.