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
|
<?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;
/**
* @group integration
*/
class EloquentModelTest extends DatabaseTestCase
{
protected function setUp(): void
{
parent::setUp();
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 testCantUpdateGuardedAttributesUsingDifferentCasing()
{
$model = new TestModel2;
$model->fill(['ID' => 123]);
$this->assertNull($model->ID);
}
public function testCantUpdateGuardedAttributeUsingJson()
{
$model = new TestModel2;
$model->fill(['id->foo' => 123]);
$this->assertNull($model->id);
}
public function testCantMassFillAttributesWithTableNamesWhenUsingGuarded()
{
$model = new TestModel2;
$model->fill(['foo.bar' => 123]);
$this->assertCount(0, $model->getAttributes());
}
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'));
}
}
class TestModel1 extends Model
{
public $table = 'test_model1';
public $timestamps = false;
protected $guarded = ['id'];
protected $dates = ['nullable_date'];
}
class TestModel2 extends Model
{
public $table = 'test_model2';
public $timestamps = false;
protected $guarded = ['id'];
}
|