Implements the Settings foundation workspace controls. Includes: - Settings foundation UI/controls scoped to workspace context - Related onboarding/consent flow adjustments as included in branch history Testing: - `vendor/bin/sail artisan test --compact --no-ansi --filter=SettingsFoundation` Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de> Reviewed-on: #119
44 lines
1.3 KiB
PHP
44 lines
1.3 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use App\Models\AuditLog;
|
|
use App\Models\Tenant;
|
|
use App\Models\TenantSetting;
|
|
use App\Models\User;
|
|
use App\Models\Workspace;
|
|
use App\Models\WorkspaceMembership;
|
|
use App\Services\Settings\SettingsWriter;
|
|
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
|
|
|
|
it('rejects tenant override writes when tenant does not belong to the provided workspace', function (): void {
|
|
$workspaceA = Workspace::factory()->create();
|
|
$workspaceB = Workspace::factory()->create();
|
|
|
|
$tenantInWorkspaceB = Tenant::factory()->create([
|
|
'workspace_id' => (int) $workspaceB->getKey(),
|
|
]);
|
|
|
|
$user = User::factory()->create();
|
|
|
|
WorkspaceMembership::factory()->create([
|
|
'workspace_id' => (int) $workspaceA->getKey(),
|
|
'user_id' => (int) $user->getKey(),
|
|
'role' => 'manager',
|
|
]);
|
|
|
|
$writer = app(SettingsWriter::class);
|
|
|
|
expect(fn () => $writer->updateTenantSetting(
|
|
actor: $user,
|
|
workspace: $workspaceA,
|
|
tenant: $tenantInWorkspaceB,
|
|
domain: 'backup',
|
|
key: 'retention_keep_last_default',
|
|
value: 7,
|
|
))->toThrow(NotFoundHttpException::class);
|
|
|
|
expect(TenantSetting::query()->count())->toBe(0);
|
|
expect(AuditLog::query()->count())->toBe(0);
|
|
});
|