##わからないこと
投稿編集画面を表示するテストを行いたいのですが、下記のテストを実行するとErrorException: Trying to get property 'user' of non-object
というエラーが発生しました。
エラーの原因であろう$user = $article->user;
を変更すべきと考え、解決策を調べてみるとTrying to get property '○○' of non-object
というエラーは、ヘルパ関数optional()を使うことでErrorExceptionを回避できると知り、試みましたが解決できませんでした。
エラー文を読むと、userのデータがないと言われているような気がしますが、私としては
ArticleFacotoryにて下記のように記述することで、Articleインスタンスを作成する際にリレーションするUserインスタンスも生成、つまり、articlesに関連するユーザーのテスト用データが自動的に作られると思っていたのですが間違っているのでしょうか?
'user_id' => function () { return factory(User::class)->create()->id;
開発中のアプリケーション上では、editメソッドを使用した機能はエラーなく実行できており、Userに関するエラーもchromeの検証機能、laravelのデバッグツールで確認したところ発生していません。
これ以上、私の力では解決することが困難な為、この場をお借りして質問させていただきました。
何卒、よろしくお願い致します。
//エラーが発生するテスト public function testAuthEdit() { $this->withoutExceptionHandling(); //生成したモデルに1対1のリレーションを付けています $article = factory(Article::class)->create()->each(function ($article) { $article->sampleLink()->save(factory(SampleLink::class)->make()); }); //$articleインスタンスのメソッドを利用して$userを作成しようとしました //エラーメッセージは、この箇所がおかしいと指摘しています $user = $article->user; $response = $this->actingAs($user)->get(route('articles.edit', ['article' => $article])); $response->assertStatus(200)->assertViewIs('articles.edit'); }
###テスト実行後のターミナル
$ vendor/bin/phpunit tests/Feature/ArticleControllerTest.php PHPUnit 9.5.2 by Sebastian Bergmann and contributors. .......E 8 / 8 (100%) Time: 00:01.173, Memory: 30.00 MB There was 1 error: 1) Tests\Feature\ArticleControllerTest::testAuthEdit ErrorException: Trying to get property 'user' of non-object
下に各Factoryなどを記述しておきます。
###ArticleController.php editメソッド
public function edit(Article $article) { return view('articles.edit')); }
###Models/Article.php
<?php namespace App\Models; use App\Models\User; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\Relations\BelongsTo; use Illuminate\Database\Eloquent\Relations\HasOne; use Illuminate\Support\Arr; class Article extends Model { protected $fillable = [ 'body', 'user_id', ]; public function user(): BelongsTo { return $this->belongsTo('App\Models\User'); } public function sampleLink(): HasOne { return $this->hasOne('App\Models\SampleLink'); } }
###ArticleFactory.php
<?php use App\Models\Article; use App\Models\User; use Faker\Generator as Faker; $factory->define(Article::class, function (Faker $faker) { return [ 'body' => $faker->text(255), 'user_id' => function () { return factory(User::class); } ]; });
###Models/User.php
<?php namespace App\Models; use App\Mail\BareMail; use Illuminate\Database\Eloquent\Relations\HasMany; use Illuminate\Foundation\Auth\User as Authenticatable; use Illuminate\Notifications\Notifiable; class User extends Authenticatable { use Notifiable; protected $fillable = [ 'name', 'email', 'introduction', 'password', ]; protected $hidden = [ 'password', 'remember_token', ]; protected $casts = [ 'email_verified_at' => 'datetime', ]; //articleとのリレーション public function articles(): HasMany { return $this->hasMany('App\Models\Article'); } //以下略 }
###UserFactory.php
<?php use App\Models\User; use Faker\Generator as Faker; use Illuminate\Support\Str; $factory->define(User::class, function (Faker $faker) { return [ 'name' => $faker->name, 'email' => $faker->unique()->safeEmail, 'introduction' => $faker->text(200), 'image' => $faker->imageUrl($randomize = true, $word = null), 'email_verified_at' => now(), 'password' => 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx', // password 'remember_token' => Str::random(10), ]; });
回答1件
あなたの回答
tips
プレビュー