2016-03-25 01:18:05 -07:00
|
|
|
<?php
|
2021-11-30 20:09:29 -08:00
|
|
|
namespace Tests\Unit;
|
2021-06-10 13:15:52 -07:00
|
|
|
|
2016-03-25 01:18:05 -07:00
|
|
|
use App\Models\Location;
|
2021-11-30 20:09:29 -08:00
|
|
|
use Tests\Unit\BaseTest;
|
2021-12-01 23:33:20 -08:00
|
|
|
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2017-07-11 20:37:02 -07:00
|
|
|
class LocationTest extends BaseTest
|
2016-03-25 01:18:05 -07:00
|
|
|
{
|
|
|
|
/**
|
2021-06-10 13:15:52 -07:00
|
|
|
* @var \UnitTester
|
|
|
|
*/
|
2016-03-25 01:18:05 -07:00
|
|
|
protected $tester;
|
2017-06-12 17:39:03 -07:00
|
|
|
|
2021-06-10 13:15:52 -07:00
|
|
|
public function testPassesIfNotSelfParent()
|
|
|
|
{
|
2021-06-10 13:17:44 -07:00
|
|
|
$a = Location::factory()->make([
|
2020-04-21 19:51:42 -07:00
|
|
|
'name' => 'Test Location',
|
|
|
|
'id' => 1,
|
2023-03-07 10:28:33 -08:00
|
|
|
'parent_id' => Location::factory()->create(['id' => 10])->id,
|
2020-04-21 19:51:42 -07:00
|
|
|
]);
|
|
|
|
|
|
|
|
$this->assertTrue($a->isValid());
|
|
|
|
}
|
|
|
|
|
2021-06-10 13:15:52 -07:00
|
|
|
public function testFailsIfSelfParent()
|
|
|
|
{
|
2021-06-10 13:17:44 -07:00
|
|
|
$a = Location::factory()->make([
|
2020-04-21 19:51:42 -07:00
|
|
|
'name' => 'Test Location',
|
|
|
|
'id' => 1,
|
|
|
|
'parent_id' => 1,
|
|
|
|
]);
|
|
|
|
|
|
|
|
$this->assertFalse($a->isValid());
|
2021-12-01 22:45:39 -08:00
|
|
|
$this->assertStringContainsString(trans('validation.non_circular', ['attribute' => 'parent id']), $a->getErrors());
|
2020-04-21 19:51:42 -07:00
|
|
|
}
|
2016-03-25 01:18:05 -07:00
|
|
|
}
|