47 lines
1.4 KiB
PHP
47 lines
1.4 KiB
PHP
<?php
|
|
|
|
namespace Doctrine\Tests\ORM\Query;
|
|
|
|
require_once __DIR__ . '/../../TestInit.php';
|
|
|
|
class QueryTest extends \Doctrine\Tests\OrmTestCase
|
|
{
|
|
protected $_em = null;
|
|
|
|
protected function setUp()
|
|
{
|
|
$this->_em = $this->_getTestEntityManager();
|
|
}
|
|
|
|
/**
|
|
* @expectedException Doctrine\ORM\Query\QueryException
|
|
*/
|
|
public function testParameterIndexZeroThrowsException()
|
|
{
|
|
$query = $this->_em->createQuery("select u from Doctrine\Tests\Models\CMS\CmsUser u where u.username = ?1");
|
|
$query->execute(array(42)); // same as array(0 => 42), 0 is invalid parameter position
|
|
}
|
|
|
|
public function testGetParameters()
|
|
{
|
|
$query = $this->_em->createQuery("select u from Doctrine\Tests\Models\CMS\CmsUser u where u.username = ?1");
|
|
$this->assertEquals(array(), $query->getParameters());
|
|
}
|
|
|
|
public function testGetParameters_HasSomeAlready()
|
|
{
|
|
$query = $this->_em->createQuery("select u from Doctrine\Tests\Models\CMS\CmsUser u where u.username = ?1");
|
|
$query->setParameter(2, 84);
|
|
$this->assertEquals(array(2 => 84), $query->getParameters());
|
|
}
|
|
|
|
public function testFree()
|
|
{
|
|
$query = $this->_em->createQuery("select u from Doctrine\Tests\Models\CMS\CmsUser u where u.username = ?1");
|
|
$query->setParameter(2, 84, \PDO::PARAM_INT);
|
|
|
|
$query->free();
|
|
|
|
$this->assertEquals(array(), $query->getParameters());
|
|
}
|
|
} |