mirror of
https://github.com/snipe/snipe-it.git
synced 2026-04-02 05:52:33 +00:00
95 lines
2.7 KiB
PHP
95 lines
2.7 KiB
PHP
<?php
|
|
|
|
namespace Tests\Unit;
|
|
|
|
use App\Models\Asset;
|
|
use App\Models\AssetModel;
|
|
use App\Models\Category;
|
|
use App\Models\Depreciation;
|
|
use App\Models\License;
|
|
use Tests\TestCase;
|
|
|
|
class DepreciationTest extends TestCase
|
|
{
|
|
public function test_a_depreciation_has_models()
|
|
{
|
|
$depreciation = Depreciation::factory()->create();
|
|
|
|
AssetModel::factory()
|
|
->count(5)
|
|
->create(
|
|
[
|
|
'category_id' => Category::factory()->assetLaptopCategory()->create(),
|
|
'depreciation_id' => $depreciation->id,
|
|
]);
|
|
|
|
$this->assertEquals(5, $depreciation->models->count());
|
|
}
|
|
|
|
public function test_depreciation_amount()
|
|
{
|
|
$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 test_depreciation_percentage()
|
|
{
|
|
$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());
|
|
}
|
|
|
|
public function test_a_depreciation_has_licenses()
|
|
{
|
|
|
|
$depreciation = Depreciation::factory()->create();
|
|
License::factory()
|
|
->count(5)
|
|
->photoshop()
|
|
->create(
|
|
[
|
|
'category_id' => Category::factory()->licenseGraphicsCategory()->create(),
|
|
'depreciation_id' => $depreciation->id,
|
|
]);
|
|
|
|
$this->assertEquals(5, $depreciation->licenses()->count());
|
|
}
|
|
}
|