mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-09 23:24:06 -08:00
Merge pull request #15469 from marcusmoore/accessory_tests
Added UI tests for creating accessories
This commit is contained in:
commit
6f44441a8b
16
tests/Feature/Accessories/Ui/AccessoriesIndexTest.php
Normal file
16
tests/Feature/Accessories/Ui/AccessoriesIndexTest.php
Normal file
|
@ -0,0 +1,16 @@
|
|||
<?php
|
||||
|
||||
namespace Tests\Feature\Accessories\Ui;
|
||||
|
||||
use App\Models\User;
|
||||
use Tests\TestCase;
|
||||
|
||||
class AccessoriesIndexTest extends TestCase
|
||||
{
|
||||
public function testPermissionRequiredToViewAccessoryList()
|
||||
{
|
||||
$this->actingAs(User::factory()->create())
|
||||
->get(route('accessories.index'))
|
||||
->assertForbidden();
|
||||
}
|
||||
}
|
82
tests/Feature/Accessories/Ui/CreateAccessoriesTest.php
Normal file
82
tests/Feature/Accessories/Ui/CreateAccessoriesTest.php
Normal file
|
@ -0,0 +1,82 @@
|
|||
<?php
|
||||
|
||||
namespace Tests\Feature\Accessories\Ui;
|
||||
|
||||
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 CreateAccessoriesTest extends TestCase
|
||||
{
|
||||
public function testRequiresPermissionToViewCreateAccessoryPage()
|
||||
{
|
||||
$this->actingAs(User::factory()->create())
|
||||
->get(route('accessories.create'))
|
||||
->assertForbidden();
|
||||
}
|
||||
|
||||
public function testCreateAccessoryPageRenders()
|
||||
{
|
||||
$this->actingAs(User::factory()->createAccessories()->create())
|
||||
->get(route('accessories.create'))
|
||||
->assertOk()
|
||||
->assertViewIs('accessories.edit');
|
||||
}
|
||||
|
||||
public function testRequiresPermissionToCreateAccessory()
|
||||
{
|
||||
$this->actingAs(User::factory()->create())
|
||||
->post(route('accessories.store'))
|
||||
->assertForbidden();
|
||||
}
|
||||
|
||||
public function testValidDataRequiredToCreateAccessory()
|
||||
{
|
||||
$this->actingAs(User::factory()->createAccessories()->create())
|
||||
->post(route('accessories.store'), [
|
||||
//
|
||||
])
|
||||
->assertSessionHasErrors([
|
||||
'name',
|
||||
'qty',
|
||||
'category_id',
|
||||
]);
|
||||
}
|
||||
|
||||
public function testCanCreateAccessory()
|
||||
{
|
||||
$category = Category::factory()->create();
|
||||
$company = Company::factory()->create();
|
||||
$location = Location::factory()->create();
|
||||
$manufacturer = Manufacturer::factory()->create();
|
||||
$supplier = Supplier::factory()->create();
|
||||
|
||||
$data = [
|
||||
'category_id' => $category->id,
|
||||
'company_id' => $company->id,
|
||||
'location_id' => $location->id,
|
||||
'manufacturer_id' => $manufacturer->id,
|
||||
'min_amt' => '1',
|
||||
'model_number' => '12345',
|
||||
'name' => 'My Accessory Name',
|
||||
'notes' => 'Some notes here',
|
||||
'order_number' => '9876',
|
||||
'purchase_cost' => '99.98',
|
||||
'purchase_date' => '2024-09-04',
|
||||
'qty' => '3',
|
||||
'supplier_id' => $supplier->id,
|
||||
];
|
||||
|
||||
$user = User::factory()->createAccessories()->create();
|
||||
|
||||
$this->actingAs($user)
|
||||
->post(route('accessories.store'), array_merge($data, ['redirect_option' => 'index']))
|
||||
->assertRedirect(route('accessories.index'));
|
||||
|
||||
$this->assertDatabaseHas('accessories', array_merge($data, ['user_id' => $user->id]));
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue