forked from doctrine/orm
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathManyToManyBasicAssociationTest.php
589 lines (433 loc) · 18.5 KB
/
ManyToManyBasicAssociationTest.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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
<?php
declare(strict_types=1);
namespace Doctrine\Tests\ORM\Functional;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\Common\Collections\Criteria;
use Doctrine\ORM\PersistentCollection;
use Doctrine\ORM\UnitOfWork;
use Doctrine\Tests\Models\CMS\CmsGroup;
use Doctrine\Tests\Models\CMS\CmsTag;
use Doctrine\Tests\Models\CMS\CmsUser;
use Doctrine\Tests\OrmFunctionalTestCase;
use function assert;
use function get_class;
/**
* Basic many-to-many association tests.
* ("Working with associations")
*/
class ManyToManyBasicAssociationTest extends OrmFunctionalTestCase
{
protected function setUp(): void
{
$this->useModelSet('cms');
parent::setUp();
}
public function testUnsetManyToMany(): void
{
$user = $this->addCmsUserGblancoWithGroups(1);
// inverse side
// owning side!
unset($user->groups[0]->users[0], $user->groups[0]);
$this->_em->flush();
// Check that the link in the association table has been deleted
$this->assertGblancoGroupCountIs(0);
}
public function testBasicManyToManyJoin(): void
{
$user = $this->addCmsUserGblancoWithGroups(1);
$this->_em->clear();
self::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();
self::assertEquals(2, $this->_em->getUnitOfWork()->size());
self::assertInstanceOf(CmsUser::class, $result[0]);
self::assertEquals('Guilherme', $result[0]->name);
self::assertEquals(1, $result[0]->getGroups()->count());
$groups = $result[0]->getGroups();
self::assertEquals('Developers_0', $groups[0]->getName());
self::assertEquals(UnitOfWork::STATE_MANAGED, $this->_em->getUnitOfWork()->getEntityState($result[0]));
self::assertEquals(UnitOfWork::STATE_MANAGED, $this->_em->getUnitOfWork()->getEntityState($groups[0]));
self::assertInstanceOf(PersistentCollection::class, $groups);
self::assertInstanceOf(PersistentCollection::class, $groups[0]->getUsers());
$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 join u.groups g');
self::assertCount(0, $query->getResult());
}
public function testManyToManyAddRemove(): void
{
$user = $this->addCmsUserGblancoWithGroups(2);
$this->_em->clear();
$uRep = $this->_em->getRepository(get_class($user));
// Get user
$user = $uRep->findOneById($user->getId());
self::assertNotNull($user, 'Has to return exactly one entry.');
self::assertFalse($user->getGroups()->isInitialized());
// Check groups
self::assertEquals(2, $user->getGroups()->count());
self::assertTrue($user->getGroups()->isInitialized());
// Remove first group
unset($user->groups[0]);
//$user->getGroups()->remove(0);
$this->_em->flush();
self::assertFalse($user->getGroups()->isDirty());
$this->_em->clear();
// Reload same user
$user2 = $uRep->findOneById($user->getId());
// Check groups
self::assertEquals(1, $user2->getGroups()->count());
}
public function testManyToManyInverseSideIgnored(): void
{
$user = $this->addCmsUserGblancoWithGroups(0);
$group = new CmsGroup();
$group->name = 'Humans';
// modify directly, addUser() would also (properly) set the owning side
$group->users[] = $user;
$this->_em->persist($user);
$this->_em->persist($group);
$this->_em->flush();
$this->_em->clear();
// Association should not exist
$user2 = $this->_em->find(get_class($user), $user->getId());
self::assertNotNull($user2, 'Has to return exactly one entry.');
self::assertEquals(0, $user2->getGroups()->count());
}
public function testManyToManyCollectionClearing(): void
{
$user = $this->addCmsUserGblancoWithGroups($groupCount = 10);
// Check that there are indeed 10 links in the association table
$this->assertGblancoGroupCountIs($groupCount);
$user->groups->clear();
$this->getQueryLog()->reset()->enable();
$this->_em->flush();
// Deletions of entire collections happen in a single query
$this->removeTransactionCommandsFromQueryLog();
self::assertQueryCount(1);
// Check that the links in the association table have been deleted
$this->assertGblancoGroupCountIs(0);
}
public function testManyToManyCollectionClearAndAdd(): void
{
$user = $this->addCmsUserGblancoWithGroups($groupCount = 10);
$groups = $user->groups->toArray();
$user->groups->clear();
foreach ($groups as $group) {
$user->groups[] = $group;
}
self::assertInstanceOf(PersistentCollection::class, $user->groups);
self::assertTrue($user->groups->isDirty());
self::assertCount($groupCount, $user->groups, 'There should be 10 groups in the collection.');
$this->_em->flush();
$this->assertGblancoGroupCountIs($groupCount);
}
public function assertGblancoGroupCountIs(int $expectedGroupCount): void
{
$countDql = "SELECT count(g.id) FROM Doctrine\Tests\Models\CMS\CmsUser u JOIN u.groups g WHERE u.username = 'gblanco'";
self::assertEquals(
$expectedGroupCount,
$this->_em->createQuery($countDql)->getSingleScalarResult(),
"Failed to verify that CmsUser with username 'gblanco' has a group count of 10 with a DQL count query."
);
}
public function testRetrieveManyToManyAndAddMore(): void
{
$user = $this->addCmsUserGblancoWithGroups(2);
$group = new CmsGroup();
$group->name = 'Developers_Fresh';
$this->_em->persist($group);
$this->_em->flush();
$this->_em->clear();
$freshUser = $this->_em->find(CmsUser::class, $user->getId());
assert($freshUser instanceof CmsUser);
$newGroup = new CmsGroup();
$newGroup->setName('12Monkeys');
$freshUser->addGroup($newGroup);
self::assertFalse($freshUser->groups->isInitialized(), 'CmsUser::groups Collection has to be uninitialized for this test.');
$this->_em->flush();
self::assertFalse($freshUser->groups->isInitialized(), 'CmsUser::groups Collection has to be uninitialized for this test.');
self::assertCount(3, $freshUser->getGroups());
self::assertCount(3, $freshUser->getGroups()->getSnapshot(), 'Snapshot of CmsUser::groups should contain 3 entries.');
$this->_em->clear();
$freshUser = $this->_em->find(CmsUser::class, $user->getId());
self::assertCount(3, $freshUser->getGroups());
}
/** @group DDC-130 */
public function testRemoveUserWithManyGroups(): void
{
$user = $this->addCmsUserGblancoWithGroups(10);
$userId = $user->getId();
$this->_em->remove($user);
$this->getQueryLog()->reset()->enable();
$this->_em->flush();
// This takes three queries: One to delete all user -> group join table rows for the user,
// one to delete all user -> tags join table rows for the user, and a final one to delete the user itself.
$this->removeTransactionCommandsFromQueryLog();
self::assertQueryCount(3);
$newUser = $this->_em->find(get_class($user), $userId);
self::assertNull($newUser);
}
/** @group DDC-130 */
public function testRemoveGroupWithUser(): void
{
$user = $this->addCmsUserGblancoWithGroups(5);
$anotherUser = new CmsUser();
$anotherUser->username = 'joe_doe';
$anotherUser->name = 'Joe Doe';
$anotherUser->status = 'QA Engineer';
foreach ($user->getGroups() as $group) {
$anotherUser->addGroup($group);
}
$this->_em->persist($anotherUser);
$this->_em->flush();
foreach ($user->getGroups() as $group) {
$this->_em->remove($group);
}
$this->getQueryLog()->reset()->enable();
$this->_em->flush();
// This takes 5 * 2 queries – for each group to be removed, one to remove all join table rows
// for the CmsGroup -> CmsUser inverse side association (for both users at once),
// and one for the group itself.
$this->removeTransactionCommandsFromQueryLog();
self::assertQueryCount(10);
// Changes to in-memory collection have been made and flushed
self::assertCount(0, $user->getGroups());
self::assertFalse($user->getGroups()->isDirty());
$this->_em->clear();
// Changes have been made to the database
$newUser = $this->_em->find(get_class($user), $user->getId());
self::assertCount(0, $newUser->getGroups());
}
public function testDereferenceCollectionDelete(): void
{
$user = $this->addCmsUserGblancoWithGroups(2);
$user->groups = null;
$this->getQueryLog()->reset()->enable();
$this->_em->flush();
// It takes one query to remove all join table rows for the user at once
$this->removeTransactionCommandsFromQueryLog();
self::assertQueryCount(1);
$this->_em->clear();
$newUser = $this->_em->find(get_class($user), $user->getId());
self::assertCount(0, $newUser->getGroups());
}
/** @group DDC-839 */
public function testWorkWithDqlHydratedEmptyCollection(): void
{
$user = $this->addCmsUserGblancoWithGroups(0);
$group = new CmsGroup();
$group->name = 'Developers0';
$this->_em->persist($group);
$this->_em->flush();
$this->_em->clear();
$newUser = $this->_em->createQuery('SELECT u, g FROM Doctrine\Tests\Models\CMS\CmsUser u LEFT JOIN u.groups g WHERE u.id = ?1')
->setParameter(1, $user->getId())
->getSingleResult();
self::assertCount(0, $newUser->groups);
self::assertIsArray($newUser->groups->getMapping());
$newUser->addGroup($group);
$this->_em->flush();
$this->_em->clear();
$newUser = $this->_em->find(get_class($user), $user->getId());
self::assertCount(1, $newUser->groups);
}
public function addCmsUserGblancoWithGroups(int $groupCount = 1): CmsUser
{
$user = new CmsUser();
$user->name = 'Guilherme';
$user->username = 'gblanco';
$user->status = 'developer';
for ($i = 0; $i < $groupCount; ++$i) {
$group = new CmsGroup();
$group->name = 'Developers_' . $i;
$user->addGroup($group);
}
$this->_em->persist($user);
$this->_em->flush();
self::assertNotNull($user->getId(), "User 'gblanco' should have an ID assigned after the persist()/flush() operation.");
return $user;
}
/** @group DDC-978 */
public function testClearAndResetCollection(): void
{
$user = $this->addCmsUserGblancoWithGroups(2);
$group1 = new CmsGroup();
$group1->name = 'Developers_New1';
$group2 = new CmsGroup();
$group2->name = 'Developers_New2';
$this->_em->persist($group1);
$this->_em->persist($group2);
$this->_em->flush();
$this->_em->clear();
$user = $this->_em->find(get_class($user), $user->id);
$coll = new ArrayCollection([$group1, $group2]);
$user->groups = $coll;
$this->_em->flush();
self::assertInstanceOf(
PersistentCollection::class,
$user->groups,
'UnitOfWork should have replaced ArrayCollection with PersistentCollection.'
);
$this->_em->flush();
$this->_em->clear();
$user = $this->_em->find(get_class($user), $user->id);
self::assertCount(2, $user->groups);
self::assertEquals('Developers_New1', $user->groups[0]->name);
self::assertEquals('Developers_New2', $user->groups[1]->name);
}
/** @group DDC-733 */
public function testInitializePersistentCollection(): void
{
$user = $this->addCmsUserGblancoWithGroups(2);
$this->_em->clear();
$user = $this->_em->find(get_class($user), $user->id);
self::assertFalse($user->groups->isInitialized(), 'Pre-condition: lazy collection');
$this->_em->getUnitOfWork()->initializeObject($user->groups);
self::assertTrue($user->groups->isInitialized(), 'Collection should be initialized after calling UnitOfWork::initializeObject()');
}
/**
* @group DDC-1189
* @group DDC-956
*/
public function testClearBeforeLazyLoad(): void
{
$user = $this->addCmsUserGblancoWithGroups(4);
$this->_em->clear();
$user = $this->_em->find(get_class($user), $user->id);
$user->groups->clear();
self::assertCount(0, $user->groups);
$this->_em->flush();
$user = $this->_em->find(get_class($user), $user->id);
self::assertCount(0, $user->groups);
}
/** @group DDC-3952 */
public function testManyToManyOrderByIsNotIgnored(): void
{
$user = $this->addCmsUserGblancoWithGroups(1);
$group1 = new CmsGroup();
$group2 = new CmsGroup();
$group3 = new CmsGroup();
$group1->name = 'C';
$group2->name = 'A';
$group3->name = 'B';
$user->addGroup($group1);
$user->addGroup($group2);
$user->addGroup($group3);
$this->_em->persist($user);
$this->_em->flush();
$this->_em->clear();
$user = $this->_em->find(get_class($user), $user->id);
$criteria = Criteria::create()
->orderBy(['name' => Criteria::ASC]);
self::assertEquals(
['A', 'B', 'C', 'Developers_0'],
$user
->getGroups()
->matching($criteria)
->map(static function (CmsGroup $group) {
return $group->getName();
})
->toArray()
);
}
/** @group DDC-3952 */
public function testManyToManyOrderByHonorsFieldNameColumnNameAliases(): void
{
$user = new CmsUser();
$user->name = 'Guilherme';
$user->username = 'gblanco';
$user->status = 'developer';
$tag1 = new CmsTag();
$tag2 = new CmsTag();
$tag3 = new CmsTag();
$tag1->name = 'C';
$tag2->name = 'A';
$tag3->name = 'B';
$user->addTag($tag1);
$user->addTag($tag2);
$user->addTag($tag3);
$this->_em->persist($user);
$this->_em->flush();
$this->_em->clear();
$user = $this->_em->find(get_class($user), $user->id);
$criteria = Criteria::create()
->orderBy(['name' => Criteria::ASC]);
self::assertEquals(
['A', 'B', 'C'],
$user
->getTags()
->matching($criteria)
->map(static function (CmsTag $tag) {
return $tag->getName();
})
->toArray()
);
}
public function testMatchingWithLimit(): void
{
$user = $this->addCmsUserGblancoWithGroups(2);
$this->_em->clear();
$user = $this->_em->find(get_class($user), $user->id);
$groups = $user->groups;
self::assertFalse($user->groups->isInitialized(), 'Pre-condition: lazy collection');
$criteria = Criteria::create()->setMaxResults(1);
$result = $groups->matching($criteria);
self::assertCount(1, $result);
self::assertFalse($user->groups->isInitialized(), 'Post-condition: matching does not initialize collection');
}
public function testMatchingWithOffset(): void
{
$user = $this->addCmsUserGblancoWithGroups(2);
$this->_em->clear();
$user = $this->_em->find(get_class($user), $user->id);
$groups = $user->groups;
self::assertFalse($user->groups->isInitialized(), 'Pre-condition: lazy collection');
$criteria = Criteria::create()->setFirstResult(1);
$result = $groups->matching($criteria);
self::assertCount(1, $result);
$firstGroup = $result->first();
self::assertEquals('Developers_1', $firstGroup->name);
self::assertFalse($user->groups->isInitialized(), 'Post-condition: matching does not initialize collection');
}
public function testMatchingWithLimitAndOffset(): void
{
$user = $this->addCmsUserGblancoWithGroups(5);
$this->_em->clear();
$user = $this->_em->find(get_class($user), $user->id);
$groups = $user->groups;
self::assertFalse($user->groups->isInitialized(), 'Pre-condition: lazy collection');
$criteria = Criteria::create()->setFirstResult(1)->setMaxResults(3);
$result = $groups->matching($criteria);
self::assertCount(3, $result);
$firstGroup = $result->first();
self::assertEquals('Developers_1', $firstGroup->name);
$lastGroup = $result->last();
self::assertEquals('Developers_3', $lastGroup->name);
self::assertFalse($user->groups->isInitialized(), 'Post-condition: matching does not initialize collection');
}
public function testMatching(): void
{
$user = $this->addCmsUserGblancoWithGroups(2);
$this->_em->clear();
$user = $this->_em->find(get_class($user), $user->id);
$groups = $user->groups;
self::assertFalse($user->groups->isInitialized(), 'Pre-condition: lazy collection');
$criteria = Criteria::create()->where(Criteria::expr()->eq('name', (string) 'Developers_0'));
$result = $groups->matching($criteria);
self::assertCount(1, $result);
$firstGroup = $result->first();
self::assertEquals('Developers_0', $firstGroup->name);
self::assertFalse($user->groups->isInitialized(), 'Post-condition: matching does not initialize collection');
}
private function removeTransactionCommandsFromQueryLog(): void
{
$log = $this->getQueryLog();
foreach ($log->queries as $key => $entry) {
if ($entry['sql'] === '"START TRANSACTION"' || $entry['sql'] === '"COMMIT"') {
unset($log->queries[$key]);
}
}
}
}