85 lines
2.7 KiB
PHP
85 lines
2.7 KiB
PHP
<?php
|
|
|
|
namespace Tests\Feature;
|
|
|
|
use App\Models\Merchant;
|
|
use App\Models\Plan;
|
|
use App\Models\PlatformOrder;
|
|
use Illuminate\Foundation\Testing\RefreshDatabase;
|
|
use Illuminate\Support\Arr;
|
|
use Tests\TestCase;
|
|
|
|
class AdminPlatformOrderShowMerchantPlanLinksShouldUseOrderShowSelfBackWhenOuterBackSafeTest 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_show_page_merchant_and_plan_links_should_still_use_order_show_self_back_when_outer_back_is_safe(): void
|
|
{
|
|
$this->loginAsPlatformAdmin();
|
|
|
|
$merchant = Merchant::query()->firstOrFail();
|
|
|
|
$plan = Plan::query()->create([
|
|
'code' => 'po_show_merchant_plan_safe_back_test',
|
|
'name' => '平台订单详情商家/套餐 safe back 链接测试套餐',
|
|
'billing_cycle' => 'monthly',
|
|
'price' => 10,
|
|
'list_price' => 10,
|
|
'status' => 'active',
|
|
'sort' => 10,
|
|
'published_at' => now(),
|
|
]);
|
|
|
|
$order = PlatformOrder::query()->create([
|
|
'merchant_id' => $merchant->id,
|
|
'plan_id' => $plan->id,
|
|
'order_no' => 'PO_SHOW_MERCHANT_PLAN_SAFE_BACK_0001',
|
|
'order_type' => 'new_purchase',
|
|
'status' => 'pending',
|
|
'payment_status' => 'unpaid',
|
|
'plan_name' => $plan->name,
|
|
'billing_cycle' => $plan->billing_cycle,
|
|
'period_months' => 1,
|
|
'quantity' => 1,
|
|
'payable_amount' => 10,
|
|
'paid_amount' => 0,
|
|
'placed_at' => now(),
|
|
'meta' => [],
|
|
]);
|
|
|
|
$safeBack = '/admin/platform-orders?' . Arr::query([
|
|
'status' => 'pending',
|
|
'keyword' => '商家筛选',
|
|
]);
|
|
|
|
$res = $this->get('/admin/platform-orders/' . $order->id . '?back=' . urlencode($safeBack));
|
|
$res->assertOk();
|
|
|
|
$expectedMerchantUrl = '/admin/platform-orders?' . Arr::query([
|
|
'merchant_id' => $merchant->id,
|
|
'back' => '/admin/platform-orders/' . $order->id,
|
|
]);
|
|
|
|
$expectedPlanUrl = '/admin/platform-orders?' . Arr::query([
|
|
'plan_id' => $plan->id,
|
|
'back' => '/admin/platform-orders/' . $order->id,
|
|
]);
|
|
|
|
$res->assertSee('href="' . $safeBack . '"', false);
|
|
$res->assertSee('← 返回上一页(保留上下文)');
|
|
$res->assertSee($expectedMerchantUrl, false);
|
|
$res->assertSee($expectedPlanUrl, false);
|
|
$res->assertDontSee('back%3D', false);
|
|
}
|
|
}
|