# 自動化測試 在 Hyperf 裡測試預設透過 `phpunit` 來實現,但由於 Hyperf 是一個協程框架,所以預設的 `phpunit` 並不能很好的工作,因此我們提供了一個 `co-phpunit` 指令碼來進行適配,您可直接呼叫指令碼或者使用對應的 composer 命令來執行。自動化測試沒有特定的元件,但是在 Hyperf 提供的骨架包裡都會有對應實現。 ``` composer require hyperf/testing ``` ```json "scripts": { "test": "co-phpunit -c phpunit.xml --colors=always" }, ``` ## Bootstrap Hyperf 提供了預設的 `bootstrap.php` 檔案,它讓使用者在執行單元測試時,掃描並載入對應的庫到記憶體裡。 ```php get(Hyperf\Contract\ApplicationInterface::class); ``` 執行單元測試 ``` composer test ``` ## 模擬 HTTP 請求 在開發介面時,我們通常需要一段自動化測試指令碼來保證我們提供的介面按預期在執行,Hyperf 框架下提供了 `Hyperf\Testing\Client` 類,可以讓您在不啟動 Server 的情況下,模擬 HTTP 服務的請求: ```php get('/'); ``` 因為 Hyperf 支援多埠配置,除了驗證預設的埠介面外,如果驗證其他埠的介面呢? ```php 'adminHttp']); $result = $client->json('/user/0',[ 'nickname' => 'Hyperf' ]); ``` 預設情況下,框架使用 `JsonPacker`,會直接解析 `Body` 為 `array`,如果您直接返回 `string`,則需要設定對應 `Packer` ```php new class() implements PackerInterface { public function pack($data): string { return $data; } public function unpack(string $data) { return $data; } }, ]); $result = $client->json('/user/0',[ 'nickname' => 'Hyperf' ]); ``` ### 使用 Cookies ```php sendRequest($client->initRequest('POST', '/request')->withCookieParams([ 'X-CODE' => $id = uniqid(), ])); $data = Json::decode((string) $response->getBody()); ``` ## 示例 讓我們寫個小 DEMO 來測試一下。 ```php client = make(Client::class); } public function testExample() { $this->assertTrue(true); $res = $this->client->get('/'); $this->assertSame(0, $res['code']); $this->assertSame('Hello Hyperf.', $res['data']['message']); $this->assertSame('GET', $res['data']['method']); $this->assertSame('Hyperf', $res['data']['user']); $res = $this->client->get('/', ['user' => 'developer']); $this->assertSame(0, $res['code']); $this->assertSame('developer', $res['data']['user']); $res = $this->client->post('/', [ 'user' => 'developer', ]); $this->assertSame('Hello Hyperf.', $res['data']['message']); $this->assertSame('POST', $res['data']['method']); $this->assertSame('developer', $res['data']['user']); $res = $this->client->json('/', [ 'user' => 'developer', ]); $this->assertSame('Hello Hyperf.', $res['data']['message']); $this->assertSame('POST', $res['data']['method']); $this->assertSame('developer', $res['data']['user']); $res = $this->client->file('/', ['name' => 'file', 'file' => BASE_PATH . '/README.md']); $this->assertSame('Hello Hyperf.', $res['data']['message']); $this->assertSame('POST', $res['data']['method']); $this->assertSame('README.md', $res['data']['file']); } } ``` ## 除錯程式碼 在 FPM 場景下,我們通常改完程式碼,然後開啟瀏覽器訪問對應介面,所以我們通常會需要兩個函式 `dd` 和 `dump`,但 `Hyperf` 跑在 `CLI` 模式下,就算提供了這兩個函式,也需要在 `CLI` 中重啟 `Server`,然後再到瀏覽器中呼叫對應介面檢視結果。這樣其實並沒有簡化流程,反而更麻煩了。 接下來,我來介紹如何透過配合 `testing`,來快速除錯程式碼,順便完成單元測試。 假設我們在 `UserDao` 中實現了一個查詢使用者資訊的函式 ```php namespace App\Service\Dao; use App\Constants\ErrorCode; use App\Exception\BusinessException; use App\Model\User; class UserDao extends Dao { /** * @param $id * @param bool $throw * @return */ public function first($id, $throw = true) { $model = User::query()->find($id); if ($throw && empty($model)) { throw new BusinessException(ErrorCode::USRE_NOT_EXIST); } return $model; } } ``` 那我們編寫對應的單元測試 ```php namespace HyperfTest\Cases; use HyperfTest\HttpTestCase; use App\Service\Dao\UserDao; /** * @internal * @coversNothing */ class UserTest extends HttpTestCase { public function testUserDaoFirst() { $model = \Hyperf\Utils\ApplicationContext::getContainer()->get(UserDao::class)->first(1); var_dump($model); $this->assertSame(1, $model->id); } } ``` 然後執行我們的單測 ``` composer test -- --filter=testUserDaoFirst ``` ## 測試替身 `Gerard Meszaros` 在 `Meszaros2007` 中介紹了測試替身的概念: 有時候對 `被測系統(SUT)` 進行測試是很困難的,因為它依賴於其他無法在測試環境中使用的元件。這有可能是因為這些元件不可用,它們不會返回測試所需要的結果,或者執行它們會有不良副作用。在其他情況下,我們的測試策略要求對被測系統的內部行為有更多控制或更多可見性。 如果在編寫測試時無法使用(或選擇不使用)實際的依賴元件(DOC),可以用測試替身來代替。測試替身不需要和真正的依賴元件有完全一樣的的行為方式;他只需要提供和真正的元件同樣的 API 即可,這樣被測系統就會以為它是真正的元件! 下面展示分別透過建構函式注入依賴、透過 `#[Inject]` 註釋注入依賴的測試替身 ### 建構函式注入依賴的測試替身 ```php demoApi = $demoApi; } public function test() { $result = $this->demoApi->test(); return $result; } } ``` ```php 1 ]; } } ``` ```php getContainer()->get(DemoLogic::class)->test(); $this->assertEquals(1, $res['status']); } /** * @return Container */ protected function getContainer() { $container = Mockery::mock(Container::class); $apiStub = $this->createMock(DemoApi::class); $apiStub->method('test')->willReturn([ 'status' => 1, ]); $container->shouldReceive('get')->with(DemoLogic::class)->andReturn(new DemoLogic($apiStub)); return $container; } } ``` ### 透過 Inject 註釋注入依賴的測試替身 ```php demoApi->test(); return $result; } } ``` ```php 1 ]; } } ``` ```php getContainer(); $res = $this->getContainer()->get(DemoLogic::class)->test(); $this->assertEquals(11, $res['status']); } /** * @return Container */ protected function getContainer() { $container = ApplicationContext::getContainer(); $apiStub = $this->createMock(DemoApi::class); $apiStub->method('test')->willReturn([ 'status' => 11 ]); $container->define(DemoApi::class, function () use ($apiStub) { return $apiStub; }); return $container; } } ``` # 單元測試覆蓋率 ## 使用 phpdbg 生成單元測試覆蓋率 修改 `phpunit.xml` 檔案內容為如下 ```xml // 需要執行單測的測試案例目錄 ./test // 需要統計單元測試覆蓋率的檔案 ./app // 生產單元測試覆蓋率時,需要忽略的檔案 ./app/excludeFile ``` 執行以下命令 ```shell phpdbg -dmemory_limit=1024M -qrr ./vendor/bin/co-phpunit -c phpunit.xml --colors=always ```