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
|
|
|
|
2024-07-23 11:53:59 -07:00
|
|
|
use App\Models\Asset;
|
|
|
|
use App\Models\Depreciable;
|
2016-03-25 01:18:05 -07:00
|
|
|
use App\Models\Depreciation;
|
2021-12-02 19:19:42 -08:00
|
|
|
use App\Models\Category;
|
|
|
|
use App\Models\License;
|
2021-12-02 19:36:07 -08:00
|
|
|
use App\Models\AssetModel;
|
2024-07-23 11:53:59 -07:00
|
|
|
use Illuminate\Validation\ValidationException;
|
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 DepreciationTest extends TestCase
|
2016-03-25 01:18:05 -07:00
|
|
|
{
|
2021-06-10 13:15:52 -07:00
|
|
|
public function testADepreciationHasModels()
|
|
|
|
{
|
2021-12-02 19:36:07 -08:00
|
|
|
$depreciation = Depreciation::factory()->create();
|
|
|
|
|
|
|
|
AssetModel::factory()
|
|
|
|
->count(5)
|
|
|
|
->create(
|
|
|
|
[
|
2023-03-13 16:45:43 -07:00
|
|
|
'category_id' => Category::factory()->assetLaptopCategory()->create(),
|
2021-12-02 19:36:07 -08:00
|
|
|
'depreciation_id' => $depreciation->id
|
|
|
|
]);
|
2024-08-16 02:35:42 -07:00
|
|
|
|
2021-06-10 13:15:52 -07:00
|
|
|
$this->assertEquals(5, $depreciation->models->count());
|
|
|
|
}
|
2024-07-23 11:53:59 -07:00
|
|
|
public function testDepreciationAmount()
|
|
|
|
{
|
|
|
|
$depreciation = Depreciation::factory()->create([
|
|
|
|
'depreciation_type' => 'amount',
|
|
|
|
'depreciation_min' => 1000,
|
|
|
|
'months'=> 36,
|
|
|
|
]);
|
|
|
|
|
|
|
|
$asset = Asset::factory()
|
|
|
|
->laptopMbp()
|
|
|
|
->create(
|
|
|
|
[
|
|
|
|
'category_id' => Category::factory()->assetLaptopCategory()->create(),
|
|
|
|
'purchase_date' => now()->subDecade(),
|
|
|
|
'purchase_cost' => 4000,
|
|
|
|
]);
|
|
|
|
$asset->model->update([
|
|
|
|
'depreciation_id' => $depreciation->id,
|
|
|
|
]);
|
|
|
|
|
|
|
|
$asset->getLinearDepreciatedValue();
|
|
|
|
|
|
|
|
$this->assertEquals($depreciation->depreciation_min, $asset->getLinearDepreciatedValue());
|
|
|
|
}
|
|
|
|
public function testDepreciationPercentage()
|
|
|
|
{
|
|
|
|
$depreciation = Depreciation::factory()->create([
|
|
|
|
'depreciation_type' => 'percent',
|
|
|
|
'depreciation_min' => 50,
|
|
|
|
'months'=> 36,
|
|
|
|
]);
|
|
|
|
|
|
|
|
$asset = Asset::factory()
|
|
|
|
->laptopMbp()
|
|
|
|
->create(
|
|
|
|
[
|
|
|
|
'category_id' => Category::factory()->assetLaptopCategory()->create(),
|
|
|
|
'purchase_date' => now()->subDecade(),
|
|
|
|
'purchase_cost' => 4000,
|
|
|
|
]);
|
|
|
|
$asset->model->update([
|
|
|
|
'depreciation_id' => $depreciation->id,
|
|
|
|
]);
|
|
|
|
|
|
|
|
$asset->getLinearDepreciatedValue();
|
|
|
|
|
|
|
|
$this->assertEquals(2000, $asset->getLinearDepreciatedValue());
|
|
|
|
}
|
2017-06-12 17:39:03 -07:00
|
|
|
|
2021-06-10 13:15:52 -07:00
|
|
|
public function testADepreciationHasLicenses()
|
|
|
|
{
|
2021-12-02 19:19:42 -08:00
|
|
|
|
|
|
|
$depreciation = Depreciation::factory()->create();
|
|
|
|
License::factory()
|
|
|
|
->count(5)
|
|
|
|
->photoshop()
|
|
|
|
->create(
|
|
|
|
[
|
2023-03-13 16:45:43 -07:00
|
|
|
'category_id' => Category::factory()->licenseGraphicsCategory()->create(),
|
2021-12-02 19:19:42 -08:00
|
|
|
'depreciation_id' => $depreciation->id
|
|
|
|
]);
|
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
|
|
|
}
|