added new relation save test
This commit is contained in:
parent
19de41b1bf
commit
174b507deb
1 changed files with 19 additions and 2 deletions
|
@ -36,17 +36,19 @@ class Doctrine_Relation_OneToOne_TestCase extends Doctrine_UnitTestCase
|
||||||
{ }
|
{ }
|
||||||
public function prepareTables()
|
public function prepareTables()
|
||||||
{
|
{
|
||||||
$this->tables = array('Record_City', 'Record_Country', 'SelfRefTest');
|
$this->tables = array('gnatUser','Email','Entity','Record_City', 'Record_Country', 'SelfRefTest');
|
||||||
|
|
||||||
parent::prepareTables();
|
parent::prepareTables();
|
||||||
}
|
}
|
||||||
public function testOneToOneAggregateRelationWithAliasesIsSupported()
|
|
||||||
|
public function testOneToOneAggregateRelationWithAliasesIsSupported()
|
||||||
{
|
{
|
||||||
$city = new Record_City();
|
$city = new Record_City();
|
||||||
$country = $city->Country;
|
$country = $city->Country;
|
||||||
|
|
||||||
$this->assertTrue($country instanceof Record_Country);
|
$this->assertTrue($country instanceof Record_Country);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function testSelfReferentialOneToOneRelationsAreSupported()
|
public function testSelfReferentialOneToOneRelationsAreSupported()
|
||||||
{
|
{
|
||||||
$ref = new SelfRefTest();
|
$ref = new SelfRefTest();
|
||||||
|
@ -83,4 +85,19 @@ class Doctrine_Relation_OneToOne_TestCase extends Doctrine_UnitTestCase
|
||||||
$user->save();
|
$user->save();
|
||||||
$this->assertTrue($user->Email instanceOf Doctrine_Null);
|
$this->assertTrue($user->Email instanceOf Doctrine_Null);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function testSavingRelatedObjects()
|
||||||
|
{
|
||||||
|
$user = new gnatUser();
|
||||||
|
$user->name = "test";
|
||||||
|
$email = new Email();
|
||||||
|
$email->address = "test@test.com";
|
||||||
|
$user->Email = $email;
|
||||||
|
$user->save();
|
||||||
|
$this->assertTrue($user->Email instanceOf Email);
|
||||||
|
$this->assertTrue($user->email_id != 0);
|
||||||
|
$this->assertTrue($user->email_id != null);
|
||||||
|
$this->assertTrue($user->email_id == $user->Email->id);
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue