268 lines
9.2 KiB
PHP
268 lines
9.2 KiB
PHP
<?php
|
|
|
|
namespace Tests\Feature\CheckoutAcceptances\Ui;
|
|
|
|
use App\Models\Accessory;
|
|
use App\Models\AccessoryCheckout;
|
|
use App\Models\CheckoutAcceptance;
|
|
use App\Models\User;
|
|
use App\Notifications\AcceptanceItemAcceptedNotification;
|
|
use App\Notifications\AcceptanceItemDeclinedNotification;
|
|
use Illuminate\Support\Facades\Notification;
|
|
use Tests\TestCase;
|
|
|
|
class AccessoryAcceptanceTest extends TestCase
|
|
{
|
|
public function test_can_accept_accessory_checkout()
|
|
{
|
|
$assignee = User::factory()->create();
|
|
$accessory = Accessory::factory()->create();
|
|
|
|
$checkoutAcceptance = CheckoutAcceptance::factory()
|
|
->pending()
|
|
->for($assignee, 'assignedTo')
|
|
->for($accessory, 'checkoutable')
|
|
->create(['qty' => 2]);
|
|
|
|
$this->actingAs($assignee)
|
|
->post(route('account.store-acceptance', $checkoutAcceptance), [
|
|
'asset_acceptance' => 'accepted',
|
|
'note' => 'A note here',
|
|
])
|
|
->assertRedirect();
|
|
|
|
$this->assertNotNull($checkoutAcceptance->refresh()->accepted_at);
|
|
$this->assertEquals('A note here', $checkoutAcceptance->note);
|
|
|
|
$assignee->accessories->contains($accessory);
|
|
|
|
$this->assertDatabaseHas('action_logs', [
|
|
'action_type' => 'accepted',
|
|
'target_id' => $assignee->id,
|
|
'target_type' => User::class,
|
|
'item_id' => $accessory->id,
|
|
'item_type' => Accessory::class,
|
|
'quantity' => 2,
|
|
]);
|
|
}
|
|
|
|
public function test_can_decline_accessory_checkout()
|
|
{
|
|
$assignee = User::factory()->create();
|
|
$accessory = Accessory::factory()->create();
|
|
|
|
$checkoutAcceptance = CheckoutAcceptance::factory()
|
|
->pending()
|
|
->for($assignee, 'assignedTo')
|
|
->for($accessory, 'checkoutable')
|
|
->create(['qty' => 2]);
|
|
|
|
$this->actingAs($assignee)
|
|
->post(route('account.store-acceptance', $checkoutAcceptance), [
|
|
'asset_acceptance' => 'declined',
|
|
'note' => 'A note here',
|
|
])
|
|
->assertRedirect();
|
|
|
|
$this->assertNotNull($checkoutAcceptance->refresh()->declined_at);
|
|
$this->assertEquals('A note here', $checkoutAcceptance->note);
|
|
|
|
$assignee->accessories->doesntContain($accessory);
|
|
|
|
$this->assertDatabaseHas('action_logs', [
|
|
'action_type' => 'declined',
|
|
'target_id' => $assignee->id,
|
|
'target_type' => User::class,
|
|
'item_id' => $accessory->id,
|
|
'item_type' => Accessory::class,
|
|
'quantity' => 2,
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* This can be absorbed into a bigger test
|
|
*/
|
|
public function test_users_name_is_included_in_accessory_accepted_notification()
|
|
{
|
|
Notification::fake();
|
|
|
|
$this->settings->enableAlertEmail();
|
|
|
|
$acceptance = CheckoutAcceptance::factory()
|
|
->pending()
|
|
->for(Accessory::factory()->appleMouse(), 'checkoutable')
|
|
->create();
|
|
|
|
$this->actingAs($acceptance->assignedTo)
|
|
->post(route('account.store-acceptance', $acceptance), ['asset_acceptance' => 'accepted'])
|
|
->assertSessionHasNoErrors();
|
|
|
|
$this->assertNotNull($acceptance->fresh()->accepted_at);
|
|
|
|
Notification::assertSentTo(
|
|
$acceptance,
|
|
function (AcceptanceItemAcceptedNotification $notification) use ($acceptance) {
|
|
$this->assertStringContainsString(
|
|
$acceptance->assignedTo->present()->fullName,
|
|
$notification->toMail()->render()
|
|
);
|
|
|
|
return true;
|
|
}
|
|
);
|
|
}
|
|
|
|
/**
|
|
* This can be absorbed into a bigger test
|
|
*/
|
|
public function test_users_name_is_included_in_accessory_declined_notification()
|
|
{
|
|
Notification::fake();
|
|
|
|
$this->settings->enableAlertEmail();
|
|
|
|
$acceptance = CheckoutAcceptance::factory()
|
|
->pending()
|
|
->for(Accessory::factory()->appleMouse(), 'checkoutable')
|
|
->create();
|
|
|
|
$this->actingAs($acceptance->assignedTo)
|
|
->post(route('account.store-acceptance', $acceptance), ['asset_acceptance' => 'declined'])
|
|
->assertSessionHasNoErrors();
|
|
|
|
$this->assertNotNull($acceptance->fresh()->declined_at);
|
|
|
|
Notification::assertSentTo(
|
|
$acceptance,
|
|
function (AcceptanceItemDeclinedNotification $notification) use ($acceptance) {
|
|
$this->assertStringContainsString(
|
|
$acceptance->assignedTo->present()->fullName,
|
|
$notification->toMail($acceptance)->render()
|
|
);
|
|
|
|
return true;
|
|
}
|
|
);
|
|
}
|
|
|
|
public function test_user_is_not_able_to_accept_an_asset_assigned_to_a_different_user()
|
|
{
|
|
Notification::fake();
|
|
|
|
$assignee = User::factory()->create();
|
|
$otherUser = User::factory()->create();
|
|
|
|
$accessory = Accessory::factory()->create();
|
|
|
|
$acceptance = CheckoutAcceptance::factory()
|
|
->pending()
|
|
->for($assignee, 'assignedTo')
|
|
->for($accessory, 'checkoutable')
|
|
->create();
|
|
|
|
$this->actingAs($otherUser)
|
|
->post(route('account.store-acceptance', $acceptance), ['asset_acceptance' => 'accepted'])
|
|
->assertSessionHas(['error' => trans('admin/users/message.error.incorrect_user_accepted')]);
|
|
|
|
$this->assertNull($acceptance->fresh()->accepted_at);
|
|
}
|
|
|
|
/**
|
|
* @link https://github.com/grokability/snipe-it/issues/17589
|
|
*/
|
|
public function test_all_accessory_checkout_entries_are_removed_when_user_declines_acceptance()
|
|
{
|
|
$assignee = User::factory()->create();
|
|
|
|
$this->actingAs(User::factory()->checkoutAccessories()->create());
|
|
|
|
// create accessory that requires acceptance
|
|
$accessory = Accessory::factory()->requiringAcceptance()->create(['qty' => 5]);
|
|
|
|
// checkout 3 accessories to the user
|
|
$this->post(route('accessories.checkout.store', $accessory), [
|
|
'assigned_user' => $assignee->id,
|
|
'checkout_qty' => 3,
|
|
]);
|
|
|
|
$originalAccessoryCheckoutCount = AccessoryCheckout::count();
|
|
|
|
// find the acceptance to be declined
|
|
$checkoutAcceptance = CheckoutAcceptance::query()
|
|
->where([
|
|
'assigned_to_id' => $assignee->id,
|
|
'qty' => 3,
|
|
])
|
|
->whereNull('accepted_at')
|
|
->whereNull('declined_at')
|
|
->whereHasMorph(
|
|
'checkoutable',
|
|
[Accessory::class],
|
|
)
|
|
->sole();
|
|
|
|
// decline the checkout
|
|
$this->actingAs($assignee)
|
|
->post(route('account.store-acceptance', $checkoutAcceptance), [
|
|
'asset_acceptance' => 'declined',
|
|
]);
|
|
|
|
$this->assertEquals($originalAccessoryCheckoutCount - 3, AccessoryCheckout::count());
|
|
}
|
|
|
|
public function test_admin_can_complete_sign_in_place_accessory_acceptance_and_is_redirected_to_selected_destination()
|
|
{
|
|
$assignee = User::factory()->create();
|
|
$admin = User::factory()->admin()->create();
|
|
$accessory = Accessory::factory()->create();
|
|
|
|
$checkoutAcceptance = CheckoutAcceptance::factory()
|
|
->pending()
|
|
->for($assignee, 'assignedTo')
|
|
->for($accessory, 'checkoutable')
|
|
->create();
|
|
|
|
$this->actingAs($admin)
|
|
->withSession([
|
|
'sign_in_place_acceptance_id' => $checkoutAcceptance->id,
|
|
'sign_in_place_item_id' => $accessory->id,
|
|
'sign_in_place_resource_type' => 'Accessories',
|
|
'redirect_option' => 'target',
|
|
'checkout_to_type' => 'user',
|
|
])
|
|
->post(route('account.store-acceptance', $checkoutAcceptance), [
|
|
'asset_acceptance' => 'accepted',
|
|
'note' => 'signed in person',
|
|
])
|
|
->assertRedirect(route('users.show', $assignee));
|
|
|
|
$this->assertNotNull($checkoutAcceptance->refresh()->accepted_at);
|
|
}
|
|
|
|
public function test_acceptance_create_page_shows_email_info_when_always_send_email_enabled()
|
|
{
|
|
$checkoutAcceptance = CheckoutAcceptance::factory()->pending()->create();
|
|
config(['app.always_send_email' => true]);
|
|
|
|
$response = $this->actingAs($checkoutAcceptance->assignedTo)
|
|
->get(route('account.accept.item', $checkoutAcceptance));
|
|
|
|
$response->assertOk();
|
|
$response->assertSee(trans('general.acceptance_email_always_sent'), false);
|
|
$response->assertDontSee(trans('mail.send_pdf_copy'), false);
|
|
}
|
|
|
|
public function test_acceptance_create_page_shows_checkbox_when_always_send_email_disabled()
|
|
{
|
|
$checkoutAcceptance = CheckoutAcceptance::factory()->pending()->create();
|
|
config(['app.always_send_email' => false]);
|
|
|
|
$response = $this->actingAs($checkoutAcceptance->assignedTo)
|
|
->get(route('account.accept.item', $checkoutAcceptance));
|
|
|
|
$response->assertOk();
|
|
$response->assertSee(trans('mail.send_pdf_copy'), false);
|
|
$response->assertDontSee(trans('general.acceptance_email_always_sent'), false);
|
|
}
|
|
}
|