mirror of
https://github.com/archtechx/tenancy.git
synced 2026-02-05 00:34:04 +00:00
Test that the context is central after jobs get processed
This commit is contained in:
parent
bd9bbe8b41
commit
d5d2c2475e
1 changed files with 11 additions and 12 deletions
|
|
@ -86,7 +86,7 @@ test('tenant id is not passed to central queues', function () {
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
test('tenancy is initialized inside queues', function (bool $shouldEndTenancy) {
|
test('tenancy is initialized inside queues', function () {
|
||||||
withTenantDatabases();
|
withTenantDatabases();
|
||||||
withFailedJobs();
|
withFailedJobs();
|
||||||
|
|
||||||
|
|
@ -104,12 +104,11 @@ test('tenancy is initialized inside queues', function (bool $shouldEndTenancy) {
|
||||||
|
|
||||||
expect(pest()->valuestore->has('tenant_id'))->toBeFalse();
|
expect(pest()->valuestore->has('tenant_id'))->toBeFalse();
|
||||||
|
|
||||||
if ($shouldEndTenancy) {
|
|
||||||
tenancy()->end();
|
|
||||||
}
|
|
||||||
|
|
||||||
pest()->artisan('queue:work --once');
|
pest()->artisan('queue:work --once');
|
||||||
|
|
||||||
|
// Tenancy should not be initialized after the jobs get processed
|
||||||
|
expect(tenancy()->initialized)->toBeFalse();
|
||||||
|
|
||||||
expect(DB::connection('central')->table('failed_jobs')->count())->toBe(0);
|
expect(DB::connection('central')->table('failed_jobs')->count())->toBe(0);
|
||||||
|
|
||||||
expect(pest()->valuestore->get('tenant_id'))->toBe('The current tenant id is: ' . $tenant->id);
|
expect(pest()->valuestore->get('tenant_id'))->toBe('The current tenant id is: ' . $tenant->id);
|
||||||
|
|
@ -117,9 +116,9 @@ test('tenancy is initialized inside queues', function (bool $shouldEndTenancy) {
|
||||||
$tenant->run(function () use ($user) {
|
$tenant->run(function () use ($user) {
|
||||||
expect($user->fresh()->name)->toBe('Bar');
|
expect($user->fresh()->name)->toBe('Bar');
|
||||||
});
|
});
|
||||||
})->with([true, false]);;
|
});
|
||||||
|
|
||||||
test('tenancy is initialized when retrying jobs', function (bool $shouldEndTenancy) {
|
test('tenancy is initialized when retrying jobs', function () {
|
||||||
withFailedJobs();
|
withFailedJobs();
|
||||||
withTenantDatabases();
|
withTenantDatabases();
|
||||||
|
|
||||||
|
|
@ -138,18 +137,18 @@ test('tenancy is initialized when retrying jobs', function (bool $shouldEndTenan
|
||||||
|
|
||||||
expect(pest()->valuestore->has('tenant_id'))->toBeFalse();
|
expect(pest()->valuestore->has('tenant_id'))->toBeFalse();
|
||||||
|
|
||||||
if ($shouldEndTenancy) {
|
|
||||||
tenancy()->end();
|
|
||||||
}
|
|
||||||
|
|
||||||
pest()->artisan('queue:work --once');
|
pest()->artisan('queue:work --once');
|
||||||
|
|
||||||
|
expect(tenancy()->initialized)->toBeFalse();
|
||||||
|
|
||||||
expect(DB::connection('central')->table('failed_jobs')->count())->toBe(1);
|
expect(DB::connection('central')->table('failed_jobs')->count())->toBe(1);
|
||||||
expect(pest()->valuestore->get('tenant_id'))->toBeNull(); // job failed
|
expect(pest()->valuestore->get('tenant_id'))->toBeNull(); // job failed
|
||||||
|
|
||||||
pest()->artisan('queue:retry all');
|
pest()->artisan('queue:retry all');
|
||||||
pest()->artisan('queue:work --once');
|
pest()->artisan('queue:work --once');
|
||||||
|
|
||||||
|
expect(tenancy()->initialized)->toBeFalse();
|
||||||
|
|
||||||
expect(DB::connection('central')->table('failed_jobs')->count())->toBe(0);
|
expect(DB::connection('central')->table('failed_jobs')->count())->toBe(0);
|
||||||
|
|
||||||
expect(pest()->valuestore->get('tenant_id'))->toBe('The current tenant id is: ' . $tenant->id); // job succeeded
|
expect(pest()->valuestore->get('tenant_id'))->toBe('The current tenant id is: ' . $tenant->id); // job succeeded
|
||||||
|
|
@ -157,7 +156,7 @@ test('tenancy is initialized when retrying jobs', function (bool $shouldEndTenan
|
||||||
$tenant->run(function () use ($user) {
|
$tenant->run(function () use ($user) {
|
||||||
expect($user->fresh()->name)->toBe('Bar');
|
expect($user->fresh()->name)->toBe('Bar');
|
||||||
});
|
});
|
||||||
})->with([true, false]);
|
});
|
||||||
|
|
||||||
test('the tenant used by the job doesnt change when the current tenant changes', function () {
|
test('the tenant used by the job doesnt change when the current tenant changes', function () {
|
||||||
withTenantDatabases();
|
withTenantDatabases();
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue