You are here

class ImageStyleGenerationTraitTest in Flysystem 8

Same name and namespace in other branches
  1. 3.x tests/src/Unit/Plugin/ImageStyleGenerationTraitTest.php \Drupal\Tests\flysystem\Unit\Plugin\ImageStyleGenerationTraitTest
  2. 2.0.x tests/src/Unit/Plugin/ImageStyleGenerationTraitTest.php \Drupal\Tests\flysystem\Unit\Plugin\ImageStyleGenerationTraitTest
  3. 3.0.x tests/src/Unit/Plugin/ImageStyleGenerationTraitTest.php \Drupal\Tests\flysystem\Unit\Plugin\ImageStyleGenerationTraitTest

@coversDefaultClass \Drupal\flysystem\Plugin\ImageStyleGenerationTrait @group flysystem

Hierarchy

Expanded class hierarchy of ImageStyleGenerationTraitTest

File

tests/src/Unit/Plugin/ImageStyleGenerationTraitTest.php, line 20

Namespace

Drupal\Tests\flysystem\Unit\Plugin
View source
class ImageStyleGenerationTraitTest extends UnitTestCase {

  /**
   * @covers ::generateImageStyle
   */
  public function testGenerateImageStyle() {
    vfsStream::setup('flysystem');
    touch('vfs://flysystem/foo.jpg');
    mkdir('vfs://flysystem/styles/pass', 0777, TRUE);
    $container = new ContainerBuilder();
    $image_style = $this
      ->prophesize(ImageStyle::class);
    $image_style
      ->buildUri('vfs://flysystem/foo.jpg')
      ->willReturn('vfs://flysystem/styles/pass/foo.jpg');
    $image_style
      ->buildUri('vfs://flysystem/foo.jpg.png')
      ->willReturn('vfs://flysystem/styles/pass/foo.jpg.png');
    $image_style
      ->id()
      ->willReturn('pass');
    $image_style
      ->createDerivative('vfs://flysystem/foo.jpg', 'vfs://flysystem/styles/pass/foo.jpg')
      ->willReturn(TRUE);
    $image_style
      ->createDerivative('vfs://flysystem/foo.jpg', 'vfs://flysystem/styles/pass/foo.jpg.png')
      ->willReturn(TRUE);
    $storage = $this
      ->prophesize(EntityStorageInterface::class);
    $storage
      ->load('pass')
      ->willReturn($image_style
      ->reveal());
    $storage
      ->load('fail')
      ->willReturn(FALSE);
    $entity_manager = $this
      ->prophesize(EntityManagerInterface::class);
    $entity_manager
      ->getEntityTypeFromClass(ImageStyle::class)
      ->willReturn('image_style');
    $entity_manager
      ->getStorage('image_style')
      ->willReturn($storage
      ->reveal());
    $container
      ->set('entity.manager', $entity_manager
      ->reveal());
    $container
      ->set('lock', new NullLockBackend());
    \Drupal::setContainer($container);
    $trait = $this
      ->getMockForTrait(ImageStyleGenerationTrait::class);
    $method = (new \ReflectionMethod($trait, 'generateImageStyle'))
      ->getClosure($trait);

    // Test invlid paths.
    $this
      ->assertFalse($method('foo/bar'));
    $this
      ->assertFalse($method('styles/image_style/vfs'));

    // Test invalid image style.
    $this
      ->assertFalse($method('styles/fail/vfs/flysystem/foo.jpg'));

    // Test existing derivative.
    touch('vfs://flysystem/styles/pass/foo.jpg');
    $this
      ->assertTrue($method('styles/pass/vfs/flysystem/foo.jpg'));
    unlink('vfs://flysystem/styles/pass/foo.jpg');

    // Basic passing.
    $this
      ->assertTrue($method('styles/pass/vfs/flysystem/foo.jpg'));
    $this
      ->assertTrue($method('styles/pass/vfs/flysystem/foo.jpg.png'));

    // Test failed lock.
    $fail_lock = $this
      ->prophesize(LockBackendInterface::class);
    $fail_lock
      ->acquire(Argument::type('string'))
      ->willReturn(FALSE);
    $container
      ->set('lock', $fail_lock
      ->reveal());
    $this
      ->assertFalse($method('styles/pass/vfs/flysystem/foo.jpg'));
    $container
      ->set('lock', new NullLockBackend());

    // Test missing source.
    unlink('vfs://flysystem/foo.jpg');
    $this
      ->assertFalse($method('styles/pass/vfs/flysystem/foo.jpg.png'));
  }

}

Members

Namesort descending Modifiers Type Description Overrides
ImageStyleGenerationTraitTest::testGenerateImageStyle public function @covers ::generateImageStyle
PhpunitCompatibilityTrait::getMock Deprecated public function Returns a mock object for the specified class using the available method.
PhpunitCompatibilityTrait::setExpectedException Deprecated public function Compatibility layer for PHPUnit 6 to support PHPUnit 4 code.
UnitTestCase::$randomGenerator protected property The random generator.
UnitTestCase::$root protected property The app root. 1
UnitTestCase::assertArrayEquals protected function Asserts if two arrays are equal by sorting them first.
UnitTestCase::getBlockMockWithMachineName Deprecated protected function Mocks a block with a block plugin. 1
UnitTestCase::getClassResolverStub protected function Returns a stub class resolver.
UnitTestCase::getConfigFactoryStub public function Returns a stub config factory that behaves according to the passed array.
UnitTestCase::getConfigStorageStub public function Returns a stub config storage that returns the supplied configuration.
UnitTestCase::getContainerWithCacheTagsInvalidator protected function Sets up a container with a cache tags invalidator.
UnitTestCase::getRandomGenerator protected function Gets the random generator for the utility methods.
UnitTestCase::getStringTranslationStub public function Returns a stub translation manager that just returns the passed string.
UnitTestCase::randomMachineName public function Generates a unique random string containing letters and numbers.
UnitTestCase::setUp protected function 340