Commit a1bfac11 authored by zYne's avatar zYne

--no commit message

--no commit message
parent ccd86ea0
......@@ -30,9 +30,10 @@
* @since 1.0
* @version $Revision$
*/
class Doctrine_Query_ComponentAlias_TestCase extends Doctrine_UnitTestCase {
/**
public function testQueryWithSingleAlias() {
class Doctrine_Query_ComponentAlias_TestCase extends Doctrine_UnitTestCase
{
public function testQueryWithSingleAlias()
{
$this->connection->clear();
$q = new Doctrine_Query();
......@@ -48,8 +49,8 @@ class Doctrine_Query_ComponentAlias_TestCase extends Doctrine_UnitTestCase {
"SELECT e.id AS e__id, e.name AS e__name, e.loginname AS e__loginname, e.password AS e__password, e.type AS e__type, e.created AS e__created, e.updated AS e__updated, e.email_id AS e__email_id, p.id AS p__id, p.phonenumber AS p__phonenumber, p.entity_id AS p__entity_id FROM entity e LEFT JOIN phonenumber p ON e.id = p.entity_id WHERE (e.type = 0)");
$this->assertEqual($count, count($this->dbh));
}
*/
public function testQueryWithNestedAliases() { print "<pre>";
public function testQueryWithNestedAliases()
{
$this->connection->clear();
$q = new Doctrine_Query();
......@@ -65,7 +66,8 @@ class Doctrine_Query_ComponentAlias_TestCase extends Doctrine_UnitTestCase {
"SELECT e.id AS e__id, e.name AS e__name, e.loginname AS e__loginname, e.password AS e__password, e.type AS e__type, e.created AS e__created, e.updated AS e__updated, e.email_id AS e__email_id, e2.id AS e2__id, e2.name AS e2__name, e2.loginname AS e2__loginname, e2.password AS e2__password, e2.type AS e2__type, e2.created AS e2__created, e2.updated AS e2__updated, e2.email_id AS e2__email_id, p.id AS p__id, p.phonenumber AS p__phonenumber, p.entity_id AS p__entity_id FROM entity e LEFT JOIN groupuser g ON e.id = g.user_id LEFT JOIN entity e2 ON e2.id = g.group_id LEFT JOIN phonenumber p ON e2.id = p.entity_id WHERE (e.type = 0 AND (e2.type = 1 OR e2.type IS NULL))");
$this->assertEqual(($count + 1), count($this->dbh));
}
public function testQueryWithMultipleNestedAliases() {
public function testQueryWithMultipleNestedAliases()
{
$this->connection->clear();
$q = new Doctrine_Query();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment