ImboIntegrationTest\Image\Transformation\ResizeTest::testCanTransformImage PHP Method

testCanTransformImage() public method

public testCanTransformImage ( $params, $transformation, $resizedWidth = null, $resizedHeight = null )
    public function testCanTransformImage($params, $transformation, $resizedWidth = null, $resizedHeight = null)
    {
        $image = $this->getMock('Imbo\\Model\\Image');
        $image->expects($this->once())->method('getWidth')->will($this->returnValue(665));
        $image->expects($this->once())->method('getHeight')->will($this->returnValue(463));
        if ($transformation) {
            $image->expects($this->once())->method('setWidth')->with($resizedWidth)->will($this->returnValue($image));
            $image->expects($this->once())->method('setHeight')->with($resizedHeight)->will($this->returnValue($image));
            $image->expects($this->once())->method('hasBeenTransformed')->with(true)->will($this->returnValue($image));
        } else {
            $image->expects($this->never())->method('setWidth');
            $image->expects($this->never())->method('setHeight');
            $image->expects($this->never())->method('hasBeenTransformed');
        }
        $event = $this->getMock('Imbo\\EventManager\\Event');
        $event->expects($this->at(0))->method('getArgument')->with('image')->will($this->returnValue($image));
        $event->expects($this->at(1))->method('getArgument')->with('params')->will($this->returnValue($params));
        $imagick = new Imagick();
        $imagick->readImageBlob(file_get_contents(FIXTURES_DIR . '/image.png'));
        $this->getTransformation()->setImagick($imagick)->transform($event);
    }