648 lines
22 KiB
PHP
648 lines
22 KiB
PHP
<?php
|
|
|
|
namespace Doctrine\Tests\ORM\Functional;
|
|
|
|
use Doctrine\ORM\Tools\SchemaTool;
|
|
use Doctrine\Tests\Models\CMS\CmsUser;
|
|
use Doctrine\Tests\Models\CMS\CmsPhonenumber;
|
|
use Doctrine\Tests\Models\CMS\CmsAddress;
|
|
use Doctrine\Tests\Models\CMS\CmsGroup;
|
|
|
|
require_once __DIR__ . '/../../TestInit.php';
|
|
|
|
class BasicFunctionalTest extends \Doctrine\Tests\OrmFunctionalTestCase
|
|
{
|
|
protected function setUp()
|
|
{
|
|
$this->useModelSet('cms');
|
|
parent::setUp();
|
|
}
|
|
|
|
public function testBasicUnitsOfWorkWithOneToManyAssociation()
|
|
{
|
|
// Create
|
|
$user = new CmsUser;
|
|
$user->name = 'Roman';
|
|
$user->username = 'romanb';
|
|
$user->status = 'developer';
|
|
$this->_em->persist($user);
|
|
|
|
$this->_em->flush();
|
|
|
|
$this->assertTrue(is_numeric($user->id));
|
|
$this->assertTrue($this->_em->contains($user));
|
|
|
|
// Read
|
|
$user2 = $this->_em->find('Doctrine\Tests\Models\CMS\CmsUser', $user->id);
|
|
$this->assertTrue($user === $user2);
|
|
|
|
// Add a phonenumber
|
|
$ph = new CmsPhonenumber;
|
|
$ph->phonenumber = "12345";
|
|
$user->addPhonenumber($ph);
|
|
$this->_em->flush();
|
|
$this->assertTrue($this->_em->contains($ph));
|
|
$this->assertTrue($this->_em->contains($user));
|
|
//$this->assertTrue($user->phonenumbers instanceof \Doctrine\ORM\PersistentCollection);
|
|
|
|
// Update name
|
|
$user->name = 'guilherme';
|
|
$this->_em->flush();
|
|
$this->assertEquals('guilherme', $user->name);
|
|
|
|
// Add another phonenumber
|
|
$ph2 = new CmsPhonenumber;
|
|
$ph2->phonenumber = "6789";
|
|
$user->addPhonenumber($ph2);
|
|
$this->_em->flush();
|
|
$this->assertTrue($this->_em->contains($ph2));
|
|
|
|
// Delete
|
|
$this->_em->remove($user);
|
|
$this->assertTrue($this->_em->getUnitOfWork()->isScheduledForDelete($user));
|
|
$this->assertTrue($this->_em->getUnitOfWork()->isScheduledForDelete($ph));
|
|
$this->assertTrue($this->_em->getUnitOfWork()->isScheduledForDelete($ph2));
|
|
$this->_em->flush();
|
|
$this->assertFalse($this->_em->getUnitOfWork()->isScheduledForDelete($user));
|
|
$this->assertFalse($this->_em->getUnitOfWork()->isScheduledForDelete($ph));
|
|
$this->assertFalse($this->_em->getUnitOfWork()->isScheduledForDelete($ph2));
|
|
$this->assertEquals(\Doctrine\ORM\UnitOfWork::STATE_NEW, $this->_em->getUnitOfWork()->getEntityState($user));
|
|
$this->assertEquals(\Doctrine\ORM\UnitOfWork::STATE_NEW, $this->_em->getUnitOfWork()->getEntityState($ph));
|
|
$this->assertEquals(\Doctrine\ORM\UnitOfWork::STATE_NEW, $this->_em->getUnitOfWork()->getEntityState($ph2));
|
|
}
|
|
|
|
public function testOneToManyAssociationModification()
|
|
{
|
|
$user = new CmsUser;
|
|
$user->name = 'Roman';
|
|
$user->username = 'romanb';
|
|
$user->status = 'developer';
|
|
|
|
$ph1 = new CmsPhonenumber;
|
|
$ph1->phonenumber = "0301234";
|
|
$ph2 = new CmsPhonenumber;
|
|
$ph2->phonenumber = "987654321";
|
|
|
|
$user->addPhonenumber($ph1);
|
|
$user->addPhonenumber($ph2);
|
|
|
|
$this->_em->persist($user);
|
|
$this->_em->flush();
|
|
|
|
//$this->assertTrue($user->phonenumbers instanceof \Doctrine\ORM\PersistentCollection);
|
|
|
|
// Remove the first element from the collection
|
|
unset($user->phonenumbers[0]);
|
|
$ph1->user = null; // owning side!
|
|
|
|
$this->_em->flush();
|
|
|
|
$this->assertEquals(1, count($user->phonenumbers));
|
|
$this->assertNull($ph1->user);
|
|
}
|
|
|
|
public function testBasicOneToOne()
|
|
{
|
|
$user = new CmsUser;
|
|
$user->name = 'Roman';
|
|
$user->username = 'romanb';
|
|
$user->status = 'developer';
|
|
|
|
$address = new CmsAddress;
|
|
$address->country = 'Germany';
|
|
$address->city = 'Berlin';
|
|
$address->zip = '12345';
|
|
|
|
$user->address = $address; // inverse side
|
|
$address->user = $user; // owning side!
|
|
|
|
$this->_em->persist($user);
|
|
$this->_em->flush();
|
|
|
|
// Check that the foreign key has been set
|
|
$userId = $this->_em->getConnection()->execute("SELECT user_id FROM cms_addresses WHERE id=?",
|
|
array($address->id))->fetchColumn();
|
|
$this->assertTrue(is_numeric($userId));
|
|
}
|
|
|
|
public function testBasicManyToMany()
|
|
{
|
|
$user = new CmsUser;
|
|
$user->name = 'Guilherme';
|
|
$user->username = 'gblanco';
|
|
$user->status = 'developer';
|
|
|
|
$group = new CmsGroup;
|
|
$group->name = 'Developers';
|
|
|
|
$user->groups[] = $group;
|
|
$group->users[] = $user;
|
|
|
|
$this->_em->persist($user);
|
|
|
|
$this->_em->flush();
|
|
|
|
unset($group->users[0]); // inverse side
|
|
unset($user->groups[0]); // owning side!
|
|
|
|
$this->_em->flush();
|
|
|
|
// Check that the link in the association table has been deleted
|
|
$count = $this->_em->getConnection()->execute("SELECT COUNT(*) FROM cms_users_groups",
|
|
array())->fetchColumn();
|
|
$this->assertEquals(0, $count);
|
|
}
|
|
|
|
public function testManyToManyCollectionClearing()
|
|
{
|
|
$user = new CmsUser;
|
|
$user->name = 'Guilherme';
|
|
$user->username = 'gblanco';
|
|
$user->status = 'developer';
|
|
|
|
for ($i=0; $i<10; ++$i) {
|
|
$group = new CmsGroup;
|
|
$group->name = 'Developers_' . $i;
|
|
$user->groups[] = $group;
|
|
$group->users[] = $user;
|
|
}
|
|
|
|
$this->_em->persist($user);
|
|
|
|
$this->_em->flush();
|
|
|
|
// Check that there are indeed 10 links in the association table
|
|
$count = $this->_em->getConnection()->execute("SELECT COUNT(*) FROM cms_users_groups",
|
|
array())->fetchColumn();
|
|
$this->assertEquals(10, $count);
|
|
|
|
$user->groups->clear();
|
|
//unset($user->groups);
|
|
|
|
$this->_em->flush();
|
|
|
|
// Check that the links in the association table have been deleted
|
|
$count = $this->_em->getConnection()->execute("SELECT COUNT(*) FROM cms_users_groups",
|
|
array())->fetchColumn();
|
|
$this->assertEquals(0, $count);
|
|
}
|
|
|
|
public function testOneToManyOrphanRemoval()
|
|
{
|
|
$user = new CmsUser;
|
|
$user->name = 'Guilherme';
|
|
$user->username = 'gblanco';
|
|
$user->status = 'developer';
|
|
|
|
for ($i=0; $i<3; ++$i) {
|
|
$phone = new CmsPhonenumber;
|
|
$phone->phonenumber = 100 + $i;
|
|
$user->addPhonenumber($phone);
|
|
}
|
|
|
|
$this->_em->persist($user);
|
|
|
|
$this->_em->flush();
|
|
|
|
$user->getPhonenumbers()->remove(0);
|
|
$this->assertEquals(2, count($user->getPhonenumbers()));
|
|
|
|
$this->_em->flush();
|
|
|
|
// Check that there are just 2 phonenumbers left
|
|
$count = $this->_em->getConnection()->execute("SELECT COUNT(*) FROM cms_phonenumbers",
|
|
array())->fetchColumn();
|
|
$this->assertEquals(2, $count); // only 2 remaining
|
|
}
|
|
|
|
public function testBasicQuery()
|
|
{
|
|
$user = new CmsUser;
|
|
$user->name = 'Guilherme';
|
|
$user->username = 'gblanco';
|
|
$user->status = 'developer';
|
|
$this->_em->persist($user);
|
|
$this->_em->flush();
|
|
|
|
$query = $this->_em->createQuery("select u from Doctrine\Tests\Models\CMS\CmsUser u");
|
|
|
|
$users = $query->getResult();
|
|
|
|
$this->assertEquals(1, count($users));
|
|
$this->assertEquals('Guilherme', $users[0]->name);
|
|
$this->assertEquals('gblanco', $users[0]->username);
|
|
$this->assertEquals('developer', $users[0]->status);
|
|
//$this->assertNull($users[0]->phonenumbers);
|
|
//$this->assertNull($users[0]->articles);
|
|
|
|
$usersArray = $query->getArrayResult();
|
|
|
|
$this->assertTrue(is_array($usersArray));
|
|
$this->assertEquals(1, count($usersArray));
|
|
$this->assertEquals('Guilherme', $usersArray[0]['name']);
|
|
$this->assertEquals('gblanco', $usersArray[0]['username']);
|
|
$this->assertEquals('developer', $usersArray[0]['status']);
|
|
|
|
$usersScalar = $query->getScalarResult();
|
|
|
|
$this->assertTrue(is_array($usersScalar));
|
|
$this->assertEquals(1, count($usersScalar));
|
|
$this->assertEquals('Guilherme', $usersScalar[0]['u_name']);
|
|
$this->assertEquals('gblanco', $usersScalar[0]['u_username']);
|
|
$this->assertEquals('developer', $usersScalar[0]['u_status']);
|
|
}
|
|
|
|
public function testBasicOneToManyInnerJoin()
|
|
{
|
|
$user = new CmsUser;
|
|
$user->name = 'Guilherme';
|
|
$user->username = 'gblanco';
|
|
$user->status = 'developer';
|
|
$this->_em->persist($user);
|
|
$this->_em->flush();
|
|
|
|
$query = $this->_em->createQuery("select u from Doctrine\Tests\Models\CMS\CmsUser u join u.phonenumbers p");
|
|
|
|
$users = $query->getResult();
|
|
|
|
$this->assertEquals(0, count($users));
|
|
}
|
|
|
|
public function testBasicOneToManyLeftJoin()
|
|
{
|
|
$user = new CmsUser;
|
|
$user->name = 'Guilherme';
|
|
$user->username = 'gblanco';
|
|
$user->status = 'developer';
|
|
$this->_em->persist($user);
|
|
$this->_em->flush();
|
|
|
|
$query = $this->_em->createQuery("select u,p from Doctrine\Tests\Models\CMS\CmsUser u left join u.phonenumbers p");
|
|
|
|
$users = $query->getResult();
|
|
|
|
$this->assertEquals(1, count($users));
|
|
$this->assertEquals('Guilherme', $users[0]->name);
|
|
$this->assertEquals('gblanco', $users[0]->username);
|
|
$this->assertEquals('developer', $users[0]->status);
|
|
$this->assertTrue($users[0]->phonenumbers instanceof \Doctrine\ORM\PersistentCollection);
|
|
$this->assertEquals(0, $users[0]->phonenumbers->count());
|
|
//$this->assertNull($users[0]->articles);
|
|
}
|
|
|
|
public function testBasicManyToManyJoin()
|
|
{
|
|
$user = new CmsUser;
|
|
$user->name = 'Guilherme';
|
|
$user->username = 'gblanco';
|
|
$user->status = 'developer';
|
|
|
|
$group1 = new CmsGroup;
|
|
$group1->setName('Doctrine Developers');
|
|
|
|
$user->addGroup($group1);
|
|
|
|
$this->_em->persist($user);
|
|
|
|
$this->_em->flush();
|
|
$this->_em->clear();
|
|
|
|
$this->assertEquals(0, $this->_em->getUnitOfWork()->size());
|
|
|
|
$query = $this->_em->createQuery("select u, g from Doctrine\Tests\Models\CMS\CmsUser u join u.groups g");
|
|
|
|
$result = $query->getResult();
|
|
|
|
$this->assertEquals(2, $this->_em->getUnitOfWork()->size());
|
|
$this->assertTrue($result[0] instanceof CmsUser);
|
|
$this->assertEquals('Guilherme', $result[0]->name);
|
|
$this->assertEquals(1, $result[0]->getGroups()->count());
|
|
$groups = $result[0]->getGroups();
|
|
$this->assertEquals('Doctrine Developers', $groups[0]->getName());
|
|
|
|
$this->assertEquals(\Doctrine\ORM\UnitOfWork::STATE_MANAGED, $this->_em->getUnitOfWork()->getEntityState($result[0]));
|
|
$this->assertEquals(\Doctrine\ORM\UnitOfWork::STATE_MANAGED, $this->_em->getUnitOfWork()->getEntityState($groups[0]));
|
|
|
|
$this->assertTrue($groups instanceof \Doctrine\ORM\PersistentCollection);
|
|
$this->assertTrue($groups[0]->getUsers() instanceof \Doctrine\ORM\PersistentCollection);
|
|
|
|
$groups[0]->getUsers()->clear();
|
|
$groups->clear();
|
|
|
|
$this->_em->flush();
|
|
$this->_em->clear();
|
|
|
|
$query = $this->_em->createQuery("select u, g from Doctrine\Tests\Models\CMS\CmsUser u inner join u.groups g");
|
|
$this->assertEquals(0, count($query->getResult()));
|
|
}
|
|
|
|
public function testBasicRefresh()
|
|
{
|
|
$user = new CmsUser;
|
|
$user->name = 'Guilherme';
|
|
$user->username = 'gblanco';
|
|
$user->status = 'developer';
|
|
|
|
$this->_em->persist($user);
|
|
$this->_em->flush();
|
|
|
|
$user->status = 'mascot';
|
|
|
|
$this->assertEquals('mascot', $user->status);
|
|
$this->_em->refresh($user);
|
|
$this->assertEquals('developer', $user->status);
|
|
}
|
|
|
|
public function testAddToCollectionDoesNotInitialize()
|
|
{
|
|
$user = new CmsUser;
|
|
$user->name = 'Guilherme';
|
|
$user->username = 'gblanco';
|
|
$user->status = 'developer';
|
|
|
|
for ($i=0; $i<3; ++$i) {
|
|
$phone = new CmsPhonenumber;
|
|
$phone->phonenumber = 100 + $i;
|
|
$user->addPhonenumber($phone);
|
|
}
|
|
|
|
$this->_em->persist($user);
|
|
$this->_em->flush();
|
|
$this->_em->clear();
|
|
|
|
$this->assertEquals(3, $user->getPhonenumbers()->count());
|
|
|
|
$query = $this->_em->createQuery("select u from Doctrine\Tests\Models\CMS\CmsUser u where u.username='gblanco'");
|
|
|
|
$gblanco = $query->getSingleResult();
|
|
|
|
$this->assertFalse($gblanco->getPhonenumbers()->isInitialized());
|
|
|
|
$newPhone = new CmsPhonenumber;
|
|
$newPhone->phonenumber = 555;
|
|
$gblanco->addPhonenumber($newPhone);
|
|
|
|
$this->assertFalse($gblanco->getPhonenumbers()->isInitialized());
|
|
$this->_em->persist($gblanco);
|
|
|
|
$this->_em->flush();
|
|
$this->_em->clear();
|
|
|
|
$query = $this->_em->createQuery("select u, p from Doctrine\Tests\Models\CMS\CmsUser u join u.phonenumbers p where u.username='gblanco'");
|
|
$gblanco2 = $query->getSingleResult();
|
|
$this->assertEquals(4, $gblanco2->getPhonenumbers()->count());
|
|
}
|
|
|
|
public function testInitializeCollectionWithNewObjectsRetainsNewObjects()
|
|
{
|
|
$user = new CmsUser;
|
|
$user->name = 'Guilherme';
|
|
$user->username = 'gblanco';
|
|
$user->status = 'developer';
|
|
|
|
for ($i=0; $i<3; ++$i) {
|
|
$phone = new CmsPhonenumber;
|
|
$phone->phonenumber = 100 + $i;
|
|
$user->addPhonenumber($phone);
|
|
}
|
|
|
|
$this->_em->persist($user);
|
|
$this->_em->flush();
|
|
$this->_em->clear();
|
|
|
|
$this->assertEquals(3, $user->getPhonenumbers()->count());
|
|
|
|
$query = $this->_em->createQuery("select u from Doctrine\Tests\Models\CMS\CmsUser u where u.username='gblanco'");
|
|
|
|
$gblanco = $query->getSingleResult();
|
|
|
|
$this->assertFalse($gblanco->getPhonenumbers()->isInitialized());
|
|
|
|
$newPhone = new CmsPhonenumber;
|
|
$newPhone->phonenumber = 555;
|
|
$gblanco->addPhonenumber($newPhone);
|
|
|
|
$this->assertFalse($gblanco->getPhonenumbers()->isInitialized());
|
|
$this->assertEquals(4, $gblanco->getPhonenumbers()->count());
|
|
$this->assertTrue($gblanco->getPhonenumbers()->isInitialized());
|
|
|
|
$this->_em->flush();
|
|
$this->_em->clear();
|
|
|
|
$query = $this->_em->createQuery("select u, p from Doctrine\Tests\Models\CMS\CmsUser u join u.phonenumbers p where u.username='gblanco'");
|
|
$gblanco2 = $query->getSingleResult();
|
|
$this->assertEquals(4, $gblanco2->getPhonenumbers()->count());
|
|
}
|
|
|
|
public function testSetSetAssociationWithGetReference()
|
|
{
|
|
$user = new CmsUser;
|
|
$user->name = 'Guilherme';
|
|
$user->username = 'gblanco';
|
|
$user->status = 'developer';
|
|
$this->_em->persist($user);
|
|
|
|
$address = new CmsAddress;
|
|
$address->country = 'Germany';
|
|
$address->city = 'Berlin';
|
|
$address->zip = '12345';
|
|
$this->_em->persist($address);
|
|
|
|
$this->_em->flush();
|
|
$this->_em->detach($address);
|
|
|
|
$this->assertFalse($this->_em->contains($address));
|
|
$this->assertTrue($this->_em->contains($user));
|
|
|
|
// Assume we only got the identifier of the address and now want to attach
|
|
// that address to the user without actually loading it, using getReference().
|
|
$addressRef = $this->_em->getReference('Doctrine\Tests\Models\CMS\CmsAddress', $address->getId());
|
|
|
|
//$addressRef->getId();
|
|
//\Doctrine\Common\Util\Debug::dump($addressRef);
|
|
|
|
$user->setAddress($addressRef); // Ugh! Initializes address 'cause of $address->setUser($user)!
|
|
|
|
$this->_em->flush();
|
|
$this->_em->clear();
|
|
|
|
// Check with a fresh load that the association is indeed there
|
|
$query = $this->_em->createQuery("select u, a from Doctrine\Tests\Models\CMS\CmsUser u join u.address a where u.username='gblanco'");
|
|
$gblanco = $query->getSingleResult();
|
|
|
|
$this->assertTrue($gblanco instanceof CmsUser);
|
|
$this->assertTrue($gblanco->getAddress() instanceof CmsAddress);
|
|
$this->assertEquals('Berlin', $gblanco->getAddress()->getCity());
|
|
|
|
}
|
|
|
|
public function testOneToManyCascadeRemove()
|
|
{
|
|
$user = new CmsUser;
|
|
$user->name = 'Guilherme';
|
|
$user->username = 'gblanco';
|
|
$user->status = 'developer';
|
|
|
|
for ($i=0; $i<3; ++$i) {
|
|
$phone = new CmsPhonenumber;
|
|
$phone->phonenumber = 100 + $i;
|
|
$user->addPhonenumber($phone);
|
|
}
|
|
|
|
$this->_em->persist($user);
|
|
$this->_em->flush();
|
|
$this->_em->clear();
|
|
|
|
$query = $this->_em->createQuery("select u from Doctrine\Tests\Models\CMS\CmsUser u where u.username='gblanco'");
|
|
$gblanco = $query->getSingleResult();
|
|
|
|
$this->_em->remove($gblanco);
|
|
$this->_em->flush();
|
|
|
|
$this->_em->clear();
|
|
|
|
$this->assertEquals(0, $this->_em->createQuery(
|
|
"select count(p.phonenumber) from Doctrine\Tests\Models\CMS\CmsPhonenumber p")
|
|
->getSingleScalarResult());
|
|
|
|
$this->assertEquals(0, $this->_em->createQuery(
|
|
"select count(u.id) from Doctrine\Tests\Models\CMS\CmsUser u")
|
|
->getSingleScalarResult());
|
|
}
|
|
|
|
public function testTextColumnSaveAndRetrieve()
|
|
{
|
|
$user = new CmsUser;
|
|
$user->name = 'Guilherme';
|
|
$user->username = 'gblanco';
|
|
$user->status = 'developer';
|
|
|
|
$this->_em->persist($user);
|
|
|
|
$article = new \Doctrine\Tests\Models\CMS\CmsArticle();
|
|
$article->text = "Lorem ipsum dolor sunt.";
|
|
$article->topic = "A Test Article!";
|
|
$article->setAuthor($user);
|
|
|
|
$this->_em->persist($article);
|
|
$this->_em->flush();
|
|
$articleId = $article->id;
|
|
|
|
$this->_em->clear();
|
|
|
|
$articleNew = $this->_em->find('Doctrine\Tests\Models\CMS\CmsArticle', $articleId);
|
|
$this->assertEquals("Lorem ipsum dolor sunt.", $articleNew->text);
|
|
|
|
$this->assertNotSame($article, $articleNew);
|
|
|
|
$articleNew->text = "Lorem ipsum dolor sunt. And stuff!";
|
|
|
|
$this->_em->flush();
|
|
$this->_em->clear();
|
|
|
|
$articleNew = $this->_em->find('Doctrine\Tests\Models\CMS\CmsArticle', $articleId);
|
|
$this->assertEquals("Lorem ipsum dolor sunt. And stuff!", $articleNew->text);
|
|
}
|
|
|
|
public function testFlushDoesNotIssueUnnecessaryUpdates()
|
|
{
|
|
|
|
$user = new CmsUser;
|
|
$user->name = 'Guilherme';
|
|
$user->username = 'gblanco';
|
|
$user->status = 'developer';
|
|
|
|
$address = new CmsAddress;
|
|
$address->country = 'Germany';
|
|
$address->city = 'Berlin';
|
|
$address->zip = '12345';
|
|
|
|
$address->user = $user;
|
|
$user->address = $address;
|
|
|
|
$article = new \Doctrine\Tests\Models\CMS\CmsArticle();
|
|
$article->text = "Lorem ipsum dolor sunt.";
|
|
$article->topic = "A Test Article!";
|
|
$article->setAuthor($user);
|
|
|
|
$this->_em->persist($article);
|
|
$this->_em->persist($user);
|
|
|
|
//$this->_em->getConnection()->getConfiguration()->setSqlLogger(new \Doctrine\DBAL\Logging\EchoSqlLogger);
|
|
|
|
$this->_em->flush();
|
|
$this->_em->clear();
|
|
|
|
$query = $this->_em->createQuery('select u,a,ad from Doctrine\Tests\Models\CMS\CmsUser u join u.articles a join u.address ad');
|
|
$user2 = $query->getSingleResult();
|
|
|
|
$this->assertEquals(1, count($user2->articles));
|
|
$this->assertTrue($user2->address instanceof CmsAddress);
|
|
|
|
$oldLogger = $this->_em->getConnection()->getConfiguration()->getSqlLogger();
|
|
$debugStack = new \Doctrine\DBAL\Logging\DebugStack;
|
|
$this->_em->getConnection()->getConfiguration()->setSqlLogger($debugStack);
|
|
|
|
$this->_em->flush();
|
|
$this->assertEquals(0, count($debugStack->queries));
|
|
|
|
$this->_em->getConnection()->getConfiguration()->setSqlLogger($oldLogger);
|
|
}
|
|
|
|
public function testRemoveEntityByReference()
|
|
{
|
|
$user = new CmsUser;
|
|
$user->name = 'Guilherme';
|
|
$user->username = 'gblanco';
|
|
$user->status = 'developer';
|
|
|
|
//$this->_em->getConnection()->getConfiguration()->setSqlLogger(new \Doctrine\DBAL\Logging\EchoSqlLogger);
|
|
|
|
$this->_em->persist($user);
|
|
$this->_em->flush();
|
|
$this->_em->clear();
|
|
|
|
$userRef = $this->_em->getReference('Doctrine\Tests\Models\CMS\CmsUser', $user->getId());
|
|
$this->_em->remove($userRef);
|
|
$this->_em->flush();
|
|
$this->_em->clear();
|
|
|
|
$this->assertEquals(0, $this->_em->getConnection()->fetchColumn("select count(*) from cms_users"));
|
|
|
|
//$this->_em->getConnection()->getConfiguration()->setSqlLogger(null);
|
|
}
|
|
|
|
//DRAFT OF EXPECTED/DESIRED BEHAVIOR
|
|
/*public function testPersistentCollectionContainsDoesNeverInitialize()
|
|
{
|
|
$user = new CmsUser;
|
|
$user->name = 'Guilherme';
|
|
$user->username = 'gblanco';
|
|
$user->status = 'developer';
|
|
|
|
$group = new CmsGroup;
|
|
$group->name = 'Developers';
|
|
|
|
$user->addGroup($group);
|
|
|
|
$this->_em->persist($user);
|
|
$this->_em->flush();
|
|
$this->_em->clear();
|
|
|
|
$group = $this->_em->find(get_class($group), $group->getId());
|
|
|
|
|
|
|
|
$user2 = new CmsUser;
|
|
$user2->id = $user->getId();
|
|
$this->assertFalse($group->getUsers()->contains($user2));
|
|
$this->assertFalse($group->getUsers()->isInitialized());
|
|
|
|
$user2 = $this->_em->getReference(get_class($user), $user->getId());
|
|
$this->assertTrue($group->getUsers()->contains($user2));
|
|
$this->assertFalse($group->getUsers()->isInitialized());
|
|
|
|
}
|
|
*/
|
|
}
|