dirname = __DIR__.'/images'; $image->basename = 'exif.jpg'; $command = new ExifCommand(array()); $result = $command->execute($image); $this->assertTrue($result); $this->assertTrue($command->hasOutput()); $this->assertInternalType('array', $command->getOutput()); } public function testFetchDefined() { $image = new Image; $image->dirname = __DIR__.'/images'; $image->basename = 'exif.jpg'; $command = new ExifCommand(array('Artist')); $result = $command->execute($image); $this->assertTrue($result); $this->assertTrue($command->hasOutput()); $this->assertEquals('Oliver Vogel', $command->getOutput()); } public function testFetchNonExisting() { $image = new Image; $image->dirname = __DIR__.'/images'; $image->basename = 'exif.jpg'; $command = new ExifCommand(array('xxx')); $result = $command->execute($image); $this->assertTrue($result); $this->assertTrue($command->hasOutput()); $this->assertEquals(null, $command->getOutput()); } public function testFetchFromPng() { $image = new Image; $image->dirname = __DIR__.'/images'; $image->basename = 'star.png'; $command = new ExifCommand(array('Orientation')); $result = $command->execute($image); $this->assertTrue($result); $this->assertTrue($command->hasOutput()); $this->assertEquals(null, $command->getOutput()); } }