2016-03-25 01:18:05 -07:00
|
|
|
<?php
|
2017-06-12 17:39:03 -07:00
|
|
|
use App\Models\Asset;
|
2016-03-25 01:18:05 -07:00
|
|
|
use App\Models\AssetModel;
|
|
|
|
use Illuminate\Foundation\Testing\DatabaseMigrations;
|
|
|
|
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
2017-06-12 17:39:03 -07:00
|
|
|
use Illuminate\Foundation\Testing\WithoutMiddleware;
|
|
|
|
use Illuminate\Support\Facades\Hash;
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2017-07-11 20:37:02 -07:00
|
|
|
class AssetModelTest extends BaseTest
|
2016-03-25 01:18:05 -07:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @var \UnitTester
|
|
|
|
*/
|
|
|
|
protected $tester;
|
2017-06-12 17:39:03 -07:00
|
|
|
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2018-07-23 06:48:21 -07:00
|
|
|
public function testAnAssetModelRequiresAttributes()
|
|
|
|
{
|
|
|
|
// An Asset Model requires a name, a category_id, and a manufacturer_id.
|
|
|
|
$a = AssetModel::create();
|
|
|
|
$this->assertFalse($a->isValid());
|
|
|
|
$fields = [
|
|
|
|
'name' => 'name',
|
|
|
|
'manufacturer_id' => 'manufacturer id',
|
|
|
|
'category_id' => 'category id'
|
|
|
|
];
|
|
|
|
$errors = $a->getErrors();
|
|
|
|
foreach ($fields as $field => $fieldTitle) {
|
|
|
|
$this->assertEquals($errors->get($field)[0], "The ${fieldTitle} field is required.");
|
|
|
|
}
|
|
|
|
}
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2018-07-23 06:48:21 -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
|
|
|
|
2018-07-23 06:48:21 -07:00
|
|
|
public function testAnAssetModelContainsAssets()
|
|
|
|
{
|
|
|
|
$assetModel = $this->createValidAssetModel();
|
2020-04-27 18:02:14 -07:00
|
|
|
$this->createValidAsset([
|
2018-07-23 06:48:21 -07:00
|
|
|
'model_id' => $assetModel->id,
|
|
|
|
]);
|
2020-04-27 18:02:14 -07:00
|
|
|
$this->assertEquals(1, $assetModel->assets()->count());
|
2018-07-23 06:48:21 -07:00
|
|
|
}
|
2017-06-12 17:39:03 -07:00
|
|
|
|
2018-07-23 06:48:21 -07:00
|
|
|
public function testAnAssetModelHasACategory()
|
|
|
|
{
|
|
|
|
$assetmodel = $this->createValidAssetModel();
|
|
|
|
$this->assertInstanceOf(App\Models\Category::class, $assetmodel->category);
|
|
|
|
}
|
2017-06-12 17:39:03 -07:00
|
|
|
|
2018-07-23 06:48:21 -07:00
|
|
|
public function testAnAssetModelHasADepreciation()
|
|
|
|
{
|
2017-06-12 17:39:03 -07:00
|
|
|
|
2018-07-23 06:48:21 -07:00
|
|
|
$assetmodel = $this->createValidAssetModel();
|
|
|
|
$this->assertInstanceOf(App\Models\Depreciation::class, $assetmodel->depreciation);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testAnAssetModelHasAManufacturer()
|
|
|
|
{
|
|
|
|
$assetmodel = $this->createValidAssetModel();
|
|
|
|
$this->assertInstanceOf(App\Models\Manufacturer::class, $assetmodel->manufacturer);
|
|
|
|
}
|
2017-06-12 17:39:03 -07:00
|
|
|
|
2016-03-25 01:18:05 -07:00
|
|
|
}
|