crop-8.x-2.x-dev/tests/src/Kernel/CropEntityProvidersTest.php
tests/src/Kernel/CropEntityProvidersTest.php
<?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
*/
protected 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.');
}
}
