chore(admin): 导航增加开通线索入口 + 护栏测试

This commit is contained in:
萝卜
2026-03-14 03:03:19 +00:00
parent f24a50f137
commit 301ce565cd
2 changed files with 33 additions and 0 deletions

View File

@@ -23,6 +23,7 @@
<a href="/admin/orders">订单监控</a>
<a href="/admin/platform-orders">平台订单</a>
<a href="/admin/site-subscriptions">订阅管理</a>
<a href="/admin/platform-leads">开通线索</a>
<a href="/admin/products">商品巡检</a>
<a href="/admin/product-categories">商品分类</a>

View File

@@ -0,0 +1,32 @@
<?php
namespace Tests\Feature;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class AdminNavPlatformLeadsLinkTest 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_admin_layout_should_contain_platform_leads_nav_link(): void
{
$this->loginAsPlatformAdmin();
$res = $this->get('/admin');
$res->assertOk();
$res->assertSee('href="/admin/platform-leads"', false);
$res->assertSee('开通线索');
}
}