test(stock): cover aggregate reservation lifecycle

This commit is contained in:
2026-08-25 15:05:29 -03:00
parent bbfdf8f342
commit d9f374c718
3 changed files with 45 additions and 139 deletions

View File

@@ -14,9 +14,7 @@ use Tests\TestCase;
class ExpireStockReservationsServiceTest extends TestCase
{
use RefreshDatabase;
public function test_it_expires_an_orphan_reservation_and_releases_its_inventory(): void
public function test_it_expires_purchases_before_abandoned_cart_reservations(): void
{
$inventory = Inventory::query()->create([
'real_stock' => 10,
@@ -33,13 +31,31 @@ class ExpireStockReservationsServiceTest extends TestCase
'tracks_inventory' => true,
]);
$result = app(ExpireStockReservationsService::class)->expireOverdue();
$carts = \Mockery::mock(ExpireCartReservationsService::class);
$carts->shouldReceive('expireOverdue')
->once()
->ordered()
->andReturn(3);
$logger = \Mockery::mock(LoggerInterface::class);
Log::shouldReceive('channel')
->once()
->with('commands')
->andReturn($logger);
$logger->shouldReceive('info')
->once()
->with('Stock reservation cleanup completed.', [
'command' => 'reservations:expire',
'expired_purchases' => 2,
'expired_cart_reservations' => 3,
'total_expired' => 5,
]);
$result = (new ExpireStockReservationsService($checkout, $carts))->expireOverdue();
$this->assertSame([
'purchases' => 0,
'cart_reservations' => 0,
'orphan_reservations' => 1,
'failed' => 0,
'purchases' => 2,
'cart_reservations' => 3,
], $result);
$this->assertDatabaseHas('stock_reservations', [
'id' => $reservation->id,
@@ -71,12 +87,19 @@ class ExpireStockReservationsServiceTest extends TestCase
throw new RuntimeException('Broken reservation.');
}
$reservation->update([
'status' => StockReservation::STATUS_EXPIRED,
'expires_at' => null,
'expired_at' => now(),
]);
});
$logger = \Mockery::mock(LoggerInterface::class);
Log::shouldReceive('channel')
->once()
->with('commands')
->andReturn($logger);
$logger->shouldReceive('error')
->once()
->with('Stock reservation cleanup failed.', [
'command' => 'reservations:expire',
'expired_purchases' => 2,
'expired_cart_reservations' => null,
'exception' => $exception,
]);
$service = new ExpireStockReservationsService(
\Mockery::mock(ReleaseCheckoutService::class),