Memo

メモ > 技術 > フレームワーク: Laravel10 > テスト

テスト
■概要 10.x テスト: テストの準備 Laravel https://readouble.com/laravel/10.x/ja/testing.html ■テスト用データベースの作成 Laravel Sailで一番簡単にテスト用DBを用意する https://zenn.dev/naoki_oshiumi/articles/4c69822b18566a Laravel Sailなら、テスト用データベースは自動で作成される。 具体的には、docker-compose.yml でmysqlコンテナ用に以下のコードがある。 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - './docker/mysql/create-testing-database.sh:/docker-entrypoint-initdb.d/10-create-testing-database.sh' - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - これにより、create-testing-database.sh の内容が 10-create-testing-database.sh にマウントされ、実行される。 create-testing-database.sh の内容は以下のとおり。 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #!/usr/bin/env bash mysql --user=root --password="$MYSQL_ROOT_PASSWORD" <<-EOSQL CREATE DATABASE IF NOT EXISTS testing; GRANT ALL PRIVILEGES ON \`testing%\`.* TO '$MYSQL_USER'@'%'; EOSQL - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - これにより、「データベース testing が存在しなければ作成する」となる。 ■テストを実行 何も設定せずに実行すると、以下の結果が表示された。 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - $ sail test PASS Tests\Unit\ExampleTest that true is true PASS Tests\Feature\Auth\AuthenticationTest login screen can be rendered 0.54s users can authenticate using the login screen 0.05s users can not authenticate with invalid password 0.23s users can logout 0.02s PASS Tests\Feature\Auth\EmailVerificationTest email verification screen can be rendered 0.03s email can be verified 0.03s email is not verified with invalid hash 0.03s PASS Tests\Feature\Auth\PasswordConfirmationTest confirm password screen can be rendered 0.03s password can be confirmed 0.02s password is not confirmed with invalid password 0.22s PASS Tests\Feature\Auth\PasswordResetTest reset password link screen can be rendered 0.02s reset password link can be requested 0.03s reset password screen can be rendered 0.03s password can be reset with valid token 0.04s PASS Tests\Feature\Auth\PasswordUpdateTest password can be updated 0.04s correct password must be provided to update password 0.02s PASS Tests\Feature\Auth\RegistrationTest registration screen can be rendered 0.02s new users can register 0.03s PASS Tests\Feature\ExampleTest the application returns a successful response 0.02s PASS Tests\Feature\ProfileTest profile page is displayed 0.03s profile information can be updated 0.03s email verification status is unchanged when the email address is unchanged 0.03s user can delete their account 0.02s correct password must be provided to delete account 0.02s Tests: 25 passed (61 assertions) Duration: 1.67s - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ■テスト用の設定ファイル テストの実行時、.env.testing があればそれが使用される。 .env.testing が無ければ、.env が使用される。 よって .env.testing にはLaravelを動作させるためのひととおりの設定が必要。足りない情報を .env から読み込んだりはしないので注意。 phpunit.xml はPHPUnitの設定ファイルで、テスト実行時に環境変数や設定を一部上書きするためのもの。 つまりテストの際は APP_ENV が「testing」になり、データベースとして testing が使用され、キャッシュドライバも配列になる。 これにより、開発環境のデータベースやキャッシュを汚染することなくテストを行なえる。 なお例えば phpunit.xml を以下のように編集すると、データベース接続を伴うテストで「SQLSTATE[HY000] [1049] Unknown database 'testing2'」のエラーになる。 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - <env name="DB_DATABASE" value="testing"/> ↓ <env name="DB_DATABASE" value="testing2"/> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - テスト用ファイルの作成については、以下のようにするのが良さそう。 ・基本的には .env の内容をもとにして phpunit.xml で上書きさせる。(Laravel Sailデフォルトの挙動。) ・テスト環境用に、より詳細で包括的な設定を行ないたい場合、.env.testing に記載する。 ■Inertia.js Laravel+Inertiaでテストコード書いてみる|Laravel|PHP|開発ブログ|株式会社Nextat(ネクスタット) https://nextat.co.jp/staff/archives/321 LaravelでInertia.jsを使ったテストの時にAssertを拡張して同時に2つの値を検証する方法 https://zenn.dev/arsaga/articles/64cc00db954b7e Laravel & Inertiaのテストでresource/js以外をテスト対象にする方法 https://zenn.dev/wadakatu/articles/0b4b923b3c1edc ■ECS ※未検証。 ECSへデプロイする際に、CodeBuildで自動的にテストを実行したい。 【Laravel & AWS】AWSのCodePipelineでユニットテストを自動化する【6日目】 | コーラは1日500mlまで https://t-kuni-tech.com/2020/07/26/aws%E3%81%AEcodepipeline%E3%81%A7%E3%83%A6%E3%83%8B%E3%83%83%E3%8... ■メモ Laravel ユーザーのテストデータ生成時、ちょっと気に留めておきたい事 https://zenn.dev/nshiro/articles/0d07ce43fec24f

Advertisement