Commit 66d6136a authored by zYne's avatar zYne

some tests for MAP keyword

parent 3e47532e
...@@ -171,4 +171,37 @@ class Doctrine_Query_Join_TestCase extends Doctrine_UnitTestCase ...@@ -171,4 +171,37 @@ class Doctrine_Query_Join_TestCase extends Doctrine_UnitTestCase
$this->fail(); $this->fail();
} }
} }
public function testMapKeywordForQueryWithOneComponent()
{
$q = new Doctrine_Query();
$coll = $q->from('Record_City c MAP c.name')->fetchArray();
$this->assertTrue(isset($coll['City 1']));
$this->assertTrue(isset($coll['City 2']));
$this->assertTrue(isset($coll['City 3']));
}
public function testMapKeywordSupportsJoins()
{
$q = new Doctrine_Query();
$country = $q->from('Record_Country c LEFT JOIN c.City c2 MAP c2.name')->fetchOne();
$coll = $country->City;
$this->assertTrue(isset($coll['City 1']));
$this->assertTrue(isset($coll['City 2']));
$this->assertTrue(isset($coll['City 3']));
}
public function testMapKeywordThrowsExceptionOnNonExistentColumn()
{
try {
$q = new Doctrine_Query();
$country = $q->from('Record_Country c LEFT JOIN c.City c2 MAP c2.unknown')->fetchOne();
$this->fail();
} catch (Doctrine_Query_Exception $e) {
$this->pass();
}
}
} }
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