forked from mongodb/laravel-mongodb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRelationsTest.php
1275 lines (964 loc) · 53.1 KB
/
RelationsTest.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
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
declare(strict_types=1);
namespace MongoDB\Laravel\Tests;
use Illuminate\Database\Eloquent\Collection;
use Mockery;
use MongoDB\BSON\ObjectId;
use MongoDB\Laravel\Tests\Models\Address;
use MongoDB\Laravel\Tests\Models\Book;
use MongoDB\Laravel\Tests\Models\Client;
use MongoDB\Laravel\Tests\Models\Group;
use MongoDB\Laravel\Tests\Models\Item;
use MongoDB\Laravel\Tests\Models\Label;
use MongoDB\Laravel\Tests\Models\Photo;
use MongoDB\Laravel\Tests\Models\Role;
use MongoDB\Laravel\Tests\Models\Skill;
use MongoDB\Laravel\Tests\Models\Soft;
use MongoDB\Laravel\Tests\Models\User;
class RelationsTest extends TestCase
{
public function tearDown(): void
{
Mockery::close();
User::truncate();
Client::truncate();
Address::truncate();
Book::truncate();
Item::truncate();
Role::truncate();
Group::truncate();
Photo::truncate();
Label::truncate();
Skill::truncate();
}
public function testHasMany(): void
{
$author = User::create(['name' => 'George R. R. Martin']);
Book::create(['title' => 'A Game of Thrones', 'author_id' => $author->_id]);
Book::create(['title' => 'A Clash of Kings', 'author_id' => $author->_id]);
$books = $author->books;
$this->assertCount(2, $books);
$user = User::create(['name' => 'John Doe']);
Item::create(['type' => 'knife', 'user_id' => $user->_id]);
Item::create(['type' => 'shield', 'user_id' => $user->_id]);
Item::create(['type' => 'sword', 'user_id' => $user->_id]);
Item::create(['type' => 'bag', 'user_id' => null]);
$items = $user->items;
$this->assertCount(3, $items);
}
public function testHasManyWithTrashed(): void
{
$user = User::create(['name' => 'George R. R. Martin']);
$first = Soft::create(['title' => 'A Game of Thrones', 'user_id' => $user->_id]);
$second = Soft::create(['title' => 'The Witcher', 'user_id' => $user->_id]);
self::assertNull($first->deleted_at);
self::assertEquals($user->_id, $first->user->_id);
self::assertEquals([$first->_id, $second->_id], $user->softs->pluck('_id')->toArray());
$first->delete();
$user->refresh();
self::assertNotNull($first->deleted_at);
self::assertEquals([$second->_id], $user->softs->pluck('_id')->toArray());
self::assertEquals([$first->_id, $second->_id], $user->softsWithTrashed->pluck('_id')->toArray());
}
public function testBelongsTo(): void
{
$user = User::create(['name' => 'George R. R. Martin']);
Book::create(['title' => 'A Game of Thrones', 'author_id' => $user->_id]);
$book = Book::create(['title' => 'A Clash of Kings', 'author_id' => $user->_id]);
$author = $book->author;
$this->assertEquals('George R. R. Martin', $author->name);
$user = User::create(['name' => 'John Doe']);
$item = Item::create(['type' => 'sword', 'user_id' => $user->_id]);
$owner = $item->user;
$this->assertEquals('John Doe', $owner->name);
$book = Book::create(['title' => 'A Clash of Kings']);
$this->assertNull($book->author);
}
public function testHasOne(): void
{
$user = User::create(['name' => 'John Doe']);
Role::create(['type' => 'admin', 'user_id' => $user->_id]);
$role = $user->role;
$this->assertEquals('admin', $role->type);
$this->assertEquals($user->_id, $role->user_id);
$user = User::create(['name' => 'Jane Doe']);
$role = new Role(['type' => 'user']);
$user->role()->save($role);
$role = $user->role;
$this->assertEquals('user', $role->type);
$this->assertEquals($user->_id, $role->user_id);
$user = User::where('name', 'Jane Doe')->first();
$role = $user->role;
$this->assertEquals('user', $role->type);
$this->assertEquals($user->_id, $role->user_id);
}
public function testWithBelongsTo(): void
{
$user = User::create(['name' => 'John Doe']);
Item::create(['type' => 'knife', 'user_id' => $user->_id]);
Item::create(['type' => 'shield', 'user_id' => $user->_id]);
Item::create(['type' => 'sword', 'user_id' => $user->_id]);
Item::create(['type' => 'bag', 'user_id' => null]);
$items = Item::with('user')->orderBy('user_id', 'desc')->get();
$user = $items[0]->getRelation('user');
$this->assertInstanceOf(User::class, $user);
$this->assertEquals('John Doe', $user->name);
$this->assertCount(1, $items[0]->getRelations());
$this->assertNull($items[3]->getRelation('user'));
}
public function testWithHashMany(): void
{
$user = User::create(['name' => 'John Doe']);
Item::create(['type' => 'knife', 'user_id' => $user->_id]);
Item::create(['type' => 'shield', 'user_id' => $user->_id]);
Item::create(['type' => 'sword', 'user_id' => $user->_id]);
Item::create(['type' => 'bag', 'user_id' => null]);
$user = User::with('items')->find($user->_id);
$items = $user->getRelation('items');
$this->assertCount(3, $items);
$this->assertInstanceOf(Item::class, $items[0]);
}
public function testWithHasOne(): void
{
$user = User::create(['name' => 'John Doe']);
Role::create(['type' => 'admin', 'user_id' => $user->_id]);
Role::create(['type' => 'guest', 'user_id' => $user->_id]);
$user = User::with('role')->find($user->_id);
$role = $user->getRelation('role');
$this->assertInstanceOf(Role::class, $role);
$this->assertEquals('admin', $role->type);
}
public function testEasyRelation(): void
{
// Has Many
$user = User::create(['name' => 'John Doe']);
$item = Item::create(['type' => 'knife']);
$user->items()->save($item);
$user = User::find($user->_id);
$items = $user->items;
$this->assertCount(1, $items);
$this->assertInstanceOf(Item::class, $items[0]);
$this->assertEquals($user->_id, $items[0]->user_id);
// Has one
$user = User::create(['name' => 'John Doe']);
$role = Role::create(['type' => 'admin']);
$user->role()->save($role);
$user = User::find($user->_id);
$role = $user->role;
$this->assertInstanceOf(Role::class, $role);
$this->assertEquals('admin', $role->type);
$this->assertEquals($user->_id, $role->user_id);
}
public function testBelongsToMany(): void
{
$user = User::create(['name' => 'John Doe']);
// Add 2 clients
$user->clients()->save(new Client(['name' => 'Pork Pies Ltd.']));
$user->clients()->create(['name' => 'Buffet Bar Inc.']);
// Refetch
$user = User::with('clients')->find($user->_id);
$client = Client::with('users')->first();
// Check for relation attributes
$this->assertArrayHasKey('user_ids', $client->getAttributes());
$this->assertArrayHasKey('client_ids', $user->getAttributes());
$clients = $user->getRelation('clients');
$users = $client->getRelation('users');
$this->assertInstanceOf(Collection::class, $users);
$this->assertInstanceOf(Collection::class, $clients);
$this->assertInstanceOf(Client::class, $clients[0]);
$this->assertInstanceOf(User::class, $users[0]);
$this->assertCount(2, $user->clients);
$this->assertCount(1, $client->users);
// Now create a new user to an existing client
$user = $client->users()->create(['name' => 'Jane Doe']);
$this->assertInstanceOf(Collection::class, $user->clients);
$this->assertInstanceOf(Client::class, $user->clients->first());
$this->assertCount(1, $user->clients);
// Get user and unattached client
$user = User::where('name', '=', 'Jane Doe')->first();
$client = Client::Where('name', '=', 'Buffet Bar Inc.')->first();
// Check the models are what they should be
$this->assertInstanceOf(Client::class, $client);
$this->assertInstanceOf(User::class, $user);
// Assert they are not attached
$this->assertNotContains($client->_id, $user->client_ids);
$this->assertNotContains($user->_id, $client->user_ids);
$this->assertCount(1, $user->clients);
$this->assertCount(1, $client->users);
// Attach the client to the user
$user->clients()->attach($client);
// Get the new user model
$user = User::where('name', '=', 'Jane Doe')->first();
$client = Client::Where('name', '=', 'Buffet Bar Inc.')->first();
// Assert they are attached
$this->assertContains($client->_id, $user->client_ids);
$this->assertContains($user->_id, $client->user_ids);
$this->assertCount(2, $user->clients);
$this->assertCount(2, $client->users);
// Detach clients from user
$user->clients()->sync([]);
// Get the new user model
$user = User::where('name', '=', 'Jane Doe')->first();
$client = Client::Where('name', '=', 'Buffet Bar Inc.')->first();
// Assert they are not attached
$this->assertNotContains($client->_id, $user->client_ids);
$this->assertNotContains($user->_id, $client->user_ids);
$this->assertCount(0, $user->clients);
$this->assertCount(1, $client->users);
}
public function testBelongsToManyAttachesExistingModels(): void
{
$user = User::create(['name' => 'John Doe', 'client_ids' => ['1234523']]);
$clients = [
Client::create(['name' => 'Pork Pies Ltd.'])->_id,
Client::create(['name' => 'Buffet Bar Inc.'])->_id,
];
$moreClients = [
Client::create(['name' => 'synced Boloni Ltd.'])->_id,
Client::create(['name' => 'synced Meatballs Inc.'])->_id,
];
// Sync multiple records
$user->clients()->sync($clients);
$user = User::with('clients')->find($user->_id);
// Assert non attached ID's are detached successfully
$this->assertNotContains('1234523', $user->client_ids);
// Assert there are two client objects in the relationship
$this->assertCount(2, $user->clients);
// Add more clients
$user->clients()->sync($moreClients);
// Refetch
$user = User::with('clients')->find($user->_id);
// Assert there are now still 2 client objects in the relationship
$this->assertCount(2, $user->clients);
// Assert that the new relationships name start with synced
$this->assertStringStartsWith('synced', $user->clients[0]->name);
$this->assertStringStartsWith('synced', $user->clients[1]->name);
}
public function testBelongsToManySync(): void
{
// create test instances
$user = User::create(['name' => 'Hans Thomas']);
$client1 = Client::create(['name' => 'Pork Pies Ltd.']);
$client2 = Client::create(['name' => 'Buffet Bar Inc.']);
// Sync multiple
$user->clients()->sync([$client1->_id, $client2->_id]);
$this->assertCount(2, $user->clients);
// Sync single wrapped by an array
$user->clients()->sync([$client1->_id]);
$user->load('clients');
$this->assertCount(1, $user->clients);
self::assertTrue($user->clients->first()->is($client1));
// Sync single model
$user->clients()->sync($client2);
$user->load('clients');
$this->assertCount(1, $user->clients);
self::assertTrue($user->clients->first()->is($client2));
}
public function testBelongsToManyAttachArray(): void
{
$user = User::create(['name' => 'John Doe']);
$client1 = Client::create(['name' => 'Test 1'])->_id;
$client2 = Client::create(['name' => 'Test 2'])->_id;
$user->clients()->attach([$client1, $client2]);
$this->assertCount(2, $user->clients);
}
public function testBelongsToManyAttachEloquentCollection(): void
{
User::create(['name' => 'John Doe']);
$client1 = Client::create(['name' => 'Test 1']);
$client2 = Client::create(['name' => 'Test 2']);
$collection = new Collection([$client1, $client2]);
$user = User::where('name', '=', 'John Doe')->first();
$user->clients()->attach($collection);
$this->assertCount(2, $user->clients);
}
public function testBelongsToManySyncWithCustomKeys(): void
{
$client = Client::create(['cclient_id' => (string) (new ObjectId()), 'years' => '5']);
$skill1 = Skill::create(['cskill_id' => (string) (new ObjectId()), 'name' => 'PHP']);
$skill2 = Skill::create(['cskill_id' => (string) (new ObjectId()), 'name' => 'Laravel']);
$client = Client::query()->find($client->_id);
$client->skillsWithCustomKeys()->sync([$skill1->cskill_id, $skill2->cskill_id]);
$this->assertCount(2, $client->skillsWithCustomKeys);
self::assertIsString($skill1->cskill_id);
self::assertContains($skill1->cskill_id, $client->skillsWithCustomKeys->pluck('cskill_id'));
self::assertNotContains($skill1->_id, $client->skillsWithCustomKeys->pluck('cskill_id'));
self::assertIsString($skill2->cskill_id);
self::assertContains($skill2->cskill_id, $client->skillsWithCustomKeys->pluck('cskill_id'));
self::assertNotContains($skill2->_id, $client->skillsWithCustomKeys->pluck('cskill_id'));
$check = Skill::query()->find($skill1->_id);
self::assertIsString($check->cskill_id);
self::assertContains($check->cskill_id, $client->skillsWithCustomKeys->pluck('cskill_id'));
self::assertNotContains($check->_id, $client->skillsWithCustomKeys->pluck('cskill_id'));
$check = Skill::query()->find($skill2->_id);
self::assertIsString($check->cskill_id);
self::assertContains($check->cskill_id, $client->skillsWithCustomKeys->pluck('cskill_id'));
self::assertNotContains($check->_id, $client->skillsWithCustomKeys->pluck('cskill_id'));
}
public function testBelongsToManySyncModelWithCustomKeys(): void
{
$client = Client::create(['cclient_id' => (string) (new ObjectId()), 'years' => '5']);
$skill1 = Skill::create(['cskill_id' => (string) (new ObjectId()), 'name' => 'PHP']);
$client = Client::query()->find($client->_id);
$client->skillsWithCustomKeys()->sync($skill1);
$this->assertCount(1, $client->skillsWithCustomKeys);
self::assertIsString($skill1->cskill_id);
self::assertContains($skill1->cskill_id, $client->skillsWithCustomKeys->pluck('cskill_id'));
self::assertNotContains($skill1->_id, $client->skillsWithCustomKeys->pluck('cskill_id'));
$check = Skill::query()->find($skill1->_id);
self::assertIsString($check->_id);
self::assertContains($check->cskill_id, $client->skillsWithCustomKeys->pluck('cskill_id'));
self::assertNotContains($check->_id, $client->skillsWithCustomKeys->pluck('cskill_id'));
}
public function testBelongsToManySyncEloquentCollectionWithCustomKeys(): void
{
$client = Client::create(['cclient_id' => (string) (new ObjectId()), 'years' => '5']);
$skill1 = Skill::create(['cskill_id' => (string) (new ObjectId()), 'name' => 'PHP']);
$skill2 = Skill::create(['cskill_id' => (string) (new ObjectId()), 'name' => 'Laravel']);
$collection = new Collection([$skill1, $skill2]);
$client = Client::query()->find($client->_id);
$client->skillsWithCustomKeys()->sync($collection);
$this->assertCount(2, $client->skillsWithCustomKeys);
self::assertIsString($skill1->cskill_id);
self::assertContains($skill1->cskill_id, $client->skillsWithCustomKeys->pluck('cskill_id'));
self::assertNotContains($skill1->_id, $client->skillsWithCustomKeys->pluck('cskill_id'));
self::assertIsString($skill2->cskill_id);
self::assertContains($skill2->cskill_id, $client->skillsWithCustomKeys->pluck('cskill_id'));
self::assertNotContains($skill2->_id, $client->skillsWithCustomKeys->pluck('cskill_id'));
$check = Skill::query()->find($skill1->_id);
self::assertIsString($check->cskill_id);
self::assertContains($check->cskill_id, $client->skillsWithCustomKeys->pluck('cskill_id'));
self::assertNotContains($check->_id, $client->skillsWithCustomKeys->pluck('cskill_id'));
$check = Skill::query()->find($skill2->_id);
self::assertIsString($check->cskill_id);
self::assertContains($check->cskill_id, $client->skillsWithCustomKeys->pluck('cskill_id'));
self::assertNotContains($check->_id, $client->skillsWithCustomKeys->pluck('cskill_id'));
}
public function testBelongsToManyAttachWithCustomKeys(): void
{
$client = Client::create(['cclient_id' => (string) (new ObjectId()), 'years' => '5']);
$skill1 = Skill::create(['cskill_id' => (string) (new ObjectId()), 'name' => 'PHP']);
$skill2 = Skill::create(['cskill_id' => (string) (new ObjectId()), 'name' => 'Laravel']);
$client = Client::query()->find($client->_id);
$client->skillsWithCustomKeys()->attach([$skill1->cskill_id, $skill2->cskill_id]);
$this->assertCount(2, $client->skillsWithCustomKeys);
self::assertIsString($skill1->cskill_id);
self::assertContains($skill1->cskill_id, $client->skillsWithCustomKeys->pluck('cskill_id'));
self::assertNotContains($skill1->_id, $client->skillsWithCustomKeys->pluck('cskill_id'));
self::assertIsString($skill2->cskill_id);
self::assertContains($skill2->cskill_id, $client->skillsWithCustomKeys->pluck('cskill_id'));
self::assertNotContains($skill2->_id, $client->skillsWithCustomKeys->pluck('cskill_id'));
$check = Skill::query()->find($skill1->_id);
self::assertIsString($check->cskill_id);
self::assertContains($check->cskill_id, $client->skillsWithCustomKeys->pluck('cskill_id'));
self::assertNotContains($check->_id, $client->skillsWithCustomKeys->pluck('cskill_id'));
$check = Skill::query()->find($skill2->_id);
self::assertIsString($check->cskill_id);
self::assertContains($check->cskill_id, $client->skillsWithCustomKeys->pluck('cskill_id'));
self::assertNotContains($check->_id, $client->skillsWithCustomKeys->pluck('cskill_id'));
}
public function testBelongsToManyAttachModelWithCustomKeys(): void
{
$client = Client::create(['cclient_id' => (string) (new ObjectId()), 'years' => '5']);
$skill1 = Skill::create(['cskill_id' => (string) (new ObjectId()), 'name' => 'PHP']);
$client = Client::query()->find($client->_id);
$client->skillsWithCustomKeys()->attach($skill1);
$this->assertCount(1, $client->skillsWithCustomKeys);
self::assertIsString($skill1->cskill_id);
self::assertContains($skill1->cskill_id, $client->skillsWithCustomKeys->pluck('cskill_id'));
self::assertNotContains($skill1->_id, $client->skillsWithCustomKeys->pluck('cskill_id'));
$check = Skill::query()->find($skill1->_id);
self::assertIsString($check->_id);
self::assertContains($check->cskill_id, $client->skillsWithCustomKeys->pluck('cskill_id'));
self::assertNotContains($check->_id, $client->skillsWithCustomKeys->pluck('cskill_id'));
}
public function testBelongsToManyAttachEloquentCollectionWithCustomKeys(): void
{
$client = Client::create(['cclient_id' => (string) (new ObjectId()), 'years' => '5']);
$skill1 = Skill::create(['cskill_id' => (string) (new ObjectId()), 'name' => 'PHP']);
$skill2 = Skill::create(['cskill_id' => (string) (new ObjectId()), 'name' => 'Laravel']);
$collection = new Collection([$skill1, $skill2]);
$client = Client::query()->find($client->_id);
$client->skillsWithCustomKeys()->attach($collection);
$this->assertCount(2, $client->skillsWithCustomKeys);
self::assertIsString($skill1->cskill_id);
self::assertContains($skill1->cskill_id, $client->skillsWithCustomKeys->pluck('cskill_id'));
self::assertNotContains($skill1->_id, $client->skillsWithCustomKeys->pluck('cskill_id'));
self::assertIsString($skill2->cskill_id);
self::assertContains($skill2->cskill_id, $client->skillsWithCustomKeys->pluck('cskill_id'));
self::assertNotContains($skill2->_id, $client->skillsWithCustomKeys->pluck('cskill_id'));
$check = Skill::query()->find($skill1->_id);
self::assertIsString($check->cskill_id);
self::assertContains($check->cskill_id, $client->skillsWithCustomKeys->pluck('cskill_id'));
self::assertNotContains($check->_id, $client->skillsWithCustomKeys->pluck('cskill_id'));
$check = Skill::query()->find($skill2->_id);
self::assertIsString($check->cskill_id);
self::assertContains($check->cskill_id, $client->skillsWithCustomKeys->pluck('cskill_id'));
self::assertNotContains($check->_id, $client->skillsWithCustomKeys->pluck('cskill_id'));
}
public function testBelongsToManyDetachWithCustomKeys(): void
{
$client = Client::create(['cclient_id' => (string) (new ObjectId()), 'years' => '5']);
$skill1 = Skill::create(['cskill_id' => (string) (new ObjectId()), 'name' => 'PHP']);
$skill2 = Skill::create(['cskill_id' => (string) (new ObjectId()), 'name' => 'Laravel']);
$client = Client::query()->find($client->_id);
$client->skillsWithCustomKeys()->sync([$skill1->cskill_id, $skill2->cskill_id]);
$this->assertCount(2, $client->skillsWithCustomKeys);
$client->skillsWithCustomKeys()->detach($skill1->cskill_id);
$client->load('skillsWithCustomKeys'); // Reload the relationship based on the latest pivot column's data
$this->assertCount(1, $client->skillsWithCustomKeys);
self::assertIsString($skill1->cskill_id);
self::assertNotContains($skill1->cskill_id, $client->skillsWithCustomKeys->pluck('cskill_id'));
self::assertNotContains($skill1->_id, $client->skillsWithCustomKeys->pluck('cskill_id'));
self::assertIsString($skill2->cskill_id);
self::assertContains($skill2->cskill_id, $client->skillsWithCustomKeys->pluck('cskill_id'));
self::assertNotContains($skill2->_id, $client->skillsWithCustomKeys->pluck('cskill_id'));
$check = Skill::query()->find($skill1->_id);
self::assertIsString($check->cskill_id);
self::assertNotContains($check->cskill_id, $client->skillsWithCustomKeys->pluck('cskill_id'));
self::assertNotContains($check->_id, $client->skillsWithCustomKeys->pluck('cskill_id'));
$check = Skill::query()->find($skill2->_id);
self::assertIsString($check->cskill_id);
self::assertContains($check->cskill_id, $client->skillsWithCustomKeys->pluck('cskill_id'));
self::assertNotContains($check->_id, $client->skillsWithCustomKeys->pluck('cskill_id'));
}
public function testBelongsToManyDetachModelWithCustomKeys(): void
{
$client = Client::create(['cclient_id' => (string) (new ObjectId()), 'years' => '5']);
$skill1 = Skill::create(['cskill_id' => (string) (new ObjectId()), 'name' => 'PHP']);
$skill2 = Skill::create(['cskill_id' => (string) (new ObjectId()), 'name' => 'Laravel']);
$client = Client::query()->find($client->_id);
$client->skillsWithCustomKeys()->sync([$skill1->cskill_id, $skill2->cskill_id]);
$this->assertCount(2, $client->skillsWithCustomKeys);
$client->skillsWithCustomKeys()->detach($skill1);
$client->load('skillsWithCustomKeys'); // Reload the relationship based on the latest pivot column's data
$this->assertCount(1, $client->skillsWithCustomKeys);
self::assertIsString($skill1->cskill_id);
self::assertNotContains($skill1->cskill_id, $client->skillsWithCustomKeys->pluck('cskill_id'));
self::assertNotContains($skill1->_id, $client->skillsWithCustomKeys->pluck('cskill_id'));
self::assertIsString($skill2->cskill_id);
self::assertContains($skill2->cskill_id, $client->skillsWithCustomKeys->pluck('cskill_id'));
self::assertNotContains($skill2->_id, $client->skillsWithCustomKeys->pluck('cskill_id'));
$check = Skill::query()->find($skill1->_id);
self::assertIsString($check->cskill_id);
self::assertNotContains($check->cskill_id, $client->skillsWithCustomKeys->pluck('cskill_id'));
self::assertNotContains($check->_id, $client->skillsWithCustomKeys->pluck('cskill_id'));
$check = Skill::query()->find($skill2->_id);
self::assertIsString($check->cskill_id);
self::assertContains($check->cskill_id, $client->skillsWithCustomKeys->pluck('cskill_id'));
self::assertNotContains($check->_id, $client->skillsWithCustomKeys->pluck('cskill_id'));
}
public function testBelongsToManySyncAlreadyPresent(): void
{
$user = User::create(['name' => 'John Doe']);
$client1 = Client::create(['name' => 'Test 1'])->_id;
$client2 = Client::create(['name' => 'Test 2'])->_id;
$user->clients()->sync([$client1, $client2]);
$this->assertCount(2, $user->clients);
$user = User::where('name', '=', 'John Doe')->first();
$user->clients()->sync([$client1]);
$this->assertCount(1, $user->clients);
$user = User::where('name', '=', 'John Doe')->first()->toArray();
$this->assertCount(1, $user['client_ids']);
}
public function testBelongsToManyCustom(): void
{
$user = User::create(['name' => 'John Doe']);
$group = $user->groups()->create(['name' => 'Admins']);
// Refetch
$user = User::find($user->_id);
$group = Group::find($group->_id);
// Check for custom relation attributes
$this->assertArrayHasKey('users', $group->getAttributes());
$this->assertArrayHasKey('groups', $user->getAttributes());
// Assert they are attached
$this->assertContains($group->_id, $user->groups->pluck('_id')->toArray());
$this->assertContains($user->_id, $group->users->pluck('_id')->toArray());
$this->assertEquals($group->_id, $user->groups()->first()->_id);
$this->assertEquals($user->_id, $group->users()->first()->_id);
}
public function testMorph(): void
{
$user = User::create(['name' => 'John Doe']);
$client = Client::create(['name' => 'Jane Doe']);
$photo = Photo::create(['url' => 'http://graph.facebook.com/john.doe/picture']);
$photo = $user->photos()->save($photo);
$this->assertEquals(1, $user->photos->count());
$this->assertEquals($photo->id, $user->photos->first()->id);
$user = User::find($user->_id);
$this->assertEquals(1, $user->photos->count());
$this->assertEquals($photo->id, $user->photos->first()->id);
$photo = Photo::create(['url' => 'http://graph.facebook.com/jane.doe/picture']);
$client->photo()->save($photo);
$this->assertNotNull($client->photo);
$this->assertEquals($photo->id, $client->photo->id);
$client = Client::find($client->_id);
$this->assertNotNull($client->photo);
$this->assertEquals($photo->id, $client->photo->id);
$photo = Photo::first();
$this->assertEquals($photo->hasImage->name, $user->name);
$user = User::with('photos')->find($user->_id);
$relations = $user->getRelations();
$this->assertArrayHasKey('photos', $relations);
$this->assertEquals(1, $relations['photos']->count());
$photos = Photo::with('hasImage')->get();
$relations = $photos[0]->getRelations();
$this->assertArrayHasKey('hasImage', $relations);
$this->assertInstanceOf(User::class, $photos[0]->hasImage);
$relations = $photos[1]->getRelations();
$this->assertArrayHasKey('hasImage', $relations);
$this->assertInstanceOf(Client::class, $photos[1]->hasImage);
// inverse
$photo = Photo::query()->create(['url' => 'https://graph.facebook.com/hans.thomas/picture']);
$client = Client::create(['name' => 'Hans Thomas']);
$photo->hasImage()->associate($client)->save();
$this->assertCount(1, $photo->hasImage()->get());
$this->assertInstanceOf(Client::class, $photo->hasImage);
$this->assertEquals($client->_id, $photo->hasImage->_id);
// inverse with custom ownerKey
$photo = Photo::query()->create(['url' => 'https://graph.facebook.com/young.gerald/picture']);
$client = Client::create(['cclient_id' => (string) (new ObjectId()), 'name' => 'Young Gerald']);
$photo->hasImageWithCustomOwnerKey()->associate($client)->save();
$this->assertCount(1, $photo->hasImageWithCustomOwnerKey()->get());
$this->assertInstanceOf(Client::class, $photo->hasImageWithCustomOwnerKey);
$this->assertEquals($client->cclient_id, $photo->has_image_with_custom_owner_key_id);
$this->assertEquals($client->_id, $photo->hasImageWithCustomOwnerKey->_id);
}
public function testMorphToMany(): void
{
$user = User::query()->create(['name' => 'Young Gerald']);
$client = Client::query()->create(['name' => 'Hans Thomas']);
$label = Label::query()->create(['name' => 'Had the world in my palms, I gave it to you']);
$user->labels()->attach($label);
$client->labels()->attach($label);
$this->assertEquals(1, $user->labels->count());
$this->assertContains($label->_id, $user->labels->pluck('_id'));
$this->assertEquals(1, $client->labels->count());
$this->assertContains($label->_id, $user->labels->pluck('_id'));
}
public function testMorphToManyAttachEloquentCollection(): void
{
$client = Client::query()->create(['name' => 'Young Gerald']);
$label1 = Label::query()->create(['name' => "Make no mistake, it's the life that I was chosen for"]);
$label2 = Label::query()->create(['name' => 'All I prayed for was an open door']);
$client->labels()->attach(new Collection([$label1, $label2]));
$this->assertEquals(2, $client->labels->count());
$this->assertContains($label1->_id, $client->labels->pluck('_id'));
$this->assertContains($label2->_id, $client->labels->pluck('_id'));
}
public function testMorphToManyAttachMultipleIds(): void
{
$client = Client::query()->create(['name' => 'Young Gerald']);
$label1 = Label::query()->create(['name' => 'stayed solid i never fled']);
$label2 = Label::query()->create(['name' => "I've got a lane and I'm in gear"]);
$client->labels()->attach([$label1->_id, $label2->_id]);
$this->assertEquals(2, $client->labels->count());
$this->assertContains($label1->_id, $client->labels->pluck('_id'));
$this->assertContains($label2->_id, $client->labels->pluck('_id'));
}
public function testMorphToManyDetaching(): void
{
$client = Client::query()->create(['name' => 'Marshall Mathers']);
$label1 = Label::query()->create(['name' => "I'll never love again"]);
$label2 = Label::query()->create(['name' => 'The way I loved you']);
$client->labels()->attach([$label1->_id, $label2->_id]);
$this->assertEquals(2, $client->labels->count());
$client->labels()->detach($label1);
$check = $client->withoutRelations();
$this->assertEquals(1, $check->labels->count());
$this->assertContains($label2->_id, $client->labels->pluck('_id'));
}
public function testMorphToManyDetachingMultipleIds(): void
{
$client = Client::query()->create(['name' => 'Young Gerald']);
$label1 = Label::query()->create(['name' => "I make what I wanna make, but I won't make everyone happy"]);
$label2 = Label::query()->create(['name' => "My skin's thick, but I'm not bulletproof"]);
$label3 = Label::query()->create(['name' => 'All I can be is myself, go, and tell the truth']);
$client->labels()->attach([$label1->_id, $label2->_id, $label3->_id]);
$this->assertEquals(3, $client->labels->count());
$client->labels()->detach([$label1->_id, $label2->_id]);
$client->refresh();
$this->assertEquals(1, $client->labels->count());
$this->assertContains($label3->_id, $client->labels->pluck('_id'));
}
public function testMorphToManySyncing(): void
{
$user = User::query()->create(['name' => 'Young Gerald']);
$client = Client::query()->create(['name' => 'Hans Thomas']);
$label = Label::query()->create(['name' => "Lesson learned, we weren't the perfect match"]);
$label2 = Label::query()->create(['name' => 'Future ref, not keeping personal and work attached']);
$user->labels()->sync($label);
$client->labels()->sync($label);
$client->labels()->sync($label2, false);
$this->assertEquals(1, $user->labels->count());
$this->assertContains($label->_id, $user->labels->pluck('_id'));
$this->assertNotContains($label2->_id, $user->labels->pluck('_id'));
$this->assertEquals(2, $client->labels->count());
$this->assertContains($label->_id, $client->labels->pluck('_id'));
$this->assertContains($label2->_id, $client->labels->pluck('_id'));
}
public function testMorphToManySyncingEloquentCollection(): void
{
$client = Client::query()->create(['name' => 'Young Gerald']);
$label = Label::query()->create(['name' => 'Why the ones who love me most, the people I push away?']);
$label2 = Label::query()->create(['name' => 'Look in a mirror, this is you']);
$client->labels()->sync(new Collection([$label, $label2]));
$this->assertEquals(2, $client->labels->count());
$this->assertContains($label->_id, $client->labels->pluck('_id'));
$this->assertContains($label2->_id, $client->labels->pluck('_id'));
}
public function testMorphToManySyncingMultipleIds(): void
{
$client = Client::query()->create(['name' => 'Young Gerald']);
$label = Label::query()->create(['name' => 'They all talk about karma, how it slowly comes']);
$label2 = Label::query()->create(['name' => "But life is short, enjoy it while you're young"]);
$client->labels()->sync([$label->_id, $label2->_id]);
$this->assertEquals(2, $client->labels->count());
$this->assertContains($label->_id, $client->labels->pluck('_id'));
$this->assertContains($label2->_id, $client->labels->pluck('_id'));
}
public function testMorphToManySyncingWithCustomKeys(): void
{
$client = Client::query()->create(['cclient_id' => (string) (new ObjectId()), 'name' => 'Young Gerald']);
$label = Label::query()->create(['clabel_id' => (string) (new ObjectId()), 'name' => "Why do people do things that be bad for 'em?"]);
$label2 = Label::query()->create(['clabel_id' => (string) (new ObjectId()), 'name' => "Say we done with these things, then we ask for 'em"]);
$client->labelsWithCustomKeys()->sync([$label->clabel_id, $label2->clabel_id]);
$this->assertEquals(2, $client->labelsWithCustomKeys->count());
$this->assertContains($label->_id, $client->labelsWithCustomKeys->pluck('_id'));
$this->assertContains($label2->_id, $client->labelsWithCustomKeys->pluck('_id'));
$client->labelsWithCustomKeys()->sync($label);
$client->load('labelsWithCustomKeys');
$this->assertEquals(1, $client->labelsWithCustomKeys->count());
$this->assertContains($label->_id, $client->labelsWithCustomKeys->pluck('_id'));
$this->assertNotContains($label2->_id, $client->labelsWithCustomKeys->pluck('_id'));
}
public function testMorphToManyLoadAndRefreshing(): void
{
$user = User::query()->create(['name' => 'The Pretty Reckless']);
$client = Client::query()->create(['name' => 'Young Gerald']);
$label = Label::query()->create(['name' => 'The greatest gift is knowledge itself']);
$label2 = Label::query()->create(['name' => "I made it here all by my lonely, no askin' for help"]);
$client->labels()->sync([$label->_id, $label2->_id]);
$client->users()->sync($user);
$this->assertEquals(2, $client->labels->count());
$client->load('labels');
$this->assertEquals(2, $client->labels->count());
$client->refresh();
$this->assertEquals(2, $client->labels->count());
$check = Client::query()->find($client->_id);
$this->assertEquals(2, $check->labels->count());
$check = Client::query()->with('labels')->find($client->_id);
$this->assertEquals(2, $check->labels->count());
}
public function testMorphToManyHasQuery(): void
{
$client = Client::query()->create(['name' => 'Ashley']);
$client2 = Client::query()->create(['name' => 'Halsey']);
$client3 = Client::query()->create(['name' => 'John Doe 2']);
$label = Label::query()->create(['name' => "I've been digging myself down deeper"]);
$label2 = Label::query()->create(['name' => "I won't stop 'til I get where you are"]);
$client->labels()->sync([$label->_id, $label2->_id]);
$client2->labels()->sync($label);
$this->assertEquals(2, $client->labels->count());
$this->assertEquals(1, $client2->labels->count());
$check = Client::query()->has('labels')->get();
$this->assertCount(2, $check);
$check = Client::query()->has('labels', '>', 1)->get();
$this->assertCount(1, $check);
$this->assertContains($client->_id, $check->pluck('_id'));
$check = Client::query()->has('labels', '<', 2)->get();
$this->assertCount(2, $check);
$this->assertContains($client2->_id, $check->pluck('_id'));
$this->assertContains($client3->_id, $check->pluck('_id'));
}
public function testMorphedByMany(): void
{
$user = User::query()->create(['name' => 'Young Gerald']);
$client = Client::query()->create(['name' => 'Hans Thomas']);
$extra = Client::query()->create(['name' => 'John Doe']);
$label = Label::query()->create(['name' => 'Never finished, tryna search for more']);
$label->users()->attach($user);
$label->clients()->attach($client);
$this->assertEquals(1, $label->users->count());
$this->assertContains($user->_id, $label->users->pluck('_id'));
$this->assertEquals(1, $label->clients->count());
$this->assertContains($client->_id, $label->clients->pluck('_id'));
}
public function testMorphedByManyAttachEloquentCollection(): void
{
$client1 = Client::query()->create(['name' => 'Young Gerald']);
$client2 = Client::query()->create(['name' => 'Hans Thomas']);
$extra = Client::query()->create(['name' => 'John Doe']);
$label = Label::query()->create(['name' => 'They want me to architect Rome, in a day']);
$label->clients()->attach(new Collection([$client1, $client2]));
$this->assertEquals(2, $label->clients->count());
$this->assertContains($client1->_id, $label->clients->pluck('_id'));
$this->assertContains($client2->_id, $label->clients->pluck('_id'));
$client1->refresh();
$this->assertEquals(1, $client1->labels->count());
}
public function testMorphedByManyAttachMultipleIds(): void
{
$client1 = Client::query()->create(['name' => 'Austin Richard Post']);
$client2 = Client::query()->create(['name' => 'Hans Thomas']);
$extra = Client::query()->create(['name' => 'John Doe']);
$label = Label::query()->create(['name' => 'Always in the game and never played by the rules']);
$label->clients()->attach([$client1->_id, $client2->_id]);
$this->assertEquals(2, $label->clients->count());
$this->assertContains($client1->_id, $label->clients->pluck('_id'));
$this->assertContains($client2->_id, $label->clients->pluck('_id'));
$client1->refresh();
$this->assertEquals(1, $client1->labels->count());
}
public function testMorphedByManyDetaching(): void
{
$client1 = Client::query()->create(['name' => 'Austin Richard Post']);
$client2 = Client::query()->create(['name' => 'Hans Thomas']);
$extra = Client::query()->create(['name' => 'John Doe']);
$label = Label::query()->create(['name' => 'Seasons change and our love went cold']);
$label->clients()->attach([$client1->_id, $client2->_id]);
$this->assertEquals(2, $label->clients->count());
$label->clients()->detach($client1->_id);
$check = $label->withoutRelations();
$this->assertEquals(1, $check->clients->count());
$this->assertContains($client2->_id, $check->clients->pluck('_id'));
}
public function testMorphedByManyDetachingMultipleIds(): void
{
$client1 = Client::query()->create(['name' => 'Austin Richard Post']);
$client2 = Client::query()->create(['name' => 'Hans Thomas']);
$client3 = Client::query()->create(['name' => 'John Doe']);
$label = Label::query()->create(['name' => "Run away, but we're running in circles"]);
$label->clients()->attach([$client1->_id, $client2->_id, $client3->_id]);
$this->assertEquals(3, $label->clients->count());
$label->clients()->detach([$client1->_id, $client2->_id]);
$label->load('clients');
$this->assertEquals(1, $label->clients->count());
$this->assertContains($client3->_id, $label->clients->pluck('_id'));
}
public function testMorphedByManySyncing(): void
{
$client1 = Client::query()->create(['name' => 'Austin Richard Post']);
$client2 = Client::query()->create(['name' => 'Hans Thomas']);
$client3 = Client::query()->create(['name' => 'John Doe']);
$label = Label::query()->create(['name' => "Was scared of losin' somethin' that we never found"]);
$label->clients()->sync($client1);
$label->clients()->sync($client2, false);
$label->clients()->sync($client3, false);
$this->assertEquals(3, $label->clients->count());
$this->assertContains($client1->_id, $label->clients->pluck('_id'));
$this->assertContains($client2->_id, $label->clients->pluck('_id'));
$this->assertContains($client3->_id, $label->clients->pluck('_id'));
}
public function testMorphedByManySyncingEloquentCollection(): void
{
$client1 = Client::query()->create(['name' => 'Austin Richard Post']);
$client2 = Client::query()->create(['name' => 'Hans Thomas']);
$extra = Client::query()->create(['name' => 'John Doe']);
$label = Label::query()->create(['name' => "I'm goin' hard 'til I'm gone. Can you feel it?"]);
$label->clients()->sync(new Collection([$client1, $client2]));