presseportale/tests/Feature/PressReleaseIndexPhase8bTest.php
Kevin Adametz a000238ca8 User Panel: Phase-8-Abschluss, Titelbild/Lizenzen/Zeitzonen und KI-Pruef-Pipeline
Phase 8 (Rest) + Umbauten vom 10./11.06.:
- Ein Titelbild pro PM (Cover 1280x580), SVG-Platzhalter-Set + Picker,
  PressReleaseCoverImage-Resolver
- Lizenz-/Rechteformular nach "Lizenztyp Bildupload" (7 Lizenztypen,
  Personen-/Sachrechte-Status, bedingte Pflichtfelder, Risikohinweise)
- Veroeffentlichungs-Box vereinfacht (Embargo aus der Form-UI entfernt),
  geplante Termine in Europe/Berlin (Speicherung UTC, DISPLAY_TIMEZONE)
- Quota-Stub (users.press_release_quota) + monatlicher Reset-Command
- Einreichungs-Modal einheitlich in Show/Create/Edit; Ghost-Buttons auf
  filled; PM-Editor-Layout responsive entkoppelt (.pr-editor-layout)

KI-Pruef-Pipeline (Phasen 1-5 des Entwicklungsplans):
- API-Haertung: status nicht mehr per API setzbar, eigene Submit-Route
  durch denselben Funnel (Blacklist, Quota, Status-Log)
- Klassifikation Rot/Gelb/Gruen asynchron (Queue classification,
  OpenAI-Treiber + deterministischer Fallback), ki_audits-Audit-Log
- Routing: Rot -> rejected + Mail, Gelb -> Review-Queue, Gruen ->
  Auto-Publish; Scheduler publiziert nur gruene faellige PMs
- Content-Score 0-100 -> Stufe (Standard/Geprueft/Hochwertig) inkl.
  Editor-Panel und Badges; Re-Klassifikation/-Score bei Aenderung
- Admin: KI-Badge + Filter, On-Demand-Pruefung mit Anbieter-Override

Suite: 442 passed, 4 skipped.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-06-12 08:30:13 +00:00

207 lines
6.5 KiB
PHP

<?php
use App\Enums\PressReleaseClassification;
use App\Enums\PressReleaseContentTier;
use App\Enums\PressReleaseStatus;
use App\Models\Company;
use App\Models\PressRelease;
use App\Models\User;
use Database\Seeders\RolesAndPermissionsSeeder;
use Livewire\Volt\Volt as LivewireVolt;
use Tests\TestCase;
beforeEach(function (): void {
/** @var TestCase $this */
$this->seed(RolesAndPermissionsSeeder::class);
});
function makeCustomerForIndexPhase8b(): User
{
$customer = User::factory()->create(['is_active' => true]);
$customer->assignRole('customer');
return $customer;
}
function makeAdminForIndexPhase8b(): User
{
$admin = User::factory()->create(['is_active' => true]);
$admin->assignRole('admin');
return $admin;
}
test('customer list zeigt Scheduling-Sub-Zeile bei review-PMs mit scheduled_at', function () {
/** @var TestCase $this */
$customer = makeCustomerForIndexPhase8b();
$this->actingAs($customer);
$company = Company::factory()->presseecho()->create();
$customer->companies()->attach($company->id, ['role' => 'owner']);
PressRelease::factory()->create([
'user_id' => $customer->id,
'company_id' => $company->id,
'portal' => $company->portal->value,
'status' => PressReleaseStatus::Review->value,
'scheduled_at' => now()->addDays(3)->setTime(14, 30),
]);
LivewireVolt::test('customer.press-releases.index')
->assertSee('geplant');
});
test('customer list zeigt Embargo-Sub-Zeile bei PMs mit embargo_at in der Zukunft', function () {
/** @var TestCase $this */
$customer = makeCustomerForIndexPhase8b();
$this->actingAs($customer);
$company = Company::factory()->presseecho()->create();
$customer->companies()->attach($company->id, ['role' => 'owner']);
PressRelease::factory()->create([
'user_id' => $customer->id,
'company_id' => $company->id,
'portal' => $company->portal->value,
'status' => PressReleaseStatus::Published->value,
'embargo_at' => now()->addDays(7),
]);
LivewireVolt::test('customer.press-releases.index')
->assertSee('Embargo bis');
});
test('customer list zeigt KEINE Scheduling-Sub-Zeile wenn scheduled_at in der Vergangenheit', function () {
/** @var TestCase $this */
$customer = makeCustomerForIndexPhase8b();
$this->actingAs($customer);
$company = Company::factory()->presseecho()->create();
$customer->companies()->attach($company->id, ['role' => 'owner']);
PressRelease::factory()->create([
'user_id' => $customer->id,
'company_id' => $company->id,
'portal' => $company->portal->value,
'status' => PressReleaseStatus::Published->value,
'scheduled_at' => now()->subDay(),
]);
LivewireVolt::test('customer.press-releases.index')
->assertDontSee('geplant ·');
});
test('customer list zeigt KEINE Embargo-Sub-Zeile wenn embargo_at abgelaufen', function () {
/** @var TestCase $this */
$customer = makeCustomerForIndexPhase8b();
$this->actingAs($customer);
$company = Company::factory()->presseecho()->create();
$customer->companies()->attach($company->id, ['role' => 'owner']);
PressRelease::factory()->create([
'user_id' => $customer->id,
'company_id' => $company->id,
'portal' => $company->portal->value,
'status' => PressReleaseStatus::Published->value,
'embargo_at' => now()->subDay(),
]);
LivewireVolt::test('customer.press-releases.index')
->assertDontSee('Embargo bis');
});
test('admin list zeigt Scheduling-Sub-Zeile bei review-PMs mit scheduled_at', function () {
/** @var TestCase $this */
$admin = makeAdminForIndexPhase8b();
$this->actingAs($admin);
PressRelease::factory()->create([
'status' => PressReleaseStatus::Review->value,
'scheduled_at' => now()->addDays(2)->setTime(10, 0),
]);
LivewireVolt::test('admin.press-releases.index')
->assertSee('geplant');
});
test('admin list zeigt Embargo-Sub-Zeile bei PMs mit embargo_at in der Zukunft', function () {
/** @var TestCase $this */
$admin = makeAdminForIndexPhase8b();
$this->actingAs($admin);
PressRelease::factory()->create([
'status' => PressReleaseStatus::Published->value,
'embargo_at' => now()->addDays(5),
]);
LivewireVolt::test('admin.press-releases.index')
->assertSee('Embargo bis');
});
test('admin list zeigt KEINE Sub-Zeilen wenn weder scheduled_at noch embargo_at', function () {
/** @var TestCase $this */
$admin = makeAdminForIndexPhase8b();
$this->actingAs($admin);
PressRelease::factory()->create([
'status' => PressReleaseStatus::Draft->value,
'scheduled_at' => null,
'embargo_at' => null,
]);
LivewireVolt::test('admin.press-releases.index')
->assertDontSee('geplant ·')
->assertDontSee('Embargo bis');
});
test('admin list zeigt Content-Score-Stufe', function () {
/** @var TestCase $this */
$admin = makeAdminForIndexPhase8b();
$this->actingAs($admin);
PressRelease::factory()->create([
'status' => PressReleaseStatus::Published->value,
'content_score' => 84,
'content_tier' => PressReleaseContentTier::Hochwertig->value,
]);
LivewireVolt::test('admin.press-releases.index')
->assertSee('84 · Hochwertig');
});
test('admin list zeigt KI-Klassifikations-Badge', function () {
/** @var TestCase $this */
$admin = makeAdminForIndexPhase8b();
$this->actingAs($admin);
PressRelease::factory()->create([
'status' => PressReleaseStatus::Review->value,
'classification' => PressReleaseClassification::Yellow->value,
]);
LivewireVolt::test('admin.press-releases.index')
->assertSee('KI: Gelb');
});
test('admin list filtert nach KI-Klassifikation', function () {
/** @var TestCase $this */
$admin = makeAdminForIndexPhase8b();
$this->actingAs($admin);
$yellow = PressRelease::factory()->create([
'status' => PressReleaseStatus::Review->value,
'classification' => PressReleaseClassification::Yellow->value,
'title' => 'Gelber Grenzfall',
]);
$green = PressRelease::factory()->create([
'status' => PressReleaseStatus::Review->value,
'classification' => PressReleaseClassification::Green->value,
'title' => 'Grüne Mitteilung',
]);
LivewireVolt::test('admin.press-releases.index')
->set('classificationFilter', PressReleaseClassification::Yellow->value)
->assertSee('Gelber Grenzfall')
->assertDontSee('Grüne Mitteilung');
});