-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathEntityPreloadBlogManyHasOneTest.php
121 lines (94 loc) · 4.19 KB
/
EntityPreloadBlogManyHasOneTest.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<?php declare(strict_types = 1);
namespace ShipMonkTests\DoctrineEntityPreloader;
use Doctrine\ORM\Mapping\ClassMetadata;
use ShipMonkTests\DoctrineEntityPreloader\Fixtures\Blog\Article;
use ShipMonkTests\DoctrineEntityPreloader\Fixtures\Blog\Category;
use ShipMonkTests\DoctrineEntityPreloader\Lib\TestCase;
use function array_filter;
use function array_map;
use function array_unique;
use function array_values;
use function count;
class EntityPreloadBlogManyHasOneTest extends TestCase
{
public function testManyHasOneUnoptimized(): void
{
$this->createDummyBlogData(categoryCount: 5, articleInEachCategoryCount: 5);
$articles = $this->getEntityManager()->getRepository(Article::class)->findAll();
$this->readArticleCategoryNames($articles);
self::assertAggregatedQueries([
['count' => 1, 'query' => 'SELECT * FROM article t0'],
['count' => 5, 'query' => 'SELECT * FROM category t0 WHERE t0.id = ?'],
]);
}
public function testManyHasOneWithManualPreload(): void
{
$this->createDummyBlogData(categoryCount: 5, articleInEachCategoryCount: 5);
$articles = $this->getEntityManager()->getRepository(Article::class)->findAll();
$categoryIds = array_map(static fn (Article $article) => $article->getCategory()?->getId(), $articles);
$categoryIds = array_filter($categoryIds, static fn (?int $id) => $id !== null);
if (count($categoryIds) > 0) {
$this->getEntityManager()->createQueryBuilder()
->select('category')
->from(Category::class, 'category')
->where('category.id IN (:ids)')
->setParameter('ids', array_values(array_unique($categoryIds)))
->getQuery()
->getResult();
}
$this->readArticleCategoryNames($articles);
self::assertAggregatedQueries([
['count' => 1, 'query' => 'SELECT * FROM article t0'],
['count' => 1, 'query' => 'SELECT * FROM category c0_ WHERE c0_.id IN (?, ?, ?, ?, ?)'],
]);
}
public function testManyHasOneWithFetchJoin(): void
{
$this->createDummyBlogData(categoryCount: 5, articleInEachCategoryCount: 5);
$articles = $this->getEntityManager()->createQueryBuilder()
->select('article', 'category')
->from(Article::class, 'article')
->leftJoin('article.category', 'category')
->getQuery()
->getResult();
$this->readArticleCategoryNames($articles);
self::assertAggregatedQueries([
['count' => 1, 'query' => 'SELECT * FROM article a0_ LEFT JOIN category c1_ ON a0_.category_id = c1_.id'],
]);
}
public function testManyHasOneWithEagerFetchMode(): void
{
$this->createDummyBlogData(categoryCount: 5, articleInEachCategoryCount: 5);
$articles = $this->getEntityManager()->createQueryBuilder()
->select('article')
->from(Article::class, 'article')
->getQuery()
->setFetchMode(Article::class, 'category', ClassMetadata::FETCH_EAGER)
->getResult();
$this->readArticleCategoryNames($articles);
self::assertAggregatedQueries([
['count' => 1, 'query' => 'SELECT * FROM article a0_'],
['count' => 1, 'query' => 'SELECT * FROM category t0 WHERE t0.id IN (?, ?, ?, ?, ?)'],
]);
}
public function testManyHasOneWithPreload(): void
{
$this->createDummyBlogData(categoryCount: 5, articleInEachCategoryCount: 5);
$articles = $this->getEntityManager()->getRepository(Article::class)->findAll();
$this->getEntityPreloader()->preload($articles, 'category');
$this->readArticleCategoryNames($articles);
self::assertAggregatedQueries([
['count' => 1, 'query' => 'SELECT * FROM article t0'],
['count' => 1, 'query' => 'SELECT * FROM category c0_ WHERE c0_.id IN (?, ?, ?, ?, ?)'],
]);
}
/**
* @param array<Article> $articles
*/
private function readArticleCategoryNames(array $articles): void
{
foreach ($articles as $article) {
$article->getCategory()?->getName();
}
}
}