php ログイン认证テスト
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php ログイン认证テスト相关的知识,希望对你有一定的参考价值。
<?php
namespace Tests\Feature;
use Tests\TestCase;
use Illuminate\Foundation\Testing\WithoutMiddleware;
use Illuminate\Foundation\Testing\DatabaseMigrations;
//use Illuminate\Foundation\Testing\DatabaseTransactions;
use Auth;
use App\User;
class LoginTest extends TestCase
{
use DatabaseMigrations;
/** @test */
public function user_can_view_login()
{
$response = $this->get('login');
$response->assertStatus(200);
}
/** @test */
public function unauthenticated_user_cannot_view_home()
{
$this->get('home')
->assertRedirect('login');
}
/** @test */
public function valid_user_can_login()
{
// ユーザーを1つ作成
$user = factory(User::class)->create([
'password' => bcrypt('test1111')
]);
// まだ、認証されていないことを確認
$this->assertFalse(Auth::check());
// ログインを実行
$response = $this->post('login', [
'email' => $user->email,
'password' => 'test1111'
]);
// 認証されていることを確認
$this->assertTrue(Auth::check());
// ログイン後にホームページにリダイレクトされるのを確認
$response->assertRedirect('home');
}
/** @test */
public function invalid_user_cannot_login()
{
// ユーザーを1つ作成
$user = factory(User::class)->create([
'password' => bcrypt('test1111')
]);
// まだ、認証されていないことを確認
$this->assertFalse(Auth::check());
// 異なるパスワードでログイン
$response = $this->post('login', [
'email' => $user->email,
'password' => 'test2222'
]);
// 認証失敗で、認証されていない
$this->assertFalse(Auth::check());
// セッションにエラーを含むことを確認
$response->assertSessionHasErrors(['email']);
// エラメッセージを確認
$this->assertEquals('メールアドレスあるいはパスワードが一致しません',
session('errors')->first('email'));
}
/** @test */
public function logout()
{
// ユーザーを1つ作成
$user = factory(User::class)->create();
// 認証済み、つまりログイン済みしたことにする
$this->actingAs($user);
// 認証されていること確認
$this->assertTrue(Auth::check());
// ログアウトを実行
$response = $this->post('logout');
// 認証されていない
$this->assertFalse(Auth::check());
// Welcomeページにリダイレクトすることを確認
$response->assertRedirect('/');
}
}
以上是关于php ログイン认证テスト的主要内容,如果未能解决你的问题,请参考以下文章
php セキュリティ:ログインIDバレ防止
text WPログインURL
sh GCPのCLIでのログイン方法
text Mac_MySQLのログインPW设定
markdown [ログイン画面阅覧] #laravel#l54 #unittest
python ログインサイトの画面キャプチャ