41 lines
1.2 KiB
PHP
41 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace Tests\Feature;
|
|
|
|
use Illuminate\Foundation\Testing\RefreshDatabase;
|
|
use Tests\TestCase;
|
|
|
|
class AdminSiteSubscriptionIndexSummaryCardsAreClickableTest 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_summary_cards_should_link_to_filtered_sets(): void
|
|
{
|
|
$this->loginAsPlatformAdmin();
|
|
|
|
$this->get('/admin/site-subscriptions')
|
|
->assertOk()
|
|
->assertSee('订阅总数')
|
|
->assertSee('已生效')
|
|
->assertSee('待生效')
|
|
->assertSee('已取消')
|
|
->assertSee('已过期(按到期时间)')
|
|
->assertSee('7天内到期')
|
|
->assertSee('status=activated', false)
|
|
->assertSee('status=pending', false)
|
|
->assertSee('status=cancelled', false)
|
|
->assertSee('expiry=expired', false)
|
|
->assertSee('expiry=expiring_7d', false);
|
|
}
|
|
}
|