-
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.
- Loading branch information
Showing
3 changed files
with
184 additions
and
2 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
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,128 @@ | ||
<?php | ||
|
||
namespace Illuminate\Tests\Integration\Database; | ||
|
||
use Orchestra\Testbench\TestCase; | ||
use Illuminate\Support\Facades\Schema; | ||
use Illuminate\Database\Eloquent\Model; | ||
use Illuminate\Database\Eloquent\SoftDeletes; | ||
|
||
/** | ||
* @group integration | ||
*/ | ||
class EloquentUpdateTest extends TestCase | ||
{ | ||
protected function getEnvironmentSetUp($app) | ||
{ | ||
$app['config']->set('app.debug', 'true'); | ||
|
||
$app['config']->set('database.default', 'testbench'); | ||
|
||
$app['config']->set('database.connections.testbench', [ | ||
'driver' => 'sqlite', | ||
'database' => ':memory:', | ||
'prefix' => '', | ||
]); | ||
} | ||
|
||
public function setUp() | ||
{ | ||
parent::setUp(); | ||
|
||
Schema::create('test_model1', function ($table) { | ||
$table->increments('id'); | ||
$table->string('name')->nullable(); | ||
$table->string('title')->nullable(); | ||
}); | ||
|
||
Schema::create('test_model2', function ($table) { | ||
$table->increments('id'); | ||
$table->string('name'); | ||
$table->string('job')->nullable(); | ||
$table->softDeletes(); | ||
$table->timestamps(); | ||
}); | ||
} | ||
|
||
public function testBasicUpdate() | ||
{ | ||
TestUpdateModel1::create([ | ||
'name' => str_random(), | ||
'title' => 'Ms.', | ||
]); | ||
|
||
TestUpdateModel1::where('title', 'Ms.')->delete(); | ||
|
||
$this->assertEquals(0, TestUpdateModel1::all()->count()); | ||
} | ||
|
||
public function testUpdateWithLimitsAndOrders() | ||
{ | ||
for($i=1; $i <= 10; $i++){ | ||
TestUpdateModel1::create(); | ||
} | ||
|
||
TestUpdateModel1::latest('id')->limit(3)->update(['title'=>'Dr.']); | ||
|
||
$this->assertEquals('Dr.', TestUpdateModel1::find(8)->title); | ||
$this->assertNotEquals('Dr.', TestUpdateModel1::find(7)->title); | ||
} | ||
|
||
public function testUpdatedAtWithJoins() | ||
{ | ||
TestUpdateModel1::create([ | ||
'name' => 'Abdul', | ||
'title' => 'Mr.', | ||
]); | ||
|
||
TestUpdateModel2::create([ | ||
'name' => str_random() | ||
]); | ||
|
||
TestUpdateModel2::join('test_model1', function($join) { | ||
$join->on('test_model1.id', '=', 'test_model2.id') | ||
->where('test_model1.title', '=', 'Mr.'); | ||
})->update(['test_model2.name' => 'Abdul', 'job'=>'Engineer']); | ||
|
||
$record = TestUpdateModel2::find(1); | ||
|
||
$this->assertEquals('Engineer: Abdul', $record->job.': '.$record->name); | ||
} | ||
|
||
public function testSoftDeleteWithJoins() | ||
{ | ||
TestUpdateModel1::create([ | ||
'name' => str_random(), | ||
'title' => 'Mr.', | ||
]); | ||
|
||
TestUpdateModel2::create([ | ||
'name' => str_random() | ||
]); | ||
|
||
|
||
TestUpdateModel2::join('test_model1', function($join) { | ||
$join->on('test_model1.id', '=', 'test_model2.id') | ||
->where('test_model1.title', '=', 'Mr.'); | ||
})->delete(); | ||
|
||
$this->assertEquals(0, TestUpdateModel2::all()->count()); | ||
} | ||
} | ||
|
||
|
||
class TestUpdateModel1 extends Model | ||
{ | ||
public $table = 'test_model1'; | ||
public $timestamps = false; | ||
protected $guarded = ['id']; | ||
} | ||
|
||
class TestUpdateModel2 extends Model | ||
{ | ||
use SoftDeletes; | ||
|
||
public $table = 'test_model2'; | ||
protected $fillable = ['name']; | ||
protected $dates = ['deleted_at']; | ||
} |