Skip to content

Commit

Permalink
Merge branch 'hotfix/doctrine#1262-restore-run-dql-command-functional…
Browse files Browse the repository at this point in the history
…ity'

Close doctrine#1262
  • Loading branch information
Ocramius committed Jan 17, 2015
2 parents fe4d460 + fea0425 commit b23a8dd
Show file tree
Hide file tree
Showing 2 changed files with 94 additions and 3 deletions.
7 changes: 4 additions & 3 deletions lib/Doctrine/ORM/Tools/Console/Command/RunDqlCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ protected function configure()
*/
protected function execute(InputInterface $input, OutputInterface $output)
{
/* @var $em \Doctrine\ORM\EntityManagerInterface */
$em = $this->getHelper('em')->getEntityManager();

if (($dql = $input->getArgument('dql')) === null) {
Expand Down Expand Up @@ -120,13 +121,13 @@ protected function execute(InputInterface $input, OutputInterface $output)
$query->setMaxResults((int) $maxResult);
}

if ($input->hasOption('show-sql')) {
Debug::dump($query->getSQL());
if ($input->getOption('show-sql')) {
$output->writeln(Debug::dump($query->getSQL(), 2, true, false));
return;
}

$resultSet = $query->execute(array(), constant($hydrationMode));

Debug::dump($resultSet, $input->getOption('depth'));
$output->writeln(Debug::dump($resultSet, $input->getOption('depth'), true, false));
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@
<?php

namespace Doctrine\Tests\ORM\Tools\Console\Command;

use Doctrine\ORM\Tools\Console\Command\RunDqlCommand;
use Doctrine\ORM\Tools\Console\Helper\EntityManagerHelper;
use Doctrine\Tests\Models\Generic\DateTimeModel;
use Doctrine\Tests\OrmFunctionalTestCase;
use Symfony\Component\Console\Application;
use Symfony\Component\Console\Helper\HelperSet;
use Symfony\Component\Console\Tester\CommandTester;

/**
* Tests for {@see \Doctrine\ORM\Tools\Console\Command\RunDqlCommand}
*
* @covers \Doctrine\ORM\Tools\Console\Command\RunDqlCommand
*/
class RunDqlCommandTest extends OrmFunctionalTestCase
{
/**
* @var Application
*/
private $application;

/**
* @var RunDqlCommand
*/
private $command;

/**
* @var CommandTester
*/
private $tester;

protected function setUp()
{
$this->useModelSet('generic');

parent::setUp();

$this->application = new Application();
$this->command = new RunDqlCommand();

$this->application->setHelperSet(new HelperSet(array(
'em' => new EntityManagerHelper($this->_em)
)));

$this->application->add($this->command);

$this->tester = new CommandTester($this->command);
}

public function testCommandName()
{
$this->assertSame($this->command, $this->application->get('orm:run-dql'));
}

public function testWillRunQuery()
{
$this->_em->persist(new DateTimeModel());
$this->_em->flush();

$this->assertSame(
0,
$this->tester->execute(array(
'command' => $this->command->getName(),
'dql' => 'SELECT e FROM ' . DateTimeModel::CLASSNAME . ' e',
))
);

$this->assertContains(DateTimeModel::CLASSNAME, $this->tester->getDisplay());
}

public function testWillShowQuery()
{
$this->_em->persist(new DateTimeModel());
$this->_em->flush();

$this->assertSame(
0,
$this->tester->execute(array(
'command' => $this->command->getName(),
'dql' => 'SELECT e FROM ' . DateTimeModel::CLASSNAME . ' e',
'--show-sql' => 'true'
))
);

$this->assertStringMatchesFormat('string \'SELECT %a', $this->tester->getDisplay());
}
}

0 comments on commit b23a8dd

Please sign in to comment.