1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144
|
<?php
namespace Illuminate\Tests\Integration\Database;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Carbon;
use Illuminate\Support\Facades\Schema;
use Illuminate\Support\Str;
class EloquentModelTest extends DatabaseTestCase
{
protected function afterRefreshingDatabase()
{
Schema::create('test_model1', function (Blueprint $table) {
$table->increments('id');
$table->timestamp('nullable_date')->nullable();
});
Schema::create('test_model2', function (Blueprint $table) {
$table->increments('id');
$table->string('name');
$table->string('title');
});
}
public function testUserCanUpdateNullableDate()
{
$user = TestModel1::create([
'nullable_date' => null,
]);
$user->fill([
'nullable_date' => $now = Carbon::now(),
]);
$this->assertTrue($user->isDirty('nullable_date'));
$user->save();
$this->assertEquals($now->toDateString(), $user->nullable_date->toDateString());
}
public function testAttributeChanges()
{
$user = TestModel2::create([
'name' => Str::random(), 'title' => Str::random(),
]);
$this->assertEmpty($user->getDirty());
$this->assertEmpty($user->getChanges());
$this->assertFalse($user->isDirty());
$this->assertFalse($user->wasChanged());
$user->name = $name = Str::random();
$this->assertEquals(['name' => $name], $user->getDirty());
$this->assertEmpty($user->getChanges());
$this->assertTrue($user->isDirty());
$this->assertFalse($user->wasChanged());
$user->save();
$this->assertEmpty($user->getDirty());
$this->assertEquals(['name' => $name], $user->getChanges());
$this->assertTrue($user->wasChanged());
$this->assertTrue($user->wasChanged('name'));
}
public function testDiscardChanges()
{
$user = TestModel2::create([
'name' => $originalName = Str::random(), 'title' => Str::random(),
]);
$this->assertEmpty($user->getDirty());
$this->assertEmpty($user->getChanges());
$this->assertFalse($user->isDirty());
$this->assertFalse($user->wasChanged());
$user->name = $overrideName = Str::random();
$this->assertEquals(['name' => $overrideName], $user->getDirty());
$this->assertEmpty($user->getChanges());
$this->assertTrue($user->isDirty());
$this->assertFalse($user->wasChanged());
$this->assertSame($originalName, $user->getOriginal('name'));
$this->assertSame($overrideName, $user->getAttribute('name'));
$user->discardChanges();
$this->assertEmpty($user->getDirty());
$this->assertSame($originalName, $user->getOriginal('name'));
$this->assertSame($originalName, $user->getAttribute('name'));
$user->save();
$this->assertFalse($user->wasChanged());
}
public function testInsertRecordWithReservedWordFieldName()
{
Schema::create('actions', function (Blueprint $table) {
$table->id();
$table->string('label');
$table->timestamp('start');
$table->timestamp('end')->nullable();
$table->boolean('analyze');
});
$model = new class extends Model
{
protected $table = 'actions';
protected $guarded = ['id'];
public $timestamps = false;
};
$model->newInstance()->create([
'label' => 'test',
'start' => '2023-01-01 00:00:00',
'end' => '2024-01-01 00:00:00',
'analyze' => true,
]);
$this->assertDatabaseHas('actions', [
'label' => 'test',
'start' => '2023-01-01 00:00:00',
'end' => '2024-01-01 00:00:00',
'analyze' => true,
]);
}
}
class TestModel1 extends Model
{
public $table = 'test_model1';
public $timestamps = false;
protected $guarded = [];
protected $casts = ['nullable_date' => 'datetime'];
}
class TestModel2 extends Model
{
public $table = 'test_model2';
public $timestamps = false;
protected $guarded = [];
}
|