【Laravel + PHPUnit】parse_urlで受け取るヘッダー情報をPOSTする方法
2559 ワード
概要
テスト対象のビジネスロジックでparse_url
メソッドを利用し特定の値を取得したい場合につまづいたので指定方法をまとめる
<?php
$parentUrl = parse_url(url()->previous())['path'];
if (strpos($parentUrl, 'hoge')) {
return 'hoge';
}
解決方法
from
を利用してヘッダー情報をカスタマイズします
public function test_OK()
{
$id = Users::query()->first()->id;
$response = $this
->from('hoge')
->actingAs($this->authUser)->get("admin/users/${id}");
$response->assertViewIs('admin.users.show');
}
``
Author And Source
この問題について(【Laravel + PHPUnit】parse_urlで受け取るヘッダー情報をPOSTする方法), 我々は、より多くの情報をここで見つけました https://qiita.com/naoki-haba/items/5955853035ebb78a1b42著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .