123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345 |
- <?php
- namespace Illuminate\Tests\Database;
- use Illuminate\Database\Eloquent\Builder;
- use Illuminate\Database\Eloquent\Collection;
- use Illuminate\Database\Eloquent\Model;
- use Illuminate\Database\Eloquent\Relations\HasOne;
- use Illuminate\Database\Query\Builder as BaseBuilder;
- use Illuminate\Database\Query\Expression;
- use Mockery as m;
- use PHPUnit\Framework\TestCase;
- class DatabaseEloquentHasOneTest extends TestCase
- {
- protected $builder;
- protected $related;
- protected $parent;
- protected function tearDown(): void
- {
- m::close();
- }
- public function testHasOneWithDefault()
- {
- $relation = $this->getRelation()->withDefault();
- $this->builder->shouldReceive('first')->once()->andReturnNull();
- $newModel = new EloquentHasOneModelStub;
- $this->related->shouldReceive('newInstance')->once()->andReturn($newModel);
- $this->assertSame($newModel, $relation->getResults());
- $this->assertSame(1, $newModel->getAttribute('foreign_key'));
- }
- public function testHasOneWithDynamicDefault()
- {
- $relation = $this->getRelation()->withDefault(function ($newModel) {
- $newModel->username = 'taylor';
- });
- $this->builder->shouldReceive('first')->once()->andReturnNull();
- $newModel = new EloquentHasOneModelStub;
- $this->related->shouldReceive('newInstance')->once()->andReturn($newModel);
- $this->assertSame($newModel, $relation->getResults());
- $this->assertSame('taylor', $newModel->username);
- $this->assertSame(1, $newModel->getAttribute('foreign_key'));
- }
- public function testHasOneWithDynamicDefaultUseParentModel()
- {
- $relation = $this->getRelation()->withDefault(function ($newModel, $parentModel) {
- $newModel->username = $parentModel->username;
- });
- $this->builder->shouldReceive('first')->once()->andReturnNull();
- $newModel = new EloquentHasOneModelStub;
- $this->related->shouldReceive('newInstance')->once()->andReturn($newModel);
- $this->assertSame($newModel, $relation->getResults());
- $this->assertSame('taylor', $newModel->username);
- $this->assertSame(1, $newModel->getAttribute('foreign_key'));
- }
- public function testHasOneWithArrayDefault()
- {
- $attributes = ['username' => 'taylor'];
- $relation = $this->getRelation()->withDefault($attributes);
- $this->builder->shouldReceive('first')->once()->andReturnNull();
- $newModel = new EloquentHasOneModelStub;
- $this->related->shouldReceive('newInstance')->once()->andReturn($newModel);
- $this->assertSame($newModel, $relation->getResults());
- $this->assertSame('taylor', $newModel->username);
- $this->assertSame(1, $newModel->getAttribute('foreign_key'));
- }
- public function testMakeMethodDoesNotSaveNewModel()
- {
- $relation = $this->getRelation();
- $instance = $this->getMockBuilder(Model::class)->onlyMethods(['save', 'newInstance', 'setAttribute'])->getMock();
- $relation->getRelated()->shouldReceive('newInstance')->with(['name' => 'taylor'])->andReturn($instance);
- $instance->expects($this->once())->method('setAttribute')->with('foreign_key', 1);
- $instance->expects($this->never())->method('save');
- $this->assertEquals($instance, $relation->make(['name' => 'taylor']));
- }
- public function testSaveMethodSetsForeignKeyOnModel()
- {
- $relation = $this->getRelation();
- $mockModel = $this->getMockBuilder(Model::class)->onlyMethods(['save'])->getMock();
- $mockModel->expects($this->once())->method('save')->willReturn(true);
- $result = $relation->save($mockModel);
- $attributes = $result->getAttributes();
- $this->assertEquals(1, $attributes['foreign_key']);
- }
- public function testCreateMethodProperlyCreatesNewModel()
- {
- $relation = $this->getRelation();
- $created = $this->getMockBuilder(Model::class)->onlyMethods(['save', 'getKey', 'setAttribute'])->getMock();
- $created->expects($this->once())->method('save')->willReturn(true);
- $relation->getRelated()->shouldReceive('newInstance')->once()->with(['name' => 'taylor'])->andReturn($created);
- $created->expects($this->once())->method('setAttribute')->with('foreign_key', 1);
- $this->assertEquals($created, $relation->create(['name' => 'taylor']));
- }
- public function testForceCreateMethodProperlyCreatesNewModel()
- {
- $relation = $this->getRelation();
- $attributes = ['name' => 'taylor', $relation->getForeignKeyName() => $relation->getParentKey()];
- $created = m::mock(Model::class);
- $created->shouldReceive('getAttribute')->with($relation->getForeignKeyName())->andReturn($relation->getParentKey());
- $relation->getRelated()->shouldReceive('forceCreate')->once()->with($attributes)->andReturn($created);
- $this->assertEquals($created, $relation->forceCreate(['name' => 'taylor']));
- $this->assertEquals(1, $created->getAttribute('foreign_key'));
- }
- public function testRelationIsProperlyInitialized()
- {
- $relation = $this->getRelation();
- $model = m::mock(Model::class);
- $model->shouldReceive('setRelation')->once()->with('foo', null);
- $models = $relation->initRelation([$model], 'foo');
- $this->assertEquals([$model], $models);
- }
- public function testEagerConstraintsAreProperlyAdded()
- {
- $relation = $this->getRelation();
- $relation->getParent()->shouldReceive('getKeyName')->once()->andReturn('id');
- $relation->getParent()->shouldReceive('getKeyType')->once()->andReturn('int');
- $relation->getQuery()->shouldReceive('whereIntegerInRaw')->once()->with('table.foreign_key', [1, 2]);
- $model1 = new EloquentHasOneModelStub;
- $model1->id = 1;
- $model2 = new EloquentHasOneModelStub;
- $model2->id = 2;
- $relation->addEagerConstraints([$model1, $model2]);
- }
- public function testModelsAreProperlyMatchedToParents()
- {
- $relation = $this->getRelation();
- $result1 = new EloquentHasOneModelStub;
- $result1->foreign_key = 1;
- $result2 = new EloquentHasOneModelStub;
- $result2->foreign_key = 2;
- $result3 = new EloquentHasOneModelStub;
- $result3->foreign_key = new class
- {
- public function __toString()
- {
- return '4';
- }
- };
- $model1 = new EloquentHasOneModelStub;
- $model1->id = 1;
- $model2 = new EloquentHasOneModelStub;
- $model2->id = 2;
- $model3 = new EloquentHasOneModelStub;
- $model3->id = 3;
- $model4 = new EloquentHasOneModelStub;
- $model4->id = 4;
- $models = $relation->match([$model1, $model2, $model3, $model4], new Collection([$result1, $result2, $result3]), 'foo');
- $this->assertEquals(1, $models[0]->foo->foreign_key);
- $this->assertEquals(2, $models[1]->foo->foreign_key);
- $this->assertNull($models[2]->foo);
- $this->assertEquals('4', $models[3]->foo->foreign_key);
- }
- public function testRelationCountQueryCanBeBuilt()
- {
- $relation = $this->getRelation();
- $builder = m::mock(Builder::class);
- $baseQuery = m::mock(BaseBuilder::class);
- $baseQuery->from = 'one';
- $parentQuery = m::mock(BaseBuilder::class);
- $parentQuery->from = 'two';
- $builder->shouldReceive('getQuery')->once()->andReturn($baseQuery);
- $builder->shouldReceive('getQuery')->once()->andReturn($parentQuery);
- $builder->shouldReceive('select')->once()->with(m::type(Expression::class))->andReturnSelf();
- $relation->getParent()->shouldReceive('qualifyColumn')->andReturn('table.id');
- $builder->shouldReceive('whereColumn')->once()->with('table.id', '=', 'table.foreign_key')->andReturn($baseQuery);
- $baseQuery->shouldReceive('setBindings')->once()->with([], 'select');
- $relation->getRelationExistenceCountQuery($builder, $builder);
- }
- public function testIsNotNull()
- {
- $relation = $this->getRelation();
- $this->related->shouldReceive('getTable')->never();
- $this->related->shouldReceive('getConnectionName')->never();
- $this->assertFalse($relation->is(null));
- }
- public function testIsModel()
- {
- $relation = $this->getRelation();
- $this->related->shouldReceive('getTable')->once()->andReturn('table');
- $this->related->shouldReceive('getConnectionName')->once()->andReturn('connection');
- $model = m::mock(Model::class);
- $model->shouldReceive('getAttribute')->once()->with('foreign_key')->andReturn(1);
- $model->shouldReceive('getTable')->once()->andReturn('table');
- $model->shouldReceive('getConnectionName')->once()->andReturn('connection');
- $this->assertTrue($relation->is($model));
- }
- public function testIsModelWithStringRelatedKey()
- {
- $relation = $this->getRelation();
- $this->related->shouldReceive('getTable')->once()->andReturn('table');
- $this->related->shouldReceive('getConnectionName')->once()->andReturn('connection');
- $model = m::mock(Model::class);
- $model->shouldReceive('getAttribute')->once()->with('foreign_key')->andReturn('1');
- $model->shouldReceive('getTable')->once()->andReturn('table');
- $model->shouldReceive('getConnectionName')->once()->andReturn('connection');
- $this->assertTrue($relation->is($model));
- }
- public function testIsNotModelWithNullRelatedKey()
- {
- $relation = $this->getRelation();
- $this->related->shouldReceive('getTable')->never();
- $this->related->shouldReceive('getConnectionName')->never();
- $model = m::mock(Model::class);
- $model->shouldReceive('getAttribute')->once()->with('foreign_key')->andReturn(null);
- $model->shouldReceive('getTable')->never();
- $model->shouldReceive('getConnectionName')->never();
- $this->assertFalse($relation->is($model));
- }
- public function testIsNotModelWithAnotherRelatedKey()
- {
- $relation = $this->getRelation();
- $this->related->shouldReceive('getTable')->never();
- $this->related->shouldReceive('getConnectionName')->never();
- $model = m::mock(Model::class);
- $model->shouldReceive('getAttribute')->once()->with('foreign_key')->andReturn(2);
- $model->shouldReceive('getTable')->never();
- $model->shouldReceive('getConnectionName')->never();
- $this->assertFalse($relation->is($model));
- }
- public function testIsNotModelWithAnotherTable()
- {
- $relation = $this->getRelation();
- $this->related->shouldReceive('getTable')->once()->andReturn('table');
- $this->related->shouldReceive('getConnectionName')->never();
- $model = m::mock(Model::class);
- $model->shouldReceive('getAttribute')->once()->with('foreign_key')->andReturn(1);
- $model->shouldReceive('getTable')->once()->andReturn('table.two');
- $model->shouldReceive('getConnectionName')->never();
- $this->assertFalse($relation->is($model));
- }
- public function testIsNotModelWithAnotherConnection()
- {
- $relation = $this->getRelation();
- $this->related->shouldReceive('getTable')->once()->andReturn('table');
- $this->related->shouldReceive('getConnectionName')->once()->andReturn('connection');
- $model = m::mock(Model::class);
- $model->shouldReceive('getAttribute')->once()->with('foreign_key')->andReturn(1);
- $model->shouldReceive('getTable')->once()->andReturn('table');
- $model->shouldReceive('getConnectionName')->once()->andReturn('connection.two');
- $this->assertFalse($relation->is($model));
- }
- protected function getRelation()
- {
- $this->builder = m::mock(Builder::class);
- $this->builder->shouldReceive('whereNotNull')->with('table.foreign_key');
- $this->builder->shouldReceive('where')->with('table.foreign_key', '=', 1);
- $this->related = m::mock(Model::class);
- $this->builder->shouldReceive('getModel')->andReturn($this->related);
- $this->parent = m::mock(Model::class);
- $this->parent->shouldReceive('getAttribute')->with('id')->andReturn(1);
- $this->parent->shouldReceive('getAttribute')->with('username')->andReturn('taylor');
- $this->parent->shouldReceive('getCreatedAtColumn')->andReturn('created_at');
- $this->parent->shouldReceive('getUpdatedAtColumn')->andReturn('updated_at');
- $this->parent->shouldReceive('newQueryWithoutScopes')->andReturn($this->builder);
- return new HasOne($this->builder, $this->parent, 'table.foreign_key', 'id');
- }
- }
- class EloquentHasOneModelStub extends Model
- {
- public $foreign_key = 'foreign.value';
- }
|