feat: plans export require download=1 safety valve
This commit is contained in:
33
tests/Feature/AdminPlanExportDownloadSafetyValveTest.php
Normal file
33
tests/Feature/AdminPlanExportDownloadSafetyValveTest.php
Normal file
@@ -0,0 +1,33 @@
|
||||
<?php
|
||||
|
||||
namespace Tests\Feature;
|
||||
|
||||
use Illuminate\Foundation\Testing\RefreshDatabase;
|
||||
use Tests\TestCase;
|
||||
|
||||
class AdminPlanExportDownloadSafetyValveTest 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/plans/export')
|
||||
->assertStatus(400)
|
||||
->assertSee('download=1 required');
|
||||
|
||||
$this->get('/admin/plans/export?download=1')
|
||||
->assertOk();
|
||||
}
|
||||
}
|
||||
@@ -36,7 +36,7 @@ class AdminPlanExportTest extends TestCase
|
||||
'description' => '用于导出断言',
|
||||
]);
|
||||
|
||||
$res = $this->get('/admin/plans/export');
|
||||
$res = $this->get('/admin/plans/export?download=1');
|
||||
|
||||
$res->assertOk();
|
||||
$res->assertHeader('content-type', 'text/csv; charset=UTF-8');
|
||||
|
||||
Reference in New Issue
Block a user