1. 程式人生 > 其它 >[PHP] hyperf單元測試模擬http請求

[PHP] hyperf單元測試模擬http請求

hyperf框架自帶單元測試工具

安裝完框架後

composer create-project hyperf/hyperf-skeleton

直接在test/Cases下編寫單元測試程式碼

比如我的兩個介面一個是 / , 一個是 /hello , 返回的必須都是json資訊才可以,直接返回字串,測試框架get方法得到的是null

在不啟動服務的情況下就可以進行測試,也可以看到列印資訊

測試/hello 介面

composer test -- --filter=testHello

<?php

declare(strict_types=1);
/**
 * This file is part of Hyperf.
 *
 * @link     
https://www.hyperf.io * @document https://hyperf.wiki * @contact [email protected] * @license https://github.com/hyperf/hyperf/blob/master/LICENSE */ namespace HyperfTest\Cases; use HyperfTest\HttpTestCase; /** * @internal * @coversNothing */ class ExampleTest extends HttpTestCase { public function testExample() { $
this->assertTrue(true); $res=$this->get('/'); var_dump($res); $this->assertTrue(is_array($res)); } public function testHello() { $res=$this->get("/hello"); var_dump($res); $this->assertSame(["hello","tsh"],$res); } }