* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace DigitalOcean\Tests\CLI\Images; use Symfony\Component\Console\Application; use Symfony\Component\Console\Tester\CommandTester; use DigitalOcean\Tests\TestCase; use DigitalOcean\CLI\Images\ShowCommand; /** * @author Antoine Corcy */ class ShowCommandTest extends TestCase { protected $application; protected $command; protected $commandTester; protected function setUp() { $this->application = new Application(); $result = (object) array( 'image' => (object) array('id' => 1, 'name' => 'foo', 'distribution' => 'foobar dist') ); $ShowCommand = $this->getMock('\DigitalOcean\CLI\Images\ShowCommand', array('getDigitalOcean')); $ShowCommand ->expects($this->any()) ->method('getDigitalOcean') ->will($this->returnValue($this->getMockDigitalOcean('images', $this->getMockImages('show', $result)))); $this->application->add($ShowCommand); $this->command = $this->application->find('images:show'); $this->commandTester = new CommandTester($this->command); } /** * @expectedException \RuntimeException * @expectedExceptionMessage Not enough arguments. */ public function testExecuteNotEnoughArguments() { $this->commandTester->execute(array( 'command' => $this->command->getName(), )); } public function testExecute() { $this->commandTester->execute(array( 'command' => $this->command->getName(), 'id' => 123, )); $expected = <<assertTrue(is_string($this->commandTester->getDisplay())); $this->assertSame($expected, $this->commandTester->getDisplay()); } }