1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- <?php
- namespace Illuminate\Tests\Integration\Database\EloquentHasOneIsTest;
- use Illuminate\Database\Eloquent\Model;
- use Illuminate\Database\Schema\Blueprint;
- use Illuminate\Support\Facades\Schema;
- use Illuminate\Tests\Integration\Database\DatabaseTestCase;
- class EloquentHasOneIsTest 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->unsignedInteger('post_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->post_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->hasOne(Attachment::class);
- }
- }
|