3
0
mirror of https://github.com/snipe/snipe-it.git synced 2026-06-13 02:23:21 +00:00
Files
snipe-it/tests/Unit/SnipeModelTest.php
2026-05-14 14:29:51 +01:00

109 lines
3.3 KiB
PHP

<?php
namespace Tests\Unit;
use App\Models\SnipeModel;
use Tests\TestCase;
class SnipeModelTest extends TestCase
{
public function test_sets_purchase_dates_appropriately()
{
$c = new SnipeModel;
$c->purchase_date = '';
$this->assertNull($c->purchase_date);
$c->purchase_date = null;
$this->assertNull($c->purchase_date);
$c->purchase_date = '2016-03-25';
$this->assertTrue($c->purchase_date === '2016-03-25');
$this->assertEquals('2016-03-25', $c->purchase_date);
}
public function test_sets_purchase_costs_appropriately()
{
$c = new SnipeModel;
$c->purchase_cost = '';
$this->assertNull($c->purchase_cost);
$c->purchase_cost = null;
$this->assertNull($c->purchase_cost);
$c->purchase_cost = '0.00';
$this->assertSame(0.0, (float) $c->purchase_cost);
$c->purchase_cost = '9.54';
$this->assertSame(9.54, (float) $c->purchase_cost);
$c->purchase_cost = 12.34; // already a float — no ParseCurrency needed
$this->assertSame(12.34, (float) $c->purchase_cost);
}
public function test_sets_purchase_cost_from_us_format_with_thousands()
{
$this->settings->set(['digit_separator' => '1,234.56']);
$c = new SnipeModel;
$c->purchase_cost = '8,888.00';
$this->assertSame(8888.0, (float) $c->purchase_cost);
$c->purchase_cost = '8888.00';
$this->assertSame(8888.0, (float) $c->purchase_cost);
}
public function test_sets_purchase_cost_from_eu_format_with_thousands()
{
$this->settings->set(['digit_separator' => '1.234,56']);
$c = new SnipeModel;
$c->purchase_cost = '8.888,00';
$this->assertSame(8888.0, (float) $c->purchase_cost);
$c->purchase_cost = '8888,00';
$this->assertSame(8888.0, (float) $c->purchase_cost);
$c->purchase_cost = '12,34';
$this->assertSame(12.34, (float) $c->purchase_cost);
}
public function test_nulls_blank_location_ids_but_not_others()
{
$c = new SnipeModel;
$c->location_id = '';
$this->assertTrue($c->location_id === null);
$c->location_id = '5';
$this->assertTrue($c->location_id == 5);
}
public function test_nulls_blank_categories_but_not_others()
{
$c = new SnipeModel;
$c->category_id = '';
$this->assertTrue($c->category_id === null);
$c->category_id = '1';
$this->assertTrue($c->category_id == 1);
}
public function test_nulls_blank_suppliers_but_not_others()
{
$c = new SnipeModel;
$c->supplier_id = '';
$this->assertTrue($c->supplier_id === null);
$c->supplier_id = '4';
$this->assertTrue($c->supplier_id == 4);
}
public function test_nulls_blank_depreciations_but_not_others()
{
$c = new SnipeModel;
$c->depreciation_id = '';
$this->assertTrue($c->depreciation_id === null);
$c->depreciation_id = '4';
$this->assertTrue($c->depreciation_id == 4);
}
public function test_nulls_blank_manufacturers_but_not_others()
{
$c = new SnipeModel;
$c->manufacturer_id = '';
$this->assertTrue($c->manufacturer_id === null);
$c->manufacturer_id = '4';
$this->assertTrue($c->manufacturer_id == 4);
}
}