123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- <?php
- namespace Illuminate\Tests\Integration\Database\EloquentMorphOneIsTest;
- use Illuminate\Database\Eloquent\Model;
- use Illuminate\Database\Schema\Blueprint;
- use Illuminate\Support\Facades\Schema;
- use Illuminate\Tests\Integration\Database\DatabaseTestCase;
- class EloquentMorphOneIsTest extends DatabaseTestCase
- {
- protected function defineDatabaseMigrationsAfterDatabaseRefreshed()
- {
- Schema::create('posts', function (Blueprint $table) {
- $table->increments('id');
- $table->timestamps();
- });
- Schema::create('attachments', function (Blueprint $table) {
- $table->increments('id');
- $table->string('attachable_type')->nullable();
- $table->integer('attachable_id')->nullable();
- });
- $post = Post::create();
- $post->attachment()->create();
- }
- public function testChildIsNotNull()
- {
- $parent = Post::first();
- $child = null;
- $this->assertFalse($parent->attachment()->is($child));
- $this->assertTrue($parent->attachment()->isNot($child));
- }
- public function testChildIsModel()
- {
- $parent = Post::first();
- $child = Attachment::first();
- $this->assertTrue($parent->attachment()->is($child));
- $this->assertFalse($parent->attachment()->isNot($child));
- }
- public function testChildIsNotAnotherModel()
- {
- $parent = Post::first();
- $child = new Attachment;
- $child->id = 2;
- $this->assertFalse($parent->attachment()->is($child));
- $this->assertTrue($parent->attachment()->isNot($child));
- }
- public function testNullChildIsNotModel()
- {
- $parent = Post::first();
- $child = Attachment::first();
- $child->attachable_type = null;
- $child->attachable_id = null;
- $this->assertFalse($parent->attachment()->is($child));
- $this->assertTrue($parent->attachment()->isNot($child));
- }
- public function testChildIsNotModelWithAnotherTable()
- {
- $parent = Post::first();
- $child = Attachment::first();
- $child->setTable('foo');
- $this->assertFalse($parent->attachment()->is($child));
- $this->assertTrue($parent->attachment()->isNot($child));
- }
- public function testChildIsNotModelWithAnotherConnection()
- {
- $parent = Post::first();
- $child = Attachment::first();
- $child->setConnection('foo');
- $this->assertFalse($parent->attachment()->is($child));
- $this->assertTrue($parent->attachment()->isNot($child));
- }
- }
- class Attachment extends Model
- {
- public $timestamps = false;
- }
- class Post extends Model
- {
- public function attachment()
- {
- return $this->morphOne(Attachment::class, 'attachable');
- }
- }
|