2016-03-25 01:18:05 -07:00
|
|
|
<?php
|
|
|
|
use App\Models\Depreciation;
|
|
|
|
use Illuminate\Foundation\Testing\WithoutMiddleware;
|
|
|
|
use Illuminate\Foundation\Testing\DatabaseMigrations;
|
|
|
|
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
|
|
|
|
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
|
|
|
|
2018-07-23 06:48:21 -07:00
|
|
|
public function testFailsEmptyValidation()
|
|
|
|
{
|
|
|
|
// An Asset requires a name, a qty, and a category_id.
|
|
|
|
$a = Depreciation::create();
|
|
|
|
$this->assertFalse($a->isValid());
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2018-07-23 06:48:21 -07:00
|
|
|
$fields = [
|
|
|
|
'name' => 'name',
|
|
|
|
'months' => 'months',
|
|
|
|
];
|
|
|
|
$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 testADepreciationHasModels()
|
|
|
|
{
|
|
|
|
$this->createValidAssetModel();
|
|
|
|
$depreciation = $this->createValidDepreciation('computer', ['name' => 'New Depreciation']);
|
|
|
|
$models = factory(App\Models\AssetModel::class, 5)->states('mbp-13-model')->create(['depreciation_id'=>$depreciation->id]);
|
2018-08-01 00:06:41 -07:00
|
|
|
$this->assertEquals(5,$depreciation->models->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 testADepreciationHasLicenses()
|
|
|
|
{
|
|
|
|
$category = $this->createValidCategory('license-graphics-category');
|
|
|
|
$depreciation = $this->createValidDepreciation('computer', ['name' => 'New Depreciation']);
|
2019-03-13 10:57:43 -07:00
|
|
|
$licenses = factory(App\Models\License::class, 5)->states('photoshop')->create([
|
2018-07-23 06:48:21 -07:00
|
|
|
'depreciation_id'=>$depreciation->id,
|
|
|
|
'category_id' => $category->id
|
|
|
|
]);
|
2017-06-12 17:39:03 -07:00
|
|
|
|
2018-09-25 14:01:21 -07:00
|
|
|
$this->assertEquals(5,$depreciation->licenses()->count());
|
2018-07-23 06:48:21 -07:00
|
|
|
}
|
2016-03-25 01:18:05 -07:00
|
|
|
}
|