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\Depreciation;
|
|
|
|
use Illuminate\Foundation\Testing\DatabaseMigrations;
|
|
|
|
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
2021-06-10 13:15:52 -07:00
|
|
|
use Illuminate\Foundation\Testing\WithoutMiddleware;
|
2021-11-30 20:09:29 -08:00
|
|
|
use Tests\Unit\BaseTest;
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2017-07-11 20:37:02 -07:00
|
|
|
class DepreciationTest extends BaseTest
|
2016-03-25 01:18:05 -07:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @var \UnitTester
|
|
|
|
*/
|
|
|
|
protected $tester;
|
2017-06-12 17:39:03 -07:00
|
|
|
|
2021-06-10 13:15:52 -07:00
|
|
|
public function testFailsEmptyValidation()
|
|
|
|
{
|
2018-07-23 06:48:21 -07:00
|
|
|
// An Asset requires a name, a qty, and a category_id.
|
2021-06-10 13:15:52 -07:00
|
|
|
$a = Depreciation::create();
|
|
|
|
$this->assertFalse($a->isValid());
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2021-06-10 13:15:52 -07:00
|
|
|
$fields = [
|
2018-07-23 06:48:21 -07:00
|
|
|
'name' => 'name',
|
|
|
|
'months' => 'months',
|
|
|
|
];
|
2021-06-10 13:15:52 -07:00
|
|
|
$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
|
|
|
|
2021-06-10 13:15:52 -07:00
|
|
|
public function testADepreciationHasModels()
|
|
|
|
{
|
|
|
|
$this->createValidAssetModel();
|
|
|
|
$depreciation = $this->createValidDepreciation('computer', ['name' => 'New Depreciation']);
|
2021-06-10 13:17:44 -07:00
|
|
|
$models = \App\Models\AssetModel::factory()->count(5)->mbp13Model()->create(['depreciation_id'=>$depreciation->id]);
|
2021-06-10 13:15:52 -07:00
|
|
|
$this->assertEquals(5, $depreciation->models->count());
|
|
|
|
}
|
2017-06-12 17:39:03 -07:00
|
|
|
|
2021-06-10 13:15:52 -07:00
|
|
|
public function testADepreciationHasLicenses()
|
|
|
|
{
|
|
|
|
$category = $this->createValidCategory('license-graphics-category');
|
|
|
|
$depreciation = $this->createValidDepreciation('computer', ['name' => 'New Depreciation']);
|
2021-06-10 13:17:44 -07:00
|
|
|
$licenses = \App\Models\License::factory()->count(5)->photoshop()->create([
|
2018-07-23 06:48:21 -07:00
|
|
|
'depreciation_id'=>$depreciation->id,
|
2021-06-10 13:15:52 -07:00
|
|
|
'category_id' => $category->id,
|
2018-07-23 06:48:21 -07:00
|
|
|
]);
|
2017-06-12 17:39:03 -07:00
|
|
|
|
2021-06-10 13:15:52 -07:00
|
|
|
$this->assertEquals(5, $depreciation->licenses()->count());
|
|
|
|
}
|
2016-03-25 01:18:05 -07:00
|
|
|
}
|