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 145 146 147 148 149 150 151 152 153 154 155 156 157 158
|
<?php
namespace Illuminate\Tests\Database;
use Illuminate\Database\Capsule\Manager as DB;
use Illuminate\Database\Eloquent\Casts\Attribute;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Schema\Builder;
use PHPUnit\Framework\TestCase;
class DatabaseEloquentWithAttributesTest extends TestCase
{
protected function setUp(): void
{
$db = new DB;
$db->addConnection([
'driver' => 'sqlite',
'database' => ':memory:',
]);
$db->bootEloquent();
$db->setAsGlobal();
}
protected function tearDown(): void
{
$this->schema()->dropIfExists((new WithAttributesModel)->getTable());
}
public function testAddsAttributes(): void
{
$key = 'a key';
$value = 'the value';
$query = WithAttributesModel::query()
->withAttributes([$key => $value]);
$model = $query->make();
$this->assertSame($value, $model->$key);
}
public function testAddsWheres(): void
{
$key = 'a key';
$value = 'the value';
$query = WithAttributesModel::query()
->withAttributes([$key => $value]);
$wheres = $query->toBase()->wheres;
$this->assertContains([
'type' => 'Basic',
'column' => 'with_attributes_models.'.$key,
'operator' => '=',
'value' => $value,
'boolean' => 'and',
], $wheres);
}
public function testAddsWithCasts(): void
{
$query = WithAttributesModel::query()
->withAttributes([
'is_admin' => 1,
'first_name' => 'FIRST',
'last_name' => 'LAST',
'type' => WithAttributesEnum::internal,
]);
$model = $query->make();
$this->assertSame(true, $model->is_admin);
$this->assertSame('First', $model->first_name);
$this->assertSame('Last', $model->last_name);
$this->assertSame(WithAttributesEnum::internal, $model->type);
$this->assertEqualsCanonicalizing([
'is_admin' => 1,
'first_name' => 'first',
'last_name' => 'last',
'type' => 'int',
], $model->getAttributes());
}
public function testAddsWithCastsViaDb(): void
{
$this->bootTable();
$query = WithAttributesModel::query()
->withAttributes([
'is_admin' => 1,
'first_name' => 'FIRST',
'last_name' => 'LAST',
'type' => WithAttributesEnum::internal,
]);
$query->create();
$model = WithAttributesModel::first();
$this->assertSame(true, $model->is_admin);
$this->assertSame('First', $model->first_name);
$this->assertSame('Last', $model->last_name);
$this->assertSame(WithAttributesEnum::internal, $model->type);
}
protected function bootTable(): void
{
$this->schema()->create((new WithAttributesModel)->getTable(), function ($table) {
$table->id();
$table->boolean('is_admin');
$table->string('first_name');
$table->string('last_name');
$table->string('type');
$table->timestamps();
});
}
protected function schema(): Builder
{
return WithAttributesModel::getConnectionResolver()->connection()->getSchemaBuilder();
}
}
class WithAttributesModel extends Model
{
protected $guarded = [];
protected $casts = [
'is_admin' => 'boolean',
'type' => WithAttributesEnum::class,
];
public function setFirstNameAttribute(string $value): void
{
$this->attributes['first_name'] = strtolower($value);
}
public function getFirstNameAttribute(?string $value): string
{
return ucfirst($value);
}
protected function lastName(): Attribute
{
return Attribute::make(
get: fn (string $value) => ucfirst($value),
set: fn (string $value) => strtolower($value),
);
}
}
enum WithAttributesEnum: string
{
case internal = 'int';
}
|