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
|
|
|
|
2017-06-12 17:39:03 -07:00
|
|
|
use App\Models\Asset;
|
2021-12-02 16:14:45 -08:00
|
|
|
use App\Models\Category;
|
2016-03-25 01:18:05 -07:00
|
|
|
use App\Models\AssetModel;
|
2023-05-01 16:05:26 -07:00
|
|
|
use Tests\Support\InteractsWithSettings;
|
2023-03-07 16:57:55 -08:00
|
|
|
use Tests\TestCase;
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2023-03-07 16:57:55 -08:00
|
|
|
class AssetModelTest extends TestCase
|
2016-03-25 01:18:05 -07:00
|
|
|
{
|
2023-05-01 16:05:26 -07:00
|
|
|
use InteractsWithSettings;
|
|
|
|
|
2021-06-10 13:15:52 -07:00
|
|
|
public function testAnAssetModelZerosOutBlankEols()
|
|
|
|
{
|
|
|
|
$am = new AssetModel;
|
|
|
|
$am->eol = '';
|
|
|
|
$this->assertTrue($am->eol === 0);
|
|
|
|
$am->eol = '4';
|
|
|
|
$this->assertTrue($am->eol == 4);
|
|
|
|
}
|
2017-06-12 17:39:03 -07:00
|
|
|
|
2021-06-10 13:15:52 -07:00
|
|
|
public function testAnAssetModelContainsAssets()
|
|
|
|
{
|
2021-12-02 16:14:45 -08:00
|
|
|
$category = Category::factory()->create(
|
|
|
|
['category_type' => 'asset']
|
|
|
|
);
|
|
|
|
$model = AssetModel::factory()->create([
|
|
|
|
'category_id' => $category->id,
|
|
|
|
]);
|
|
|
|
|
|
|
|
$asset = Asset::factory()
|
|
|
|
->create(
|
|
|
|
[
|
|
|
|
'model_id' => $model->id
|
|
|
|
]
|
|
|
|
);
|
|
|
|
$this->assertEquals(1, $model->assets()->count());
|
2021-06-10 13:15:52 -07:00
|
|
|
}
|
2016-03-25 01:18:05 -07:00
|
|
|
}
|