123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505 |
- <?php
- namespace Doctrine\Tests\ORM\Functional;
- use Doctrine\Tests\Models\CMS\CmsUser;
- use Doctrine\Tests\Models\CMS\CmsAddress;
- use Doctrine\Tests\Models\CMS\CmsPhonenumber;
- require_once __DIR__ . '/../../TestInit.php';
- /**
- * @author robo
- */
- class EntityRepositoryTest extends \Doctrine\Tests\OrmFunctionalTestCase
- {
- protected function setUp() {
- $this->useModelSet('cms');
- parent::setUp();
- }
- public function tearDown()
- {
- if ($this->_em) {
- $this->_em->getConfiguration()->setEntityNamespaces(array());
- }
- parent::tearDown();
- }
- public function loadFixture()
- {
- $user = new CmsUser;
- $user->name = 'Roman';
- $user->username = 'romanb';
- $user->status = 'freak';
- $this->_em->persist($user);
- $user2 = new CmsUser;
- $user2->name = 'Guilherme';
- $user2->username = 'gblanco';
- $user2->status = 'dev';
- $this->_em->persist($user2);
- $user3 = new CmsUser;
- $user3->name = 'Benjamin';
- $user3->username = 'beberlei';
- $user3->status = null;
- $this->_em->persist($user3);
- $this->_em->flush();
- $user1Id = $user->getId();
- unset($user);
- unset($user2);
- unset($user3);
- $this->_em->clear();
- return $user1Id;
- }
- public function loadAssociatedFixture()
- {
- $address = new CmsAddress();
- $address->city = "Berlin";
- $address->country = "Germany";
- $address->street = "Foostreet";
- $address->zip = "12345";
- $user = new CmsUser();
- $user->name = 'Roman';
- $user->username = 'romanb';
- $user->status = 'freak';
- $user->setAddress($address);
- $this->_em->persist($user);
- $this->_em->persist($address);
- $this->_em->flush();
- $this->_em->clear();
- return array($user->id, $address->id);
- }
- public function buildUser($name, $username, $status, $address)
- {
- $user = new CmsUser();
- $user->name = $name;
- $user->username = $username;
- $user->status = $status;
- $user->setAddress($address);
- $this->_em->persist($user);
- $this->_em->flush();
- return $user;
- }
- public function buildAddress($country, $city, $street, $zip)
- {
- $address = new CmsAddress();
- $address->country = $country;
- $address->city = $city;
- $address->street = $street;
- $address->zip = $zip;
- $this->_em->persist($address);
- $this->_em->flush();
- return $address;
- }
- public function testBasicFind()
- {
- $user1Id = $this->loadFixture();
- $repos = $this->_em->getRepository('Doctrine\Tests\Models\CMS\CmsUser');
- $user = $repos->find($user1Id);
- $this->assertInstanceOf('Doctrine\Tests\Models\CMS\CmsUser',$user);
- $this->assertEquals('Roman', $user->name);
- $this->assertEquals('freak', $user->status);
- }
- public function testFindByField()
- {
- $user1Id = $this->loadFixture();
- $repos = $this->_em->getRepository('Doctrine\Tests\Models\CMS\CmsUser');
- $users = $repos->findBy(array('status' => 'dev'));
- $this->assertEquals(1, count($users));
- $this->assertInstanceOf('Doctrine\Tests\Models\CMS\CmsUser',$users[0]);
- $this->assertEquals('Guilherme', $users[0]->name);
- $this->assertEquals('dev', $users[0]->status);
- }
- public function testFindByAssociationWithIntegerAsParameter()
- {
- $address1 = $this->buildAddress('Germany', 'Berlim', 'Foo st.', '123456');
- $user1 = $this->buildUser('Benjamin', 'beberlei', 'dev', $address1);
- $address2 = $this->buildAddress('Brazil', 'São Paulo', 'Bar st.', '654321');
- $user2 = $this->buildUser('Guilherme', 'guilhermeblanco', 'freak', $address2);
- $address3 = $this->buildAddress('USA', 'Nashville', 'Woo st.', '321654');
- $user3 = $this->buildUser('Jonathan', 'jwage', 'dev', $address3);
- unset($address1);
- unset($address2);
- unset($address3);
- $this->_em->clear();
- $repository = $this->_em->getRepository('Doctrine\Tests\Models\CMS\CmsAddress');
- $addresses = $repository->findBy(array('user' => array($user1->getId(), $user2->getId())));
- $this->assertEquals(2, count($addresses));
- $this->assertInstanceOf('Doctrine\Tests\Models\CMS\CmsAddress',$addresses[0]);
- }
- public function testFindByAssociationWithObjectAsParameter()
- {
- $address1 = $this->buildAddress('Germany', 'Berlim', 'Foo st.', '123456');
- $user1 = $this->buildUser('Benjamin', 'beberlei', 'dev', $address1);
- $address2 = $this->buildAddress('Brazil', 'São Paulo', 'Bar st.', '654321');
- $user2 = $this->buildUser('Guilherme', 'guilhermeblanco', 'freak', $address2);
- $address3 = $this->buildAddress('USA', 'Nashville', 'Woo st.', '321654');
- $user3 = $this->buildUser('Jonathan', 'jwage', 'dev', $address3);
- unset($address1);
- unset($address2);
- unset($address3);
- $this->_em->clear();
- $repository = $this->_em->getRepository('Doctrine\Tests\Models\CMS\CmsAddress');
- $addresses = $repository->findBy(array('user' => array($user1, $user2)));
- $this->assertEquals(2, count($addresses));
- $this->assertInstanceOf('Doctrine\Tests\Models\CMS\CmsAddress',$addresses[0]);
- }
- public function testFindFieldByMagicCall()
- {
- $user1Id = $this->loadFixture();
- $repos = $this->_em->getRepository('Doctrine\Tests\Models\CMS\CmsUser');
- $users = $repos->findByStatus('dev');
- $this->assertEquals(1, count($users));
- $this->assertInstanceOf('Doctrine\Tests\Models\CMS\CmsUser',$users[0]);
- $this->assertEquals('Guilherme', $users[0]->name);
- $this->assertEquals('dev', $users[0]->status);
- }
- public function testFindAll()
- {
- $user1Id = $this->loadFixture();
- $repos = $this->_em->getRepository('Doctrine\Tests\Models\CMS\CmsUser');
- $users = $repos->findAll();
- $this->assertEquals(3, count($users));
- }
- public function testFindByAlias()
- {
- $user1Id = $this->loadFixture();
- $repos = $this->_em->getRepository('Doctrine\Tests\Models\CMS\CmsUser');
- $this->_em->getConfiguration()->addEntityNamespace('CMS', 'Doctrine\Tests\Models\CMS');
- $repos = $this->_em->getRepository('CMS:CmsUser');
- $users = $repos->findAll();
- $this->assertEquals(3, count($users));
- }
- /**
- * @expectedException \Doctrine\ORM\ORMException
- */
- public function testExceptionIsThrownWhenCallingFindByWithoutParameter() {
- $this->_em->getRepository('Doctrine\Tests\Models\CMS\CmsUser')
- ->findByStatus();
- }
- /**
- * @expectedException \Doctrine\ORM\ORMException
- */
- public function testExceptionIsThrownWhenUsingInvalidFieldName() {
- $this->_em->getRepository('Doctrine\Tests\Models\CMS\CmsUser')
- ->findByThisFieldDoesNotExist('testvalue');
- }
- /**
- * @group locking
- * @group DDC-178
- */
- public function testPessimisticReadLockWithoutTransaction_ThrowsException()
- {
- $this->setExpectedException('Doctrine\ORM\TransactionRequiredException');
- $this->_em->getRepository('Doctrine\Tests\Models\CMS\CmsUser')
- ->find(1, \Doctrine\DBAL\LockMode::PESSIMISTIC_READ);
- }
- /**
- * @group locking
- * @group DDC-178
- */
- public function testPessimisticWriteLockWithoutTransaction_ThrowsException()
- {
- $this->setExpectedException('Doctrine\ORM\TransactionRequiredException');
- $this->_em->getRepository('Doctrine\Tests\Models\CMS\CmsUser')
- ->find(1, \Doctrine\DBAL\LockMode::PESSIMISTIC_WRITE);
- }
- /**
- * @group locking
- * @group DDC-178
- */
- public function testOptimisticLockUnversionedEntity_ThrowsException()
- {
- $this->setExpectedException('Doctrine\ORM\OptimisticLockException');
- $this->_em->getRepository('Doctrine\Tests\Models\CMS\CmsUser')
- ->find(1, \Doctrine\DBAL\LockMode::OPTIMISTIC);
- }
- /**
- * @group locking
- * @group DDC-178
- */
- public function testIdentityMappedOptimisticLockUnversionedEntity_ThrowsException()
- {
- $user = new CmsUser;
- $user->name = 'Roman';
- $user->username = 'romanb';
- $user->status = 'freak';
- $this->_em->persist($user);
- $this->_em->flush();
- $userId = $user->id;
- $this->_em->find('Doctrine\Tests\Models\CMS\CmsUser', $userId);
- $this->setExpectedException('Doctrine\ORM\OptimisticLockException');
- $this->_em->find('Doctrine\Tests\Models\CMS\CmsUser', $userId, \Doctrine\DBAL\LockMode::OPTIMISTIC);
- }
- /**
- * @group DDC-819
- */
- public function testFindMagicCallByNullValue()
- {
- $this->loadFixture();
- $repos = $this->_em->getRepository('Doctrine\Tests\Models\CMS\CmsUser');
- $users = $repos->findByStatus(null);
- $this->assertEquals(1, count($users));
- }
- /**
- * @group DDC-819
- */
- public function testInvalidMagicCall()
- {
- $this->setExpectedException('BadMethodCallException');
- $repos = $this->_em->getRepository('Doctrine\Tests\Models\CMS\CmsUser');
- $repos->foo();
- }
- /**
- * @group DDC-817
- */
- public function testFindByAssociationKey_ExceptionOnInverseSide()
- {
- list($userId, $addressId) = $this->loadAssociatedFixture();
- $repos = $this->_em->getRepository('Doctrine\Tests\Models\CMS\CmsUser');
- $this->setExpectedException('Doctrine\ORM\ORMException', "You cannot search for the association field 'Doctrine\Tests\Models\CMS\CmsUser#address', because it is the inverse side of an association. Find methods only work on owning side associations.");
- $user = $repos->findBy(array('address' => $addressId));
- }
- /**
- * @group DDC-817
- */
- public function testFindOneByAssociationKey()
- {
- list($userId, $addressId) = $this->loadAssociatedFixture();
- $repos = $this->_em->getRepository('Doctrine\Tests\Models\CMS\CmsAddress');
- $address = $repos->findOneBy(array('user' => $userId));
- $this->assertInstanceOf('Doctrine\Tests\Models\CMS\CmsAddress', $address);
- $this->assertEquals($addressId, $address->id);
- }
- /**
- * @group DDC-817
- */
- public function testFindByAssociationKey()
- {
- list($userId, $addressId) = $this->loadAssociatedFixture();
- $repos = $this->_em->getRepository('Doctrine\Tests\Models\CMS\CmsAddress');
- $addresses = $repos->findBy(array('user' => $userId));
- $this->assertContainsOnly('Doctrine\Tests\Models\CMS\CmsAddress', $addresses);
- $this->assertEquals(1, count($addresses));
- $this->assertEquals($addressId, $addresses[0]->id);
- }
- /**
- * @group DDC-817
- */
- public function testFindAssociationByMagicCall()
- {
- list($userId, $addressId) = $this->loadAssociatedFixture();
- $repos = $this->_em->getRepository('Doctrine\Tests\Models\CMS\CmsAddress');
- $addresses = $repos->findByUser($userId);
- $this->assertContainsOnly('Doctrine\Tests\Models\CMS\CmsAddress', $addresses);
- $this->assertEquals(1, count($addresses));
- $this->assertEquals($addressId, $addresses[0]->id);
- }
- /**
- * @group DDC-817
- */
- public function testFindOneAssociationByMagicCall()
- {
- list($userId, $addressId) = $this->loadAssociatedFixture();
- $repos = $this->_em->getRepository('Doctrine\Tests\Models\CMS\CmsAddress');
- $address = $repos->findOneByUser($userId);
- $this->assertInstanceOf('Doctrine\Tests\Models\CMS\CmsAddress', $address);
- $this->assertEquals($addressId, $address->id);
- }
- public function testValidNamedQueryRetrieval()
- {
- $repos = $this->_em->getRepository('Doctrine\Tests\Models\CMS\CmsUser');
- $query = $repos->createNamedQuery('all');
- $this->assertInstanceOf('Doctrine\ORM\Query', $query);
- $this->assertEquals('SELECT u FROM Doctrine\Tests\Models\CMS\CmsUser u', $query->getDQL());
- }
- public function testInvalidNamedQueryRetrieval()
- {
- $repos = $this->_em->getRepository('Doctrine\Tests\Models\CMS\CmsUser');
- $this->setExpectedException('Doctrine\ORM\Mapping\MappingException');
- $repos->createNamedQuery('invalidNamedQuery');
- }
- /**
- * @group DDC-1087
- */
- public function testIsNullCriteriaDoesNotGenerateAParameter()
- {
- $repos = $this->_em->getRepository('Doctrine\Tests\Models\CMS\CmsUser');
- $users = $repos->findBy(array('status' => null, 'username' => 'romanb'));
- $params = $this->_sqlLoggerStack->queries[$this->_sqlLoggerStack->currentQuery]['params'];
- $this->assertEquals(1, count($params), "Should only execute with one parameter.");
- $this->assertEquals(array('romanb'), $params);
- }
- public function testIsNullCriteria()
- {
- $this->loadFixture();
- $repos = $this->_em->getRepository('Doctrine\Tests\Models\CMS\CmsUser');
- $users = $repos->findBy(array('status' => null));
- $this->assertEquals(1, count($users));
- }
- /**
- * @group DDC-1094
- */
- public function testFindByLimitOffset()
- {
- $this->loadFixture();
- $repos = $this->_em->getRepository('Doctrine\Tests\Models\CMS\CmsUser');
- $users1 = $repos->findBy(array(), null, 1, 0);
- $users2 = $repos->findBy(array(), null, 1, 1);
- $this->assertEquals(3, count($repos->findBy(array())));
- $this->assertEquals(1, count($users1));
- $this->assertEquals(1, count($users2));
- $this->assertNotSame($users1[0], $users2[0]);
- }
- /**
- * @group DDC-1094
- */
- public function testFindByOrderBy()
- {
- $this->loadFixture();
- $repos = $this->_em->getRepository('Doctrine\Tests\Models\CMS\CmsUser');
- $usersAsc = $repos->findBy(array(), array("username" => "ASC"));
- $usersDesc = $repos->findBy(array(), array("username" => "DESC"));
- $this->assertEquals(3, count($usersAsc), "Pre-condition: only three users in fixture");
- $this->assertEquals(3, count($usersDesc), "Pre-condition: only three users in fixture");
- $this->assertSame($usersAsc[0], $usersDesc[2]);
- $this->assertSame($usersAsc[2], $usersDesc[0]);
- }
- /**
- * @group DDC-753
- */
- public function testDefaultRepositoryClassName()
- {
- $this->assertEquals($this->_em->getConfiguration()->getDefaultRepositoryClassName(), "Doctrine\ORM\EntityRepository");
- $this->_em->getConfiguration()->setDefaultRepositoryClassName("Doctrine\Tests\Models\DDC753\DDC753DefaultRepository");
- $this->assertEquals($this->_em->getConfiguration()->getDefaultRepositoryClassName(), "Doctrine\Tests\Models\DDC753\DDC753DefaultRepository");
- $repos = $this->_em->getRepository('Doctrine\Tests\Models\DDC753\DDC753EntityWithDefaultCustomRepository');
- $this->assertInstanceOf("Doctrine\Tests\Models\DDC753\DDC753DefaultRepository", $repos);
- $this->assertTrue($repos->isDefaultRepository());
- $repos = $this->_em->getRepository('Doctrine\Tests\Models\DDC753\DDC753EntityWithCustomRepository');
- $this->assertInstanceOf("Doctrine\Tests\Models\DDC753\DDC753CustomRepository", $repos);
- $this->assertTrue($repos->isCustomRepository());
- $this->assertEquals($this->_em->getConfiguration()->getDefaultRepositoryClassName(), "Doctrine\Tests\Models\DDC753\DDC753DefaultRepository");
- $this->_em->getConfiguration()->setDefaultRepositoryClassName("Doctrine\ORM\EntityRepository");
- $this->assertEquals($this->_em->getConfiguration()->getDefaultRepositoryClassName(), "Doctrine\ORM\EntityRepository");
- }
- /**
- * @group DDC-753
- * @expectedException Doctrine\ORM\ORMException
- * @expectedExceptionMessage Invalid repository class 'Doctrine\Tests\Models\DDC753\DDC753InvalidRepository'. it must be a Doctrine\ORM\EntityRepository.
- */
- public function testSetDefaultRepositoryInvalidClassError()
- {
- $this->assertEquals($this->_em->getConfiguration()->getDefaultRepositoryClassName(), "Doctrine\ORM\EntityRepository");
- $this->_em->getConfiguration()->setDefaultRepositoryClassName("Doctrine\Tests\Models\DDC753\DDC753InvalidRepository");
- }
- /**
- * @group DDC-1500
- */
- public function testInvalidOrientation()
- {
- $this->setExpectedException('Doctrine\ORM\ORMException', 'Invalid order by orientation specified for Doctrine\Tests\Models\CMS\CmsUser#username');
- $repo = $this->_em->getRepository('Doctrine\Tests\Models\CMS\CmsUser');
- $repo->findBy(array('status' => 'test'), array('username' => 'INVALID'));
- }
- }
|