## Summary - replace the legacy Tenant and TenantMembership core models with ManagedEnvironment and ManagedEnvironmentMembership - propagate the managed environment naming and key changes across Filament resources, pages, controllers, jobs, models, and supporting runtime paths - add feature 279 spec artifacts and focused managed-environment test coverage for model behavior, route binding, panel context, authorization, and legacy guardrails ## Validation - `cd apps/platform && ./vendor/bin/sail artisan test --compact tests/Feature/ManagedEnvironment/LegacyTenantCoreGuardTest.php tests/Feature/ManagedEnvironment/ManagedEnvironmentAuthorizationTest.php tests/Feature/ManagedEnvironment/ManagedEnvironmentPanelContextTest.php tests/Feature/ManagedEnvironment/ManagedEnvironmentRouteBindingTest.php tests/Unit/ManagedEnvironment/ManagedEnvironmentContextResolverTest.php tests/Unit/ManagedEnvironment/ManagedEnvironmentModelTest.php` - `cd apps/platform && ./vendor/bin/sail bin pint --dirty --format agent` ## Notes - branch pushed from commit `1123b122` - browser smoke test file was added but not run in this pass Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de> Reviewed-on: #335
62 lines
1.9 KiB
PHP
62 lines
1.9 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Tests\Feature\Findings\Concerns;
|
|
|
|
use App\Models\AuditLog;
|
|
use App\Models\Finding;
|
|
use App\Models\ManagedEnvironment;
|
|
use App\Models\User;
|
|
use App\Support\Audit\AuditActionId;
|
|
use Filament\Facades\Filament;
|
|
|
|
trait InteractsWithFindingsWorkflow
|
|
{
|
|
/**
|
|
* @return array{0: User, 1: ManagedEnvironment}
|
|
*/
|
|
protected function actingAsFindingOperator(string $role = 'owner'): array
|
|
{
|
|
[$user, $tenant] = createUserWithTenant(role: $role);
|
|
|
|
$this->actingAs($user);
|
|
Filament::setTenant($tenant, true);
|
|
|
|
return [$user, $tenant];
|
|
}
|
|
|
|
/**
|
|
* @param array<string, mixed> $attributes
|
|
*/
|
|
protected function makeFindingForWorkflow(ManagedEnvironment $tenant, string $status = Finding::STATUS_NEW, array $attributes = []): Finding
|
|
{
|
|
$factory = Finding::factory()->for($tenant);
|
|
|
|
$factory = match ($status) {
|
|
Finding::STATUS_TRIAGED => $factory->triaged(),
|
|
Finding::STATUS_IN_PROGRESS => $factory->inProgress(),
|
|
Finding::STATUS_REOPENED => $factory->reopened(),
|
|
Finding::STATUS_RESOLVED => $factory->resolved(),
|
|
Finding::STATUS_CLOSED => $factory->closed(),
|
|
Finding::STATUS_RISK_ACCEPTED => $factory->riskAccepted(),
|
|
default => $factory,
|
|
};
|
|
|
|
return $factory->create($attributes);
|
|
}
|
|
|
|
protected function latestFindingAudit(Finding $finding, string|AuditActionId $action): ?AuditLog
|
|
{
|
|
$actionValue = $action instanceof AuditActionId ? $action->value : $action;
|
|
|
|
return AuditLog::query()
|
|
->where('managed_environment_id', (int) $finding->managed_environment_id)
|
|
->where('resource_type', 'finding')
|
|
->where('resource_id', (string) $finding->getKey())
|
|
->where('action', $actionValue)
|
|
->latest('id')
|
|
->first();
|
|
}
|
|
}
|