feat(subscriptions): add cross links between expiry summary cards

This commit is contained in:
萝卜
2026-03-14 22:18:23 +00:00
parent bdc40d3480
commit 8c04a8fef8
2 changed files with 41 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
<?php
namespace Tests\Feature;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class AdminSiteSubscriptionExpiryCardsCrossLinksTest 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_expiry_summary_cards_should_have_cross_links(): void
{
$this->loginAsPlatformAdmin();
$this->get('/admin/site-subscriptions')
->assertOk()
->assertSee('已过期(按到期时间)')
->assertSee('7天内到期')
->assertSee('查看7天内到期')
->assertSee('查看已过期')
->assertSee('expiry=expiring_7d', false)
->assertSee('expiry=expired', false);
}
}