public function testImagick()
 {
     $fitted_size = Mockery::mock('\\Intervention\\Image\\Size', array(800, 400));
     $fitted_size->pivot = Mockery::mock('\\Intervention\\Image\\Point', array(0, 100));
     $original_size = Mockery::mock('\\Intervention\\Image\\Size', array(800, 600));
     $original_size->shouldReceive('fit')->once()->andReturn($fitted_size);
     $imagick = Mockery::mock('Imagick');
     $imagick->shouldReceive('cropimage')->with(800, 400, 0, 100)->andReturn(true);
     $imagick->shouldReceive('resizeimage')->with(200, 100, \Imagick::FILTER_BOX, 1)->andReturn(true);
     $imagick->shouldReceive('setimagepage')->with(0, 0, 0, 0)->andReturn(true);
     $image = Mockery::mock('Intervention\\Image\\Image');
     $image->shouldReceive('getSize')->once()->andReturn($original_size);
     $image->shouldReceive('getCore')->times(3)->andReturn($imagick);
     $command = new FitImagick(array(200, 100));
     $result = $command->execute($image);
     $this->assertTrue($result);
 }
Example #2
0
 public function testImagickFitWithPosition()
 {
     $cropped_size = Mockery::mock('\\Intervention\\Image\\Size', array(800, 400));
     $cropped_size->shouldReceive('getWidth')->once()->andReturn(200);
     $cropped_size->shouldReceive('getHeight')->once()->andReturn(100);
     $cropped_size->shouldReceive('resize')->with(200, 100, null)->once()->andReturn($cropped_size);
     $cropped_size->pivot = Mockery::mock('\\Intervention\\Image\\Point', array(0, 100));
     $original_size = Mockery::mock('\\Intervention\\Image\\Size', array(800, 600));
     $original_size->shouldReceive('fit')->with(Mockery::any(), 'top-left')->once()->andReturn($cropped_size);
     $imagick = Mockery::mock('Imagick');
     $imagick->shouldReceive('cropimage')->with(800, 400, 0, 100)->andReturn(true);
     $imagick->shouldReceive('scaleimage')->with(200, 100)->once()->andReturn(true);
     $imagick->shouldReceive('setimagepage')->with(0, 0, 0, 0)->andReturn(true);
     $image = Mockery::mock('Intervention\\Image\\Image');
     $image->shouldReceive('getSize')->once()->andReturn($original_size);
     $image->shouldReceive('getCore')->times(3)->andReturn($imagick);
     $command = new FitImagick(array(200, 100, null, 'top-left'));
     $result = $command->execute($image);
     $this->assertTrue($result);
 }