首頁  >  文章  >  php框架  >  介紹Laravel unit test : 模擬認證的用戶

介紹Laravel unit test : 模擬認證的用戶

藏色散人
藏色散人轉載
2021-04-23 16:13:541597瀏覽

#Laravel unit test : 模擬認證的使用者

在Laravel 編寫單元測試時經常會遇到需要模擬認證用戶的時候,例如新建文章、建立訂單等,那麼在Laravel unit test 中如何實現?

官方解決方法

Laravel 的官方文檔中的測試章節中有提到:

Of course, one common use of the session is for maintaining state for the authenticated user. The actingAs helper method provides a simple way to authenticate a given user as the current user. For example, we may use a model factory to generate and authenticate a user:##
<?php

use App\User;

class ExampleTest extends TestCase
{
    public function testApplication()
    {
        $user = factory(User::class)->create();

        $response = $this->actingAs($user)
                         ->withSession(['foo' => 'bar'])
                         ->get('/');
    }
}
#Illuminate\Foundation\Testing\Concerns\ImpersonatesUsers
Trait 中的

actingAsbe 方法。 設定以後在後續的測試程式碼中,我們可以透過 auth()->user()

等方法來取得目前認證的使用者。

偽造認證用戶

在官方的範例中有利用factory 來創建一個真實的用戶,但是更多的時候,我們只想用一個偽造的用戶來作為認證用戶即可,而不是透過factory 來創建一個真實的使用者。

在tests 目錄下新建一個

User

calss:

use Illuminate\Foundation\Auth\User as Authenticatable;

class User extends Authenticatable
{
    protected $fillable = [
        'id', 'name', 'email', 'password',
    ];
}
必須在$fillable 中新增

id attribute . 否則會拋出例外: Illuminate\Database\Eloquent\MassAssignmentException: id接下來偽造一個使用者認證使用者:

$user = new User([
    'id' => 1,
    'name' => 'ibrand'
]);

 $this->be($user,'api');
後續會繼續寫一些單元測試小細節的文章,歡迎關注: )

相關推薦:
最新的五個Laravel影片教學

以上是介紹Laravel unit test : 模擬認證的用戶的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:segmentfault.com。如有侵權,請聯絡admin@php.cn刪除