1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

miriwoお一人様Advent Calendar 2022

Day 4

laravel bladeに値が渡されていることをテストする

Last updated at Posted at 2022-12-04

この記事はmiriwoお一人様 Advent Calendar 2022の4日目の記事です

概要

  • laravelのFeatureテストコードにてbladeに値が渡されていることをテストする関数assertViewHas()の使い方を簡単にまとめる。

方法

  1. Unitテストのテストコードで下記の様に記載することでテストする事ができる。

    $response = $this->get('テストしたいURL');
    
    $response->assertViewHas('bladeに渡されているであろう値のキー名', 実際の値);
    
  2. 例えば、/infoにgetリクエストを送った時、表示bladeにキー名yearで値が2022のデータが渡されているかをチェックしたい時は下記の様になる。

    $response = $this->get('/info');
    
    $response->assertViewHas('year', 2022);
    
  3. assertViewHas()は第二引数にクロージャを設定するこで複数の値をチェックする事ができる。(クロージャの戻り値がtrueになれば当該チェックは通過する。)

    $expectedInfos = [
        'id' => 1,
        'userId' => 1,
        'year' => 2022,
    ];
    
    $response = $this->get('/infos');
    
    $response->assertViewHas('infos', function ($infos) use ($expectedInfo) {
        return $infos[0]->id === $expectedInfo['id']
            && $infos[0]->userId === $expectedInfo['userId']
            && $infos[0]->year === $expectedInfo['year'];
    });
    
1
1
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
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?