You are here

CropEntityProvidersTest.php in Crop API 8.2

Same filename and directory in other branches
  1. 8 tests/src/Kernel/CropEntityProvidersTest.php

File

tests/src/Kernel/CropEntityProvidersTest.php
View source
<?php

namespace Drupal\Tests\crop\Kernel;

use Drupal\crop\EntityProviderNotFoundException;

/**
 * Tests entity provider plugins.
 *
 * @group crop
 */
class CropEntityProvidersTest extends CropUnitTestBase {

  /**
   * Modules to enable.
   *
   * @var array
   */
  public static $modules = [
    'crop',
    'file',
    'image',
    'user',
    'system',
  ];

  /**
   * Tests file provider plugin.
   */
  public function testCropEffect() {
    $file = $this
      ->getTestFile();
    $file
      ->save();

    // Create crop.
    $values = [
      'type' => $this->cropType
        ->id(),
      'entity_id' => $file
        ->id(),
      'entity_type' => 'file',
      'uri' => $file
        ->getFileUri(),
      'x' => '190',
      'y' => '120',
      'width' => '50',
      'height' => '50',
    ];

    /** @var \Drupal\crop\CropInterface $crop */
    $crop = $this->container
      ->get('entity_type.manager')
      ->getStorage('crop')
      ->create($values);
    $crop
      ->save();
    try {
      $provider = $crop
        ->provider();
      $this
        ->assertTrue(TRUE, 'File entity provider plugin was found.');
    } catch (EntityProviderNotFoundException $e) {
      $this
        ->assertTrue(FALSE, 'File entity provider plugin was found.');
    }
    $this
      ->assertEquals($provider
      ->uri($file), $file
      ->getFileUri(), 'File provider plugin returned correct URI.');
  }

}

Classes

Namesort descending Description
CropEntityProvidersTest Tests entity provider plugins.