PHPUnit 自動化測試大作戰【CH16】

閱讀時間約 8 分鐘

今天我們來聊聊「Mocking」吧!

何為 Mocking & 為何 Mocking

所謂的 Mocking,是指用各種方式來模擬它原本的行為與功能,藉此將我們要測試的對象,與其相依的外部服務「隔離」。簡單來說,就是做一個外部服務的「仿冒品」。這裡的外部服務,可以是其他類別函數、外部API、檔案系統存取介面等等。

那為什麼需要 Mocking呢?大家可以試想幾種情境:

  • 假如我們有一個API,它會呼叫外部服務A Service,如果某天A Service停機維修,而我們沒有做Mocking A Service,那我們所寫的測試程式是否就會隨之停擺或出錯?
  • 同樣的情況,假如我們要測試當A Service掛點時,我們的API仍然可以某種方式正常運作,在無法打電話給A Service廠商,請他們停機時,此時該如何測試以上行為?
  • 同樣的情況,假如 A Service 其實還沒上線,只知道預期中的介面與行為,此時我們該如何測試?

在以上的情況中,有一個很重要的共通點,那就是測試能否運行,都依賴於外部服務是否為我們所控制。為了破除這個依賴,Mocking 就由此而生了!

Mocking 初體驗

以下讓我們一個Mocking的例子:

  • app/Repositories/UserRepository.php
<?php

namespace App\Repositories;

use App\Models\User;

class UserRepository{

protected $model;

public function __construct(User $model) {

$this->model = $model;

} public function getUserById($userId) {

return $this->model::find($userId);

}}
  • app/Repositories/PostRepository.php
<?php

namespace App\Repositories;

class PostRepository{

protected $model;

}
  • app/Services/UserService.php
<?php

namespace App\Services;

use App\Repositories\PostRepository;

use App\Repositories\UserRepository;

class UserService{

private $userRepository;

private $postRepository;

public function __construct( PostRepository $postRepository, UserRepository $userRepository ) {

$this->postRepository = $postRepository;

$this->userRepository = $userRepository;

} public function getUserData(int $userId) {

$user = $this->userRepository->getUserById($userId);

if (empty($user)) {

return [];

} $user->posts = $this->postRepository->getPostsByUserId($userId);

return $user;

}}
  • tests/Feature/UserServiceTest.php
<?php

namespace Tests\Feature;

use App\Models\User;

use App\Repositories\PostRepository;

use App\Repositories\UserRepository;

use App\Services\UserService;

use Tests\TestCase;

class UserServiceTest extends TestCase{

public function testGetUserDataWhenUserNotFound() {

$this->mock(UserRepository::class, function ($mock) {

$mock->shouldReceive('getUserById')

->with(1)

->once()

->andReturn(null);

}); $service = app(UserService::class);

$user = $service->getUserData(1);

$this->assertEmpty($user);

} public function testGetUserData() {

$user = User::factory()->make();

$this->mock(UserRepository::class, function ($mock) use ($user) {

$mock->shouldReceive('getUserById')

->with(1)

->once()

->andReturn($user);

}); $this->mock(PostRepository::class, function ($mock) {

$mock->shouldReceive('getPostsByUserId')

->with(1)

->once()

->andReturn([]);

}); $service = app(UserService::class);

$user = $service->getUserData(1);

$this->assertNotEmpty($user);

$this->assertNotNull($user->posts);

}}

在以上測試程式碼中,我們撰寫了 2 個測試案例函數:

  • testGetUserDataWhenUserNotFound()在這個函數中,我們 Mock 了 UserRepository→getUserById() 這個函數的行為,因此即便我們沒有準備測試資料,仍然可以測試「UserRepository→getUserById(1) 的回應為 null 」的這個情境下,UserService→getUserData(1) 是否可正常運作。
  • testGetUserData()在這個函數中,這次我們 Mock 了 UserRepository→getUserById() 以 PostRepository→getPostsByUserId()及這2個函數的行為,而這次我們甚至 Mock 了一個還沒實作的函數 PostRepository→getPostsByUserId() !

以上便是今天的 Mocking 初體驗,是不是很有趣呢?

下一篇讓我們繼續探所更多關於 Mocking 的各種技巧吧!

如果您喜歡這篇文章,歡迎加入追蹤以接收新文章通知 😄

參考資料

本系列文章目錄

avatar-img
8會員
279內容數
歡迎來到 WilliamP 的沙龍天地,在這裡將與各位讀者探討各種主題,包刮高中數學題庫、PHP開發經驗、LINE聊天機器人開發經驗、書摘筆記等,歡迎交流!
留言0
查看全部
avatar-img
發表第一個留言支持創作者!
WilliamP的沙龍 的其他內容
今天讓我們來看看播種器吧! 什麼是播種器 播種器 (Seeder) 是 Laravel 提供的一個批次建立測試資料的功能,可以讓我們將建立測試資料的邏輯,統一寫在一個播種器類別中,方便我們重複調用以建立否些特定資料。 播種器實例 建立播種器指令 php artisan make:seede
今天要來為大家介紹幾個,在撰寫測試程式碼時可以利用的特殊函數。 setUp() & tearDown() setUp():我們可以在這個函數中,撰寫想要在每個測試案例函數執行前預執行的邏輯。 tearDown():我們可以在這個函數中,撰寫想要在每個測試案例函數執行後預執行的邏輯。 範例:
這一篇讓我們看看幾個重要的 PHPUnit @ Annotation 吧! 所謂的 PHPUnit @ Annotation,是指在測試案例函數前的 PHP Doc 區塊,PHPUnit 提供開發者引用的 @Annotation。PHPUnit 提供的 @ Annotation 大約有 20+ 個
在之前的文章中,我們演練了許多測試方式,不過不知道大家有沒有發現,我們測試的大多是「正向」情況,「反向」的情況反而沒有測試到,也就是例外情況。 例外情況也可以測試嗎?當然可以! 本篇文章會為大家介紹如何「成功地測試失敗」。 例外測試函數 $this->expectException() 函
指令在現代 Laravel Web Applications 中,也是一個相當常見的應用,而 Laravel 也為此準備許多方便實現測試的函數,以下就來為大家介紹: artisan() 函數簽名: artisan($command, $parameters = []) 函數說明:這應該是指令測
前一篇我們介紹了在撰寫自動化測試時常使用的 Trait,今天則要來為大家介紹 Auth 相關測試可如何進行,同時為大家示範 RefreshDatabase 與 WithoutMiddleware 這兩個 Trait 的使用。 取得當前登入使用者資料 在以 Laravel 開發 Web 服務時,常
今天讓我們來看看播種器吧! 什麼是播種器 播種器 (Seeder) 是 Laravel 提供的一個批次建立測試資料的功能,可以讓我們將建立測試資料的邏輯,統一寫在一個播種器類別中,方便我們重複調用以建立否些特定資料。 播種器實例 建立播種器指令 php artisan make:seede
今天要來為大家介紹幾個,在撰寫測試程式碼時可以利用的特殊函數。 setUp() & tearDown() setUp():我們可以在這個函數中,撰寫想要在每個測試案例函數執行前預執行的邏輯。 tearDown():我們可以在這個函數中,撰寫想要在每個測試案例函數執行後預執行的邏輯。 範例:
這一篇讓我們看看幾個重要的 PHPUnit @ Annotation 吧! 所謂的 PHPUnit @ Annotation,是指在測試案例函數前的 PHP Doc 區塊,PHPUnit 提供開發者引用的 @Annotation。PHPUnit 提供的 @ Annotation 大約有 20+ 個
在之前的文章中,我們演練了許多測試方式,不過不知道大家有沒有發現,我們測試的大多是「正向」情況,「反向」的情況反而沒有測試到,也就是例外情況。 例外情況也可以測試嗎?當然可以! 本篇文章會為大家介紹如何「成功地測試失敗」。 例外測試函數 $this->expectException() 函
指令在現代 Laravel Web Applications 中,也是一個相當常見的應用,而 Laravel 也為此準備許多方便實現測試的函數,以下就來為大家介紹: artisan() 函數簽名: artisan($command, $parameters = []) 函數說明:這應該是指令測
前一篇我們介紹了在撰寫自動化測試時常使用的 Trait,今天則要來為大家介紹 Auth 相關測試可如何進行,同時為大家示範 RefreshDatabase 與 WithoutMiddleware 這兩個 Trait 的使用。 取得當前登入使用者資料 在以 Laravel 開發 Web 服務時,常
你可能也想看
Google News 追蹤
Thumbnail
本文提供了一個關於模擬法演算法的問題,介紹了操作指令的格式及其解析。透過程式碼模擬每條指令,找出回到根目錄所需的操作次數。本文詳細說明瞭模擬法的複雜度分析,能夠幫助讀者更好地理解這個問題。
Thumbnail
這是一篇很精彩的測試文章喔!
Thumbnail
本文提供了一個關於模擬法演算法的問題,介紹了操作指令的格式及其解析。透過程式碼模擬每條指令,找出回到根目錄所需的操作次數。本文詳細說明瞭模擬法的複雜度分析,能夠幫助讀者更好地理解這個問題。
Thumbnail
這是一篇很精彩的測試文章喔!