Laravel ユニットテストで、DBのカラムとステータスを指定した値をテストしたいですがその方法がわかりません。
以下のようなプログラムを作成しました
php
1 public function setUp(): void 2 { 3 parent::setUp(); 4 $this->staff = factory(Staff::class)->create([ 5 'staff_id' => factory(Staff::class, 'personal')->create()->id, 6 ]); 7 } 8 9 public function testRelation() 10 { 11 $this->assertInstanceOf(Staff::class, $this->staff); 12 $this->assertInstanceOf(Staff::class, $this->staff->staff()->first()); 13 } 14 15 public function testStaffValidatorStatus() 16 { 17 18 $staff_id = Staff::where('id', $this->id)->exists('status', [1,5]); 19 20 $data = [ 21 'staff_id' => $staff_id, 22 'age' => 1, 23 ]; 24 25 $validator = Staff::staffValidator($data); 26 27 $this->assertSame(false, $validator->fails()); 28 }
StaffFactory.php というファイルを別に作成し、Fackerによる実装ずみなので、testRelation()のほうは問題なくユニットテストをパスしています。
ですが、testStaffValidatorStatus のテストはうまく実装できません。
$staff_id = Staff::where('id', $this->id)->exists('status', [1,5]);
のような感じで、DBのスタッフIDに存在するもののうち、ステータスのカラムが1か5の値をテストしたいのです。
$staff_id = Staff::where('id', $this->id)->exists('status', [1,5]);
という記述方法は間違っているのは理解しているのですが、質問をわかりやすくするため、便宜上、このように記述しました。
アドバイスお願いします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
退会済みユーザー
2020/09/03 16:16