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
|
<?php
namespace Illuminate\Tests\Integration\Database\EloquentWithCountTest;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
use Illuminate\Tests\Integration\Database\DatabaseTestCase;
class EloquentWithCountTest extends DatabaseTestCase
{
protected function afterRefreshingDatabase()
{
Schema::create('one', function (Blueprint $table) {
$table->increments('id');
});
Schema::create('two', function (Blueprint $table) {
$table->increments('id');
$table->integer('one_id');
});
Schema::create('three', function (Blueprint $table) {
$table->increments('id');
$table->integer('two_id');
});
Schema::create('four', function (Blueprint $table) {
$table->increments('id');
$table->integer('one_id');
});
}
public function testItBasic()
{
$one = Model1::create();
$two = $one->twos()->Create();
$two->threes()->Create();
$results = Model1::withCount([
'twos' => function ($query) {
$query->where('id', '>=', 1);
},
]);
$this->assertEquals([
['id' => 1, 'twos_count' => 1],
], $results->get()->toArray());
}
public function testGlobalScopes()
{
$one = Model1::create();
$one->fours()->create();
$result = Model1::withCount('fours')->first();
$this->assertEquals(0, $result->fours_count);
$result = Model1::withCount('allFours')->first();
$this->assertEquals(1, $result->all_fours_count);
}
public function testSortingScopes()
{
$one = Model1::create();
$one->twos()->create();
$query = Model1::withCount('twos')->getQuery();
$this->assertNull($query->orders);
$this->assertSame([], $query->getRawBindings()['order']);
}
}
class Model1 extends Model
{
public $table = 'one';
public $timestamps = false;
protected $guarded = [];
public function twos()
{
return $this->hasMany(Model2::class, 'one_id');
}
public function fours()
{
return $this->hasMany(Model4::class, 'one_id');
}
public function allFours()
{
return $this->fours()->withoutGlobalScopes();
}
}
class Model2 extends Model
{
public $table = 'two';
public $timestamps = false;
protected $guarded = [];
protected $withCount = ['threes'];
protected static function boot()
{
parent::boot();
static::addGlobalScope('app', function ($builder) {
$builder->latest();
});
}
public function threes()
{
return $this->hasMany(Model3::class, 'two_id');
}
}
class Model3 extends Model
{
public $table = 'three';
public $timestamps = false;
protected $guarded = [];
protected static function boot()
{
parent::boot();
static::addGlobalScope('app', function ($builder) {
$builder->where('id', '>', 0);
});
}
}
class Model4 extends Model
{
public $table = 'four';
public $timestamps = false;
protected $guarded = [];
protected static function boot()
{
parent::boot();
static::addGlobalScope('app', function ($builder) {
$builder->where('id', '>', 1);
});
}
}
|