-
Notifications
You must be signed in to change notification settings - Fork 11.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[11.x] Fixes through() relationship (#52318)
* Adds a failing test * Allows MorphOneOrMany in through() method
- Loading branch information
Showing
2 changed files
with
140 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,122 @@ | ||
<?php | ||
|
||
namespace Illuminate\Tests\Integration\Database\EloquentThroughTest; | ||
|
||
use Illuminate\Database\Eloquent\Model; | ||
use Illuminate\Database\Schema\Blueprint; | ||
use Illuminate\Support\Facades\Schema; | ||
use Illuminate\Tests\Integration\Database\DatabaseTestCase; | ||
|
||
class EloquentThroughTest extends DatabaseTestCase | ||
{ | ||
protected function afterRefreshingDatabase() | ||
{ | ||
Schema::create('posts', function (Blueprint $table) { | ||
$table->increments('id'); | ||
$table->boolean('public'); | ||
}); | ||
|
||
Schema::create('other_commentables', function (Blueprint $table) { | ||
$table->increments('id'); | ||
}); | ||
|
||
Schema::create('comments', function (Blueprint $table) { | ||
$table->increments('id'); | ||
$table->string('commentable_type'); | ||
$table->integer('commentable_id'); | ||
}); | ||
|
||
Schema::create('likes', function (Blueprint $table) { | ||
$table->increments('id'); | ||
$table->unsignedInteger('comment_id'); | ||
}); | ||
|
||
|
||
$post = tap(new Post(['public' => true]))->save(); | ||
$comment = tap((new Comment)->commentable()->associate($post))->save(); | ||
(new Like())->comment()->associate($comment)->save(); | ||
(new Like())->comment()->associate($comment)->save(); | ||
|
||
$otherCommentable = tap(new OtherCommentable())->save(); | ||
$comment2 = tap((new Comment)->commentable()->associate($otherCommentable))->save(); | ||
(new Like())->comment()->associate($comment2)->save(); | ||
} | ||
|
||
public function test() | ||
{ | ||
/** @var Post $post */ | ||
$post = Post::first(); | ||
$this->assertEquals(2, $post->commentLikes()->count()); | ||
} | ||
} | ||
|
||
class Comment extends Model | ||
{ | ||
public $timestamps = false; | ||
|
||
public function commentable() | ||
{ | ||
return $this->morphTo(); | ||
} | ||
|
||
public function likes() | ||
{ | ||
return $this->hasMany(Like::class); | ||
} | ||
} | ||
|
||
class Post extends Model | ||
{ | ||
public $timestamps = false; | ||
|
||
protected $guarded = []; | ||
|
||
protected $withCount = ['comments']; | ||
|
||
public function comments() | ||
{ | ||
return $this->morphMany(Comment::class, 'commentable'); | ||
} | ||
|
||
public function commentLikes() | ||
{ | ||
return $this->through($this->comments())->has('likes'); | ||
} | ||
|
||
public function texts() | ||
{ | ||
return $this->hasMany(Text::class); | ||
} | ||
} | ||
|
||
class OtherCommentable extends Model | ||
{ | ||
public $timestamps = false; | ||
|
||
public function comments() | ||
{ | ||
return $this->morphMany(Comment::class, 'commentable'); | ||
} | ||
} | ||
|
||
class Text extends Model | ||
{ | ||
public $timestamps = false; | ||
|
||
protected $guarded = []; | ||
|
||
public function post() | ||
{ | ||
return $this->belongsTo(Post::class); | ||
} | ||
} | ||
|
||
class Like extends Model | ||
{ | ||
public $timestamps = false; | ||
|
||
public function comment() | ||
{ | ||
return $this->belongsTo(Comment::class); | ||
} | ||
} |