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
|
<?php
namespace Illuminate\Tests\Database;
use Illuminate\Database\Eloquent\SoftDeletes;
use Illuminate\Support\Carbon;
use Mockery as m;
use PHPUnit\Framework\TestCase;
use stdClass;
class DatabaseSoftDeletingTraitTest extends TestCase
{
protected function tearDown(): void
{
m::close();
}
public function testDeleteSetsSoftDeletedColumn()
{
$model = m::mock(DatabaseSoftDeletingTraitStub::class);
$model->makePartial();
$model->shouldReceive('newModelQuery')->andReturn($query = m::mock(stdClass::class));
$query->shouldReceive('where')->once()->with('id', '=', 1)->andReturn($query);
$query->shouldReceive('update')->once()->with([
'deleted_at' => 'date-time',
'updated_at' => 'date-time',
]);
$model->shouldReceive('syncOriginalAttributes')->once()->with([
'deleted_at',
'updated_at',
]);
$model->shouldReceive('usesTimestamps')->once()->andReturn(true);
$model->delete();
$this->assertInstanceOf(Carbon::class, $model->deleted_at);
}
public function testRestore()
{
$model = m::mock(DatabaseSoftDeletingTraitStub::class);
$model->makePartial();
$model->shouldReceive('fireModelEvent')->with('restoring')->andReturn(true);
$model->shouldReceive('save')->once();
$model->shouldReceive('fireModelEvent')->with('restored', false)->andReturn(true);
$model->restore();
$this->assertNull($model->deleted_at);
}
public function testRestoreCancel()
{
$model = m::mock(DatabaseSoftDeletingTraitStub::class);
$model->makePartial();
$model->shouldReceive('fireModelEvent')->with('restoring')->andReturn(false);
$model->shouldReceive('save')->never();
$this->assertFalse($model->restore());
}
}
class DatabaseSoftDeletingTraitStub
{
use SoftDeletes;
public $deleted_at;
public $updated_at;
public $timestamps = true;
public $exists = false;
public function newQuery()
{
//
}
public function getKey()
{
return 1;
}
public function getKeyName()
{
return 'id';
}
public function save()
{
//
}
public function delete()
{
return $this->performDeleteOnModel();
}
public function fireModelEvent()
{
//
}
public function freshTimestamp()
{
return Carbon::now();
}
public function fromDateTime()
{
return 'date-time';
}
public function getUpdatedAtColumn()
{
return defined('static::UPDATED_AT') ? static::UPDATED_AT : 'updated_at';
}
public function setKeysForSaveQuery($query)
{
$query->where($this->getKeyName(), '=', $this->getKeyForSaveQuery());
return $query;
}
protected function getKeyForSaveQuery()
{
return 1;
}
}
|