LoginSignup
0
0

More than 5 years have passed since last update.

Laravel Featureテスト POST時のリクエストやセッション

Last updated at Posted at 2018-11-09

Featureテスト時にハマったので備忘。


post('POST先のURL','header','token')

POSTする先にリクエストとして配列を渡すときは第2引数として渡す。
tokenはcsrf_token()で作成して渡す。

sessionに追加したいときは、メソッドチェーンで渡す。

$this->withSession('配列')

繋げたらこんな感じ

$this->withSession('配列')
     ->post('POST先のURL','header',$token)
     ->assertStatus(302);
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0