|
11 | 11 | use MongoDB\Laravel\Tests\Eloquent\Models\EloquentWithAggregateModel3;
|
12 | 12 | use MongoDB\Laravel\Tests\Eloquent\Models\EloquentWithAggregateModel4;
|
13 | 13 | use MongoDB\Laravel\Tests\TestCase;
|
| 14 | +use PHPUnit\Framework\Attributes\TestWith; |
14 | 15 |
|
15 | 16 | use function count;
|
16 | 17 | use function ksort;
|
@@ -55,6 +56,45 @@ public function testWithAggregate()
|
55 | 56 | ], $results->get());
|
56 | 57 | }
|
57 | 58 |
|
| 59 | + public function testWithAggregateAlias() |
| 60 | + { |
| 61 | + EloquentWithAggregateModel1::create(['id' => 1]); |
| 62 | + $one = EloquentWithAggregateModel1::create(['id' => 2]); |
| 63 | + $one->twos()->create(['value' => 4]); |
| 64 | + $one->twos()->create(['value' => 6]); |
| 65 | + |
| 66 | + $results = EloquentWithAggregateModel1::withCount('twos as result')->where('id', 2); |
| 67 | + self::assertSameResults([ |
| 68 | + ['id' => 2, 'result' => 2], |
| 69 | + ], $results->get()); |
| 70 | + |
| 71 | + $results = EloquentWithAggregateModel1::withMax('twos as result', 'value')->where('id', 2); |
| 72 | + self::assertSameResults([ |
| 73 | + ['id' => 2, 'result' => 6], |
| 74 | + ], $results->get()); |
| 75 | + |
| 76 | + $results = EloquentWithAggregateModel1::withMin('twos as result', 'value')->where('id', 2); |
| 77 | + self::assertSameResults([ |
| 78 | + ['id' => 2, 'result' => 4], |
| 79 | + ], $results->get()); |
| 80 | + |
| 81 | + $results = EloquentWithAggregateModel1::withAvg('twos as result', 'value')->where('id', 2); |
| 82 | + self::assertSameResults([ |
| 83 | + ['id' => 2, 'result' => 5.0], |
| 84 | + ], $results->get()); |
| 85 | + } |
| 86 | + |
| 87 | + #[TestWith(['withCount'])] |
| 88 | + #[TestWith(['withMax'])] |
| 89 | + #[TestWith(['withMin'])] |
| 90 | + #[TestWith(['withAvg'])] |
| 91 | + public function testWithAggregateInvalidAlias(string $method) |
| 92 | + { |
| 93 | + self::expectException(InvalidArgumentException::class); |
| 94 | + self::expectExceptionMessage('Expected "relation as alias" or "relation", got "twos foo result"'); |
| 95 | + EloquentWithAggregateModel1::{$method}('twos foo result', 'value')->get(); |
| 96 | + } |
| 97 | + |
58 | 98 | public function testWithAggregateEmbed()
|
59 | 99 | {
|
60 | 100 | EloquentWithAggregateModel1::create(['id' => 1]);
|
|
0 commit comments