feat: site subscriptions export require download=1 safety valve

This commit is contained in:
萝卜
2026-03-13 22:52:55 +00:00
parent 1f832477c0
commit f37ff15e0d
4 changed files with 40 additions and 1 deletions

View File

@@ -0,0 +1,33 @@
<?php
namespace Tests\Feature;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class AdminSiteSubscriptionExportDownloadSafetyValveTest extends TestCase
{
use RefreshDatabase;
protected function loginAsPlatformAdmin(): void
{
$this->seed();
$this->post('/admin/login', [
'email' => 'platform.admin@demo.local',
'password' => 'Platform@123456',
])->assertRedirect('/admin');
}
public function test_export_should_require_download_flag(): void
{
$this->loginAsPlatformAdmin();
$this->get('/admin/site-subscriptions/export')
->assertStatus(400)
->assertSee('download=1 required');
$this->get('/admin/site-subscriptions/export?download=1')
->assertOk();
}
}

View File

@@ -53,7 +53,7 @@ class AdminSiteSubscriptionExportTest extends TestCase
'activated_at' => now()->subDays(1),
]);
$res = $this->get('/admin/site-subscriptions/export');
$res = $this->get('/admin/site-subscriptions/export?download=1');
$res->assertOk();
$res->assertHeader('content-type', 'text/csv; charset=UTF-8');