2015-01-22 17:32:03 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Doctrine\Tests\ORM\Functional\Ticket;
|
|
|
|
|
|
|
|
use Doctrine\Tests\Models\DDC3346\DDC3346Article;
|
|
|
|
use Doctrine\Tests\Models\DDC3346\DDC3346Author;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @group DDC-3346
|
|
|
|
*/
|
|
|
|
class DDC3346Test extends \Doctrine\Tests\OrmFunctionalTestCase
|
|
|
|
{
|
|
|
|
public function setUp()
|
|
|
|
{
|
2015-01-23 16:15:57 +01:00
|
|
|
$this->useModelSet('ddc3346');
|
2015-01-22 17:32:03 +03:00
|
|
|
|
2015-01-23 16:15:57 +01:00
|
|
|
parent::setUp();
|
2015-01-23 16:19:15 +01:00
|
|
|
|
|
|
|
$this->loadAuthorFixture();
|
2015-01-22 17:32:03 +03:00
|
|
|
}
|
|
|
|
|
2015-01-23 16:09:18 +01:00
|
|
|
public function testFindOneWithEagerFetchWillNotHydrateLimitedCollection()
|
2015-01-22 17:32:03 +03:00
|
|
|
{
|
2015-01-23 16:22:39 +01:00
|
|
|
/* @var DDC3346Author $author */
|
2015-01-23 16:10:14 +01:00
|
|
|
$author = $this->_em->getRepository(DDC3346Author::CLASSNAME)->findOneBy(
|
2015-01-23 16:22:39 +01:00
|
|
|
array('username' => 'bwoogy')
|
2015-01-23 16:09:18 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
$this->assertCount(2, $author->articles);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testFindLimitedWithEagerFetchWillNotHydrateLimitedCollection()
|
|
|
|
{
|
2015-01-23 16:22:39 +01:00
|
|
|
/* @var DDC3346Author[] $authors */
|
2015-01-23 16:19:15 +01:00
|
|
|
$authors = $this->_em->getRepository(DDC3346Author::CLASSNAME)->findBy(
|
2015-01-23 16:22:39 +01:00
|
|
|
array('username' => 'bwoogy'),
|
2015-01-23 16:19:15 +01:00
|
|
|
null,
|
|
|
|
1
|
|
|
|
);
|
2015-01-23 16:09:18 +01:00
|
|
|
|
2015-01-23 16:19:15 +01:00
|
|
|
$this->assertCount(1, $authors);
|
|
|
|
$this->assertCount(2, $authors[0]->articles);
|
|
|
|
}
|
2015-01-22 17:32:03 +03:00
|
|
|
|
2015-01-23 16:19:15 +01:00
|
|
|
public function testFindWithEagerFetchAndOffsetWillNotHydrateLimitedCollection()
|
|
|
|
{
|
2015-01-23 16:22:39 +01:00
|
|
|
/* @var DDC3346Author[] $authors */
|
2015-01-23 16:10:14 +01:00
|
|
|
$authors = $this->_em->getRepository(DDC3346Author::CLASSNAME)->findBy(
|
2015-01-23 16:22:39 +01:00
|
|
|
array('username' => 'bwoogy'),
|
2015-01-23 16:09:18 +01:00
|
|
|
null,
|
2015-01-23 16:19:15 +01:00
|
|
|
null,
|
2015-01-23 16:09:18 +01:00
|
|
|
1
|
2015-01-22 17:32:03 +03:00
|
|
|
);
|
|
|
|
|
|
|
|
$this->assertCount(1, $authors);
|
|
|
|
$this->assertCount(2, $authors[0]->articles);
|
2015-01-23 16:09:18 +01:00
|
|
|
}
|
2015-01-22 17:32:03 +03:00
|
|
|
|
2015-01-23 16:19:15 +01:00
|
|
|
private function loadAuthorFixture()
|
2015-01-23 16:09:18 +01:00
|
|
|
{
|
2015-01-23 16:22:39 +01:00
|
|
|
$user = new DDC3346Author();
|
2015-01-23 16:09:18 +01:00
|
|
|
$article1 = new DDC3346Article();
|
|
|
|
$article2 = new DDC3346Article();
|
2015-01-23 16:22:39 +01:00
|
|
|
|
2015-01-23 16:23:11 +01:00
|
|
|
$user->username = 'bwoogy';
|
|
|
|
$article1->user = $user;
|
|
|
|
$article2->user = $user;
|
|
|
|
$user->articles[] = $article1;
|
|
|
|
$user->articles[] = $article2;
|
2015-01-23 16:09:18 +01:00
|
|
|
|
|
|
|
$this->_em->persist($user);
|
|
|
|
$this->_em->persist($article1);
|
|
|
|
$this->_em->persist($article2);
|
|
|
|
$this->_em->flush();
|
|
|
|
$this->_em->clear();
|
2015-01-22 17:32:03 +03:00
|
|
|
}
|
|
|
|
}
|