mirror of
https://github.com/snipe/snipe-it.git
synced 2024-12-25 05:34:06 -08:00
Reference the entry in the components_assets table
This commit is contained in:
parent
74e7b1cfa5
commit
3f8ac59f4c
|
@ -4,27 +4,35 @@ namespace Tests\Feature\Checkins\Ui;
|
|||
|
||||
use App\Models\Component;
|
||||
use App\Models\User;
|
||||
use Illuminate\Support\Facades\DB;
|
||||
use Tests\TestCase;
|
||||
|
||||
class ComponentCheckinTest extends TestCase
|
||||
{
|
||||
public function testCheckingInComponentRequiresCorrectPermission()
|
||||
{
|
||||
$component = Component::factory()->checkedOutToAsset()->create();
|
||||
|
||||
$componentAsset = DB::table('components_assets')->where('component_id', $component->id)->first();
|
||||
|
||||
$this->actingAs(User::factory()->create())
|
||||
->post(route('components.checkin.store', [
|
||||
'componentID' => Component::factory()->checkedOutToAsset()->create()->id,
|
||||
'componentID' => $componentAsset->id,
|
||||
]))
|
||||
->assertForbidden();
|
||||
}
|
||||
|
||||
|
||||
public function testComponentCheckinPagePostIsRedirectedIfRedirectSelectionIsIndex()
|
||||
{
|
||||
$component = Component::factory()->checkedOutToAsset()->create();
|
||||
|
||||
$componentAsset = DB::table('components_assets')->where('component_id', $component->id)->first();
|
||||
|
||||
$this->actingAs(User::factory()->admin()->create())
|
||||
->from(route('components.index'))
|
||||
->post(route('components.checkin.store', $component), [
|
||||
->post(route('components.checkin.store', [
|
||||
'componentID' => $componentAsset->id,
|
||||
]), [
|
||||
'redirect_option' => 'index',
|
||||
'checkin_qty' => 1,
|
||||
])
|
||||
|
@ -36,9 +44,13 @@ class ComponentCheckinTest extends TestCase
|
|||
{
|
||||
$component = Component::factory()->checkedOutToAsset()->create();
|
||||
|
||||
$componentAsset = DB::table('components_assets')->where('component_id', $component->id)->first();
|
||||
|
||||
$this->actingAs(User::factory()->admin()->create())
|
||||
->from(route('components.index'))
|
||||
->post(route('components.checkin.store', $component), [
|
||||
->post(route('components.checkin.store', [
|
||||
'componentID' => $componentAsset->id,
|
||||
]), [
|
||||
'redirect_option' => 'item',
|
||||
'checkin_qty' => 1,
|
||||
])
|
||||
|
@ -46,6 +58,4 @@ class ComponentCheckinTest extends TestCase
|
|||
->assertSessionHasNoErrors()
|
||||
->assertRedirect(route('components.show', ['component' => $component->id]));
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue