ui(governance): add go-syncable shortcut in batch activate blocked hint
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
<?php
|
||||
|
||||
namespace Tests\Feature;
|
||||
|
||||
use Illuminate\Foundation\Testing\RefreshDatabase;
|
||||
use Tests\TestCase;
|
||||
|
||||
class AdminPlatformOrderIndexBatchActivateBlockedHintShouldIncludeGoSyncableLinkTest 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_blocked_hint_should_include_link_to_syncable_only_unsynced_set(): void
|
||||
{
|
||||
$this->loginAsPlatformAdmin();
|
||||
|
||||
// 构造一个会触发 batch_activate_subscriptions 被阻断的筛选:未勾选 syncable_only。
|
||||
$res = $this->get('/admin/platform-orders');
|
||||
$res->assertOk();
|
||||
|
||||
$html = (string) $res->getContent();
|
||||
|
||||
$this->assertStringContainsString('data-role="batch-activate-subscriptions-blocked-hint"', $html);
|
||||
$this->assertStringContainsString('切到可同步订阅集合', $html);
|
||||
$this->assertStringContainsString('syncable_only=1', $html);
|
||||
$this->assertStringContainsString('sync_status=unsynced', $html);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user