test(ui): subscription ends_at range inputs should be date type

This commit is contained in:
萝卜
2026-03-17 06:11:13 +08:00
parent 4df9dc3ccc
commit 0d36cb7989

View File

@@ -0,0 +1,38 @@
<?php
namespace Tests\Feature;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class AdminSiteSubscriptionIndexEndsAtRangeInputsShouldBeDateTypeTest 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_site_subscriptions_index_ends_at_range_inputs_should_be_date_type(): void
{
$this->loginAsPlatformAdmin();
$res = $this->get('/admin/site-subscriptions');
$res->assertOk();
$html = (string) $res->getContent();
$this->assertStringContainsString('name="ends_from"', $html);
$this->assertStringContainsString('name="ends_to"', $html);
$this->assertStringContainsString('type="date" name="ends_from"', $html);
$this->assertStringContainsString('type="date" name="ends_to"', $html);
$this->assertStringContainsString('data-role="sub-ends-from"', $html);
$this->assertStringContainsString('data-role="sub-ends-to"', $html);
}
}