. */ /** * Test case for testing the saving and referencing of query identifiers. * * @package Doctrine * @subpackage Query * @author Guilherme Blanco * @author Janne Vanhala * @author Konsta Vesterinen * @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @link http://www.phpdoctrine.org * @since 2.0 * @version $Revision$ * @todo 1) [romanb] We might want to split the SQL generation tests into multiple * testcases later since we'll have a lot of them and we might want to have special SQL * generation tests for some dbms specific SQL syntaxes. */ class Orm_Query_UpdateSqlGenerationTest extends Doctrine_OrmTestCase { public function assertSqlGeneration($dqlToBeTested, $sqlToBeConfirmed) { try { $entityManager = $this->_em; $query = $entityManager->createQuery($dqlToBeTested); parent::assertEquals($sqlToBeConfirmed, $query->getSql()); $query->free(); } catch (Doctrine_Exception $e) { $this->fail($e->getMessage()); } } public function testWithoutWhere() { // NO WhereClause $this->assertSqlGeneration( 'UPDATE CmsUser u SET name = ?', 'UPDATE cms_user cu SET cu.name = ? WHERE 1 = 1' ); $this->assertSqlGeneration( 'UPDATE CmsUser u SET name = ?, username = ?', 'UPDATE cms_user cu SET cu.name = ?, cu.username = ? WHERE 1 = 1' ); } }