diff --git a/resources/views/admin/platform_orders/index.blade.php b/resources/views/admin/platform_orders/index.blade.php index 1ddb675..1ec73ce 100644 --- a/resources/views/admin/platform_orders/index.blade.php +++ b/resources/views/admin/platform_orders/index.blade.php @@ -353,9 +353,9 @@ diff --git a/tests/Feature/AdminPlatformOrderIndexQuickFiltersBatch24hShouldHaveDataRoleTest.php b/tests/Feature/AdminPlatformOrderIndexQuickFiltersBatch24hShouldHaveDataRoleTest.php new file mode 100644 index 0000000..5d4b2af --- /dev/null +++ b/tests/Feature/AdminPlatformOrderIndexQuickFiltersBatch24hShouldHaveDataRoleTest.php @@ -0,0 +1,40 @@ +seed(); + + $this->post('/admin/login', [ + 'email' => 'platform.admin@demo.local', + 'password' => 'Platform@123456', + ])->assertRedirect('/admin'); + } + + public function test_platform_orders_index_quick_filters_batch_24h_should_have_data_role(): void + { + $this->loginAsPlatformAdmin(); + + $res = $this->get('/admin/platform-orders'); + $res->assertOk(); + + $html = (string) $res->getContent(); + + $this->assertStringContainsString('data-role="po-quickfilter-batch-synced-24h"', $html); + $this->assertStringContainsString('data-role="po-quickfilter-batch-bmpa-24h"', $html); + $this->assertStringContainsString('data-role="po-quickfilter-batch-activated-24h"', $html); + + // 钉死 query 语义 + $this->assertStringContainsString('batch_synced_24h=1', $html); + $this->assertStringContainsString('batch_mark_paid_and_activate_24h=1', $html); + $this->assertStringContainsString('batch_mark_activated_24h=1', $html); + } +}