mirror of
https://github.com/snipe/snipe-it.git
synced 2025-02-21 03:15:45 -08:00
128 lines
5 KiB
PHP
128 lines
5 KiB
PHP
|
<?php
|
||
|
|
||
|
namespace Tests\Feature\Accessories\Ui;
|
||
|
|
||
|
use App\Models\Accessory;
|
||
|
use App\Models\Category;
|
||
|
use App\Models\Company;
|
||
|
use App\Models\Location;
|
||
|
use App\Models\Manufacturer;
|
||
|
use App\Models\Supplier;
|
||
|
use App\Models\User;
|
||
|
use Tests\TestCase;
|
||
|
|
||
|
class UpdateAccessoryTest extends TestCase
|
||
|
{
|
||
|
public function testRequiresPermissionToSeeEditAccessoryPage()
|
||
|
{
|
||
|
$this->actingAs(User::factory()->create())
|
||
|
->get(route('accessories.edit', Accessory::factory()->create()->id))
|
||
|
->assertForbidden();
|
||
|
}
|
||
|
|
||
|
public function testEditAccessoryPageRenders()
|
||
|
{
|
||
|
$this->actingAs(User::factory()->editAccessories()->create())
|
||
|
->get(route('accessories.edit', Accessory::factory()->create()->id))
|
||
|
->assertOk()
|
||
|
->assertViewIs('accessories.edit');
|
||
|
}
|
||
|
|
||
|
public function testDoesNotShowEditAccessoryPageFromAnotherCompany()
|
||
|
{
|
||
|
$this->settings->enableMultipleFullCompanySupport();
|
||
|
|
||
|
[$companyA, $companyB] = Company::factory()->count(2)->create();
|
||
|
$accessoryForCompanyA = Accessory::factory()->for($companyA)->create();
|
||
|
$userForCompanyB = User::factory()->for($companyB)->editAccessories()->create();
|
||
|
|
||
|
$this->actingAs($userForCompanyB)
|
||
|
->get(route('accessories.edit', $accessoryForCompanyA->id))
|
||
|
->assertRedirect(route('accessories.index'));
|
||
|
}
|
||
|
|
||
|
public function testCannotSetQuantityToAmountLowerThanWhatIsCheckedOut()
|
||
|
{
|
||
|
$accessory = Accessory::factory()->create(['qty' => 2]);
|
||
|
$accessory->checkouts()->create(['assigned_to' => User::factory()->create()->id, 'qty' => 1]);
|
||
|
$accessory->checkouts()->create(['assigned_to' => User::factory()->create()->id, 'qty' => 1]);
|
||
|
|
||
|
$this->assertEquals(2, $accessory->checkouts->count());
|
||
|
|
||
|
$this->actingAs(User::factory()->editAccessories()->create())
|
||
|
->put(route('accessories.update', $accessory), [
|
||
|
'redirect_option' => 'index',
|
||
|
'company_id' => (string) $accessory->company_id,
|
||
|
'name' => $accessory->name,
|
||
|
'category_id' => (string) $accessory->category_id,
|
||
|
'supplier_id' => (string) $accessory->supplier_id,
|
||
|
'manufacturer_id' => (string) $accessory->manufacturer_id,
|
||
|
'location_id' => (string) $accessory->location_id,
|
||
|
'model_number' => $accessory->model_number,
|
||
|
'order_number' => $accessory->order_number,
|
||
|
'purchase_date' => $accessory->purchase_date,
|
||
|
'purchase_cost' => $accessory->purchase_cost,
|
||
|
'min_amt' => $accessory->min_amt,
|
||
|
'notes' => $accessory->notes,
|
||
|
// the important part...
|
||
|
// try to lower the qty to 1 when there are 2 checked out
|
||
|
'qty' => '1',
|
||
|
]);
|
||
|
}
|
||
|
|
||
|
public function testCanUpdateAccessory()
|
||
|
{
|
||
|
[$companyA, $companyB] = Company::factory()->count(2)->create();
|
||
|
[$categoryA, $categoryB] = Category::factory()->count(2)->create();
|
||
|
[$supplierA, $supplierB] = Supplier::factory()->count(2)->create();
|
||
|
[$manufacturerA, $manufacturerB] = Manufacturer::factory()->count(2)->create();
|
||
|
[$locationA, $locationB] = Location::factory()->count(2)->create();
|
||
|
|
||
|
$accessory = Accessory::factory()
|
||
|
->for($companyA)
|
||
|
->for($categoryA)
|
||
|
->for($supplierA)
|
||
|
->for($manufacturerA)
|
||
|
->for($locationA)
|
||
|
->create([
|
||
|
'min_amt' => 1,
|
||
|
'qty' => 5
|
||
|
]);
|
||
|
|
||
|
$this->actingAs(User::factory()->editAccessories()->create())
|
||
|
->put(route('accessories.update', $accessory), [
|
||
|
'redirect_option' => 'index',
|
||
|
'company_id' => (string) $companyB->id,
|
||
|
'name' => 'Changed Name',
|
||
|
'category_id' => (string) $categoryB->id,
|
||
|
'supplier_id' => (string) $supplierB->id,
|
||
|
'manufacturer_id' => (string) $manufacturerB->id,
|
||
|
'location_id' => (string) $locationB->id,
|
||
|
'model_number' => 'changed 1234',
|
||
|
'order_number' => 'changed 5678',
|
||
|
'purchase_date' => '2024-10-11',
|
||
|
'purchase_cost' => '83.52',
|
||
|
'qty' => '7',
|
||
|
'min_amt' => '10',
|
||
|
'notes' => 'A new note',
|
||
|
])
|
||
|
->assertRedirect(route('accessories.index'));
|
||
|
|
||
|
$this->assertDatabaseHas('accessories', [
|
||
|
'company_id' => $companyB->id,
|
||
|
'name' => 'Changed Name',
|
||
|
'category_id' => $categoryB->id,
|
||
|
'supplier_id' => $supplierB->id,
|
||
|
'manufacturer_id' => $manufacturerB->id,
|
||
|
'location_id' => $locationB->id,
|
||
|
'model_number' => 'changed 1234',
|
||
|
'order_number' => 'changed 5678',
|
||
|
'purchase_date' => '2024-10-11',
|
||
|
'purchase_cost' => '83.52',
|
||
|
'qty' => '7',
|
||
|
'min_amt' => '10',
|
||
|
'notes' => 'A new note',
|
||
|
]);
|
||
|
}
|
||
|
}
|