62 lines
1.8 KiB
PHP
62 lines
1.8 KiB
PHP
<?php
|
|
|
|
use App\Models\Tenant;
|
|
use App\Models\User;
|
|
use App\Services\BulkOperationService;
|
|
use Illuminate\Foundation\Testing\RefreshDatabase;
|
|
|
|
uses(RefreshDatabase::class);
|
|
test('bulk operation service updates progress counters', function () {
|
|
$tenant = Tenant::factory()->create();
|
|
$user = User::factory()->create();
|
|
|
|
$service = app(BulkOperationService::class);
|
|
$run = $service->createRun($tenant, $user, 'policy', 'delete', [1, 2, 3], 3);
|
|
|
|
$service->start($run);
|
|
|
|
$service->recordSuccess($run);
|
|
$service->recordSkipped($run);
|
|
$service->recordFailure($run, '3', 'Test failure');
|
|
|
|
$run->refresh();
|
|
|
|
expect($run->status)->toBe('running')
|
|
->and($run->processed_items)->toBe(3)
|
|
->and($run->succeeded)->toBe(1)
|
|
->and($run->skipped)->toBe(1)
|
|
->and($run->failed)->toBe(1)
|
|
->and($run->failures)->toBeArray()
|
|
->and($run->failures)->toHaveCount(1);
|
|
});
|
|
|
|
test('bulk operation run total_items is at least the item_ids count', function () {
|
|
$tenant = Tenant::factory()->create();
|
|
$user = User::factory()->create();
|
|
|
|
$service = app(BulkOperationService::class);
|
|
$run = $service->createRun($tenant, $user, 'inventory', 'sync', ['a', 'b', 'c', 'd'], 1);
|
|
|
|
expect($run->total_items)->toBe(4);
|
|
});
|
|
|
|
test('bulk operation completion clamps total_items up to processed_items', function () {
|
|
$tenant = Tenant::factory()->create();
|
|
$user = User::factory()->create();
|
|
|
|
$service = app(BulkOperationService::class);
|
|
$run = $service->createRun($tenant, $user, 'inventory', 'sync', ['only-one'], 1);
|
|
|
|
$service->start($run);
|
|
$service->recordSuccess($run);
|
|
$service->recordSuccess($run);
|
|
|
|
$run->refresh();
|
|
expect($run->processed_items)->toBe(2)->and($run->total_items)->toBe(1);
|
|
|
|
$service->complete($run);
|
|
$run->refresh();
|
|
|
|
expect($run->total_items)->toBe(2);
|
|
});
|