mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-09 23:24:06 -08:00
f9697887e8
Signed-off-by: snipe <snipe@snipe.net>
51 lines
1.3 KiB
PHP
51 lines
1.3 KiB
PHP
<?php
|
|
namespace Tests\Unit;
|
|
|
|
use App\Models\AssetMaintenance;
|
|
use Carbon\Carbon;
|
|
use Tests\Support\InteractsWithSettings;
|
|
use Tests\TestCase;
|
|
|
|
class AssetMaintenanceTest extends TestCase
|
|
{
|
|
use InteractsWithSettings;
|
|
|
|
public function testZerosOutWarrantyIfBlank()
|
|
{
|
|
$c = new AssetMaintenance;
|
|
$c->is_warranty = '';
|
|
$this->assertTrue($c->is_warranty === 0);
|
|
$c->is_warranty = '4';
|
|
$this->assertTrue($c->is_warranty == 4);
|
|
}
|
|
|
|
public function testSetsCostsAppropriately()
|
|
{
|
|
$c = new AssetMaintenance();
|
|
$c->cost = '0.00';
|
|
$this->assertTrue($c->cost === null);
|
|
$c->cost = '9.54';
|
|
$this->assertTrue($c->cost === 9.54);
|
|
$c->cost = '9.50';
|
|
$this->assertTrue($c->cost === 9.5);
|
|
}
|
|
|
|
public function testNullsOutNotesIfBlank()
|
|
{
|
|
$c = new AssetMaintenance;
|
|
$c->notes = '';
|
|
$this->assertTrue($c->notes === null);
|
|
$c->notes = 'This is a long note';
|
|
$this->assertTrue($c->notes === 'This is a long note');
|
|
}
|
|
|
|
public function testNullsOutCompletionDateIfBlankOrInvalid()
|
|
{
|
|
$c = new AssetMaintenance;
|
|
$c->completion_date = '';
|
|
$this->assertTrue($c->completion_date === null);
|
|
$c->completion_date = '0000-00-00';
|
|
$this->assertTrue($c->completion_date === null);
|
|
}
|
|
}
|