2012-08-31 17:52:46 +07:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Doctrine\Tests\ORM\Functional;
|
|
|
|
|
2016-12-08 18:01:04 +01:00
|
|
|
use Doctrine\ORM\LazyCriteriaCollection;
|
2012-08-31 17:52:46 +07:00
|
|
|
use Doctrine\Tests\Models\Generic\DateTimeModel;
|
|
|
|
use Doctrine\Common\Collections\Criteria;
|
2014-05-17 12:54:25 +02:00
|
|
|
use Doctrine\Tests\Models\Tweet\Tweet;
|
|
|
|
use Doctrine\Tests\Models\Tweet\User;
|
2016-05-11 02:41:26 +07:00
|
|
|
use Doctrine\Tests\OrmFunctionalTestCase;
|
2012-08-31 17:52:46 +07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @author Josiah <josiah@jjs.id.au>
|
|
|
|
*/
|
2016-05-11 02:41:26 +07:00
|
|
|
class EntityRepositoryCriteriaTest extends OrmFunctionalTestCase
|
2012-08-31 17:52:46 +07:00
|
|
|
{
|
2012-08-31 19:51:22 +07:00
|
|
|
protected function setUp()
|
|
|
|
{
|
2012-08-31 17:52:46 +07:00
|
|
|
$this->useModelSet('generic');
|
2014-05-17 12:54:25 +02:00
|
|
|
$this->useModelSet('tweet');
|
2012-08-31 17:52:46 +07:00
|
|
|
parent::setUp();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function tearDown()
|
|
|
|
{
|
|
|
|
if ($this->_em) {
|
2016-12-07 23:33:41 +01:00
|
|
|
$this->_em->getConfiguration()->setEntityNamespaces([]);
|
2012-08-31 17:52:46 +07:00
|
|
|
}
|
|
|
|
parent::tearDown();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function loadFixture()
|
|
|
|
{
|
|
|
|
$today = new DateTimeModel();
|
|
|
|
$today->datetime =
|
|
|
|
$today->date =
|
|
|
|
$today->time =
|
|
|
|
new \DateTime('today');
|
|
|
|
$this->_em->persist($today);
|
|
|
|
|
|
|
|
$tomorrow = new DateTimeModel();
|
|
|
|
$tomorrow->datetime =
|
|
|
|
$tomorrow->date =
|
|
|
|
$tomorrow->time =
|
|
|
|
new \DateTime('tomorrow');
|
|
|
|
$this->_em->persist($tomorrow);
|
|
|
|
|
|
|
|
$yesterday = new DateTimeModel();
|
|
|
|
$yesterday->datetime =
|
|
|
|
$yesterday->date =
|
|
|
|
$yesterday->time =
|
|
|
|
new \DateTime('yesterday');
|
|
|
|
$this->_em->persist($yesterday);
|
|
|
|
|
|
|
|
$this->_em->flush();
|
|
|
|
|
|
|
|
unset($today);
|
|
|
|
unset($tomorrow);
|
|
|
|
unset($yesterday);
|
|
|
|
|
|
|
|
$this->_em->clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testLteDateComparison()
|
|
|
|
{
|
|
|
|
$this->loadFixture();
|
|
|
|
|
2016-12-08 18:01:04 +01:00
|
|
|
$repository = $this->_em->getRepository(DateTimeModel::class);
|
2012-08-31 17:52:46 +07:00
|
|
|
$dates = $repository->matching(new Criteria(
|
|
|
|
Criteria::expr()->lte('datetime', new \DateTime('today'))
|
|
|
|
));
|
|
|
|
|
|
|
|
$this->assertEquals(2, count($dates));
|
|
|
|
}
|
2013-05-26 07:41:01 +02:00
|
|
|
|
|
|
|
private function loadNullFieldFixtures()
|
|
|
|
{
|
|
|
|
$today = new DateTimeModel();
|
|
|
|
$today->datetime =
|
|
|
|
$today->date =
|
|
|
|
new \DateTime('today');
|
|
|
|
|
|
|
|
$this->_em->persist($today);
|
|
|
|
|
|
|
|
$tomorrow = new DateTimeModel();
|
|
|
|
$tomorrow->datetime =
|
|
|
|
$tomorrow->date =
|
|
|
|
$tomorrow->time =
|
|
|
|
new \DateTime('tomorrow');
|
|
|
|
$this->_em->persist($tomorrow);
|
|
|
|
|
|
|
|
$this->_em->flush();
|
|
|
|
$this->_em->clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testIsNullComparison()
|
|
|
|
{
|
|
|
|
$this->loadNullFieldFixtures();
|
2016-12-08 18:01:04 +01:00
|
|
|
$repository = $this->_em->getRepository(DateTimeModel::class);
|
2013-05-26 07:41:01 +02:00
|
|
|
|
|
|
|
$dates = $repository->matching(new Criteria(
|
|
|
|
Criteria::expr()->isNull('time')
|
|
|
|
));
|
|
|
|
|
|
|
|
$this->assertEquals(1, count($dates));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testEqNullComparison()
|
|
|
|
{
|
|
|
|
$this->loadNullFieldFixtures();
|
2016-12-08 18:01:04 +01:00
|
|
|
$repository = $this->_em->getRepository(DateTimeModel::class);
|
2013-05-26 07:41:01 +02:00
|
|
|
|
|
|
|
$dates = $repository->matching(new Criteria(
|
|
|
|
Criteria::expr()->eq('time', null)
|
|
|
|
));
|
|
|
|
|
|
|
|
$this->assertEquals(1, count($dates));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testNotEqNullComparison()
|
|
|
|
{
|
|
|
|
$this->loadNullFieldFixtures();
|
2016-12-08 18:01:04 +01:00
|
|
|
$repository = $this->_em->getRepository(DateTimeModel::class);
|
2013-05-26 07:41:01 +02:00
|
|
|
|
|
|
|
$dates = $repository->matching(new Criteria(
|
|
|
|
Criteria::expr()->neq('time', null)
|
|
|
|
));
|
|
|
|
|
|
|
|
$this->assertEquals(1, count($dates));
|
|
|
|
}
|
2014-02-16 18:20:06 +01:00
|
|
|
|
|
|
|
public function testCanCountWithoutLoadingCollection()
|
|
|
|
{
|
|
|
|
$this->loadFixture();
|
2016-12-08 18:01:04 +01:00
|
|
|
$repository = $this->_em->getRepository(DateTimeModel::class);
|
2014-02-16 18:20:06 +01:00
|
|
|
|
|
|
|
$dates = $repository->matching(new Criteria());
|
|
|
|
|
|
|
|
$this->assertFalse($dates->isInitialized());
|
|
|
|
$this->assertCount(3, $dates);
|
|
|
|
$this->assertFalse($dates->isInitialized());
|
|
|
|
|
|
|
|
// Test it can work even with a constraint
|
|
|
|
$dates = $repository->matching(new Criteria(
|
|
|
|
Criteria::expr()->lte('datetime', new \DateTime('today'))
|
|
|
|
));
|
|
|
|
|
|
|
|
$this->assertFalse($dates->isInitialized());
|
|
|
|
$this->assertCount(2, $dates);
|
|
|
|
$this->assertFalse($dates->isInitialized());
|
|
|
|
|
|
|
|
// Trigger a loading, to make sure collection is initialized
|
|
|
|
$date = $dates[0];
|
|
|
|
$this->assertTrue($dates->isInitialized());
|
|
|
|
}
|
2014-05-17 12:54:25 +02:00
|
|
|
|
|
|
|
public function testCanContainsWithoutLoadingCollection()
|
|
|
|
{
|
|
|
|
$user = new User();
|
|
|
|
$user->name = 'Marco';
|
|
|
|
$this->_em->persist($user);
|
|
|
|
$this->_em->flush();
|
|
|
|
|
|
|
|
$tweet = new Tweet();
|
|
|
|
$tweet->author = $user;
|
|
|
|
$tweet->content = 'Criteria is awesome';
|
|
|
|
$this->_em->persist($tweet);
|
|
|
|
$this->_em->flush();
|
|
|
|
|
|
|
|
$this->_em->clear();
|
|
|
|
|
|
|
|
$criteria = new Criteria();
|
|
|
|
$criteria->andWhere($criteria->expr()->contains('content', 'Criteria'));
|
|
|
|
|
2016-12-08 18:01:04 +01:00
|
|
|
$user = $this->_em->find(User::class, $user->id);
|
2014-05-17 12:54:25 +02:00
|
|
|
$tweets = $user->tweets->matching($criteria);
|
|
|
|
|
2016-12-08 18:01:04 +01:00
|
|
|
$this->assertInstanceOf(LazyCriteriaCollection::class, $tweets);
|
2014-05-17 12:54:25 +02:00
|
|
|
$this->assertFalse($tweets->isInitialized());
|
|
|
|
|
|
|
|
$tweets->contains($tweet);
|
|
|
|
$this->assertTrue($tweets->contains($tweet));
|
|
|
|
|
|
|
|
$this->assertFalse($tweets->isInitialized());
|
|
|
|
}
|
2012-08-31 17:52:46 +07:00
|
|
|
}
|