ImboIntegrationTest\Image\Transformation\CropTest::testCanCropImages PHP Method

testCanCropImages() public method

public testCanCropImages ( $params, $endWidth, $endHeight, $transformed )
    public function testCanCropImages($params, $endWidth, $endHeight, $transformed)
    {
        $image = $this->getMock('Imbo\\Model\\Image');
        $image->expects($this->any())->method('getWidth')->will($this->returnValue(665));
        $image->expects($this->any())->method('getHeight')->will($this->returnValue(463));
        if ($transformed) {
            $image->expects($this->once())->method('setWidth')->with($endWidth)->will($this->returnValue($image));
            $image->expects($this->once())->method('setHeight')->with($endHeight)->will($this->returnValue($image));
            $image->expects($this->once())->method('hasBeenTransformed')->with(true)->will($this->returnValue($image));
        }
        $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));
        $blob = file_get_contents(FIXTURES_DIR . '/image.png');
        $imagick = new Imagick();
        $imagick->readImageBlob($blob);
        $this->getTransformation()->setImagick($imagick)->transform($event);
    }