PNG  IHDR;IDATxܻn0K )(pA 7LeG{ §㻢|ذaÆ 6lذaÆ 6lذaÆ 6lom$^yذag5bÆ 6lذaÆ 6lذa{ 6lذaÆ `}HFkm,mӪôô! x|'ܢ˟;E:9&ᶒ}{v]n&6 h_tڠ͵-ҫZ;Z$.Pkž)!o>}leQfJTu іچ\X=8Rن4`Vwl>nG^is"ms$ui?wbs[m6K4O.4%/bC%t Mז -lG6mrz2s%9s@-k9=)kB5\+͂Zsٲ Rn~GRC wIcIn7jJhۛNCS|j08yiHKֶۛkɈ+;SzL/F*\Ԕ#"5m2[S=gnaPeғL lذaÆ 6l^ḵaÆ 6lذaÆ 6lذa; _ذaÆ 6lذaÆ 6lذaÆ RIENDB` getTestImage(); $this->assertEquals('mock', $image->getCore()); } public function testCommandCall() { $image = $this->getTestImage(); $result = $image->test(1, 2, 3); $this->assertEquals('mock', $result); } public function testEncode() { $image = $this->getTestImage(); $image->getDriver()->shouldReceive('encode')->with($image, 'png', 90)->once(); $image->encode('png', 90); } public function testSave() { $save_as = __DIR__.'/tmp/test.jpg'; $image = $this->getTestImage(); $image->getDriver()->shouldReceive('encode')->with($image, 'jpg', 85)->once()->andReturn('mock'); $image = $image->save($save_as, 85); $this->assertInstanceOf('\Intervention\Image\Image', $image); $this->assertFileExists($save_as); $this->assertEquals($image->basename, 'test.jpg'); $this->assertEquals($image->extension, 'jpg'); $this->assertEquals($image->filename, 'test'); @unlink($save_as); } public function testFilter() { $demoFilter = Mockery::mock('\Intervention\Image\Filters\DemoFilter', array(15)); $image = $this->getTestImage(); $demoFilter->shouldReceive('applyFilter')->with($image)->once()->andReturn($image); $image->filter($demoFilter); } public function testMime() { $image = $this->getTestImage(); $this->assertEquals('image/png', $image->mime()); } private function getTestImage() { $size = Mockery::mock('\Intervention\Image\Size', array(800, 600)); $driver = Mockery::mock('\Intervention\Image\AbstractDriver'); $command = Mockery::mock('\Intervention\Image\Commands\AbstractCommand'); $command->shouldReceive('hasOutput')->andReturn(true); $command->shouldReceive('getOutput')->andReturn('mock'); $driver->shouldReceive('executeCommand')->andReturn($command); $image = new Image($driver, 'mock'); $image->mime = 'image/png'; return $image; } }