fix(backurl): avoid double fragment in withBackFirstAndFragment

This commit is contained in:
萝卜
2026-03-14 21:51:17 +00:00
parent 65b7b9058f
commit ffc88feede
2 changed files with 25 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
<?php
namespace Tests\Unit;
use App\Support\BackUrl;
use Illuminate\Support\Arr;
use Tests\TestCase;
class BackUrlWithBackFirstAndFragmentOverridesExistingFragmentTest extends TestCase
{
public function test_with_back_first_and_fragment_should_override_fragment_in_path_when_fragment_param_is_provided(): void
{
$back = '/admin/platform-orders/2';
$backQuery = Arr::query(['back' => $back]);
$url = BackUrl::withBackFirstAndFragment('/admin/site-subscriptions/2#old', $back, 'new');
$this->assertSame('/admin/site-subscriptions/2?' . $backQuery . '#new', $url);
}
}