donatj/mock-webserver
Composer 安装命令:
composer require --dev donatj/mock-webserver
包简介
Simple mock web server for unit testing
README 文档
README
Simple, easy to use Mock Web Server for PHP unit testing. Gets along simply with PHPUnit and other unit testing frameworks.
Unit testing HTTP requests can be difficult, especially in cases where injecting a request library is difficult or not ideal. This helps greatly simplify the process.
Mock Web Server creates a local Web Server you can make predefined requests against.
Documentation
Requirements
- php: >=7.2
- ext-sockets: *
- ext-json: *
- ralouphie/getallheaders: ~2.0 || ~3.0
Installing
Install the latest version with:
composer require --dev 'donatj/mock-webserver'
Examples
Basic Usage
The following example shows the most basic usage. If you do not define a path, the server will simply bounce a JSON body describing the request back to you.
<?php use donatj\MockWebServer\MockWebServer; require __DIR__ . '/../vendor/autoload.php'; $server = new MockWebServer; $server->start(); $url = $server->getServerRoot() . '/endpoint?get=foobar'; echo "Requesting: $url\n\n"; echo file_get_contents($url);
Outputs:
Requesting: http://127.0.0.1:61874/endpoint?get=foobar
{
"_GET": {
"get": "foobar"
},
"_POST": [],
"_FILES": [],
"_COOKIE": [],
"HEADERS": {
"Host": "127.0.0.1:61874",
"Connection": "close"
},
"METHOD": "GET",
"INPUT": "",
"PARSED_INPUT": [],
"REQUEST_URI": "\/endpoint?get=foobar",
"PARSED_REQUEST_URI": {
"path": "\/endpoint",
"query": "get=foobar"
}
}
Simple
<?php use donatj\MockWebServer\MockWebServer; use donatj\MockWebServer\Response; require __DIR__ . '/../vendor/autoload.php'; $server = new MockWebServer; $server->start(); // We define the server's response to requests of the /definedPath endpoint $url = $server->setResponseOfPath( '/definedPath', new Response( 'This is our http body response', [ 'Cache-Control' => 'no-cache' ], 200 ) ); echo "Requesting: $url\n\n"; $content = file_get_contents($url); // $http_response_header is a little known variable magically defined // in the current scope by file_get_contents with the response headers echo implode("\n", $http_response_header) . "\n\n"; echo $content . "\n";
Outputs:
Requesting: http://127.0.0.1:61874/definedPath
HTTP/1.1 200 OK
Host: 127.0.0.1:61874
Date: Tue, 31 Aug 2021 19:50:15 GMT
Connection: close
X-Powered-By: PHP/7.3.25
Cache-Control: no-cache
Content-type: text/html; charset=UTF-8
This is our http body response
Change Default Response
<?php use donatj\MockWebServer\MockWebServer; use donatj\MockWebServer\Responses\NotFoundResponse; require __DIR__ . '/../vendor/autoload.php'; $server = new MockWebServer; $server->start(); // The default response is donatj\MockWebServer\Responses\DefaultResponse // which returns an HTTP 200 and a descriptive JSON payload. // // Change the default response to donatj\MockWebServer\Responses\NotFoundResponse // to get a standard 404. // // Any other response may be specified as default as well. $server->setDefaultResponse(new NotFoundResponse); $content = file_get_contents($server->getServerRoot() . '/PageDoesNotExist', false, stream_context_create([ 'http' => [ 'ignore_errors' => true ], // allow reading 404s ])); // $http_response_header is a little known variable magically defined // in the current scope by file_get_contents with the response headers echo implode("\n", $http_response_header) . "\n\n"; echo $content . "\n";
Outputs:
HTTP/1.1 404 Not Found
Host: 127.0.0.1:61874
Date: Tue, 31 Aug 2021 19:50:15 GMT
Connection: close
X-Powered-By: PHP/7.3.25
Content-type: text/html; charset=UTF-8
VND.DonatStudios.MockWebServer: Resource '/PageDoesNotExist' not found!
PHPUnit
<?php use donatj\MockWebServer\MockWebServer; use donatj\MockWebServer\Response; class ExampleTest extends PHPUnit\Framework\TestCase { /** @var MockWebServer */ protected static $server; public static function setUpBeforeClass() : void { self::$server = new MockWebServer; self::$server->start(); } public function testGetParams() : void { $result = file_get_contents(self::$server->getServerRoot() . '/autoEndpoint?foo=bar'); $decoded = json_decode($result, true); $this->assertSame('bar', $decoded['_GET']['foo']); } public function testGetSetPath() : void { // $url = http://127.0.0.1:61874/definedEndPoint $url = self::$server->setResponseOfPath('/definedEndPoint', new Response('foo bar content')); $result = file_get_contents($url); $this->assertSame('foo bar content', $result); } public static function tearDownAfterClass() : void { // stopping the web server during tear down allows us to reuse the port for later tests self::$server->stop(); } }
Delayed Response Usage
By default responses will happen instantly. If you're looking to test timeouts, the DelayedResponse response wrapper may be useful.
<?php use donatj\MockWebServer\DelayedResponse; use donatj\MockWebServer\MockWebServer; use donatj\MockWebServer\Response; require __DIR__ . '/../vendor/autoload.php'; $server = new MockWebServer; $server->start(); $response = new Response( 'This is our http body response', [ 'Cache-Control' => 'no-cache' ], 200 ); // Wrap the response in a DelayedResponse object, which will delay the response $delayedResponse = new DelayedResponse( $response, 100000 // sets a delay of 100000 microseconds (.1 seconds) before returning the response ); $realtimeUrl = $server->setResponseOfPath('/realtime', $response); $delayedUrl = $server->setResponseOfPath('/delayed', $delayedResponse); echo "Requesting: $realtimeUrl\n\n"; // This request will run as quickly as possible $start = microtime(true); file_get_contents($realtimeUrl); echo "Realtime Request took: " . (microtime(true) - $start) . " seconds\n\n"; echo "Requesting: $delayedUrl\n\n"; // The request will take the delayed time + the time it takes to make and transfer the request $start = microtime(true); file_get_contents($delayedUrl); echo "Delayed Request took: " . (microtime(true) - $start) . " seconds\n\n";
Outputs:
Requesting: http://127.0.0.1:61874/realtime
Realtime Request took: 0.015669107437134 seconds
Requesting: http://127.0.0.1:61874/delayed
Delayed Request took: 0.10729098320007 seconds
Multiple Responses from the Same Endpoint
Response Stack
If you need an ordered set of responses, that can be done using the ResponseStack.
<?php use donatj\MockWebServer\MockWebServer; use donatj\MockWebServer\Response; use donatj\MockWebServer\ResponseStack; require __DIR__ . '/../vendor/autoload.php'; $server = new MockWebServer; $server->start(); // We define the servers response to requests of the /definedPath endpoint $url = $server->setResponseOfPath( '/definedPath', new ResponseStack( new Response("Response One"), new Response("Response Two") ) ); echo "Requesting: $url\n\n"; $contentOne = file_get_contents($url); $contentTwo = file_get_contents($url); // This third request is expected to 404 which will error if errors are not ignored $contentThree = file_get_contents($url, false, stream_context_create([ 'http' => [ 'ignore_errors' => true ] ])); // $http_response_header is a little known variable magically defined // in the current scope by file_get_contents with the response headers echo $contentOne . "\n"; echo $contentTwo . "\n"; echo $contentThree . "\n";
Outputs:
Requesting: http://127.0.0.1:61874/definedPath
Response One
Response Two
Past the end of the ResponseStack
Response by Method
If you need to vary responses to a single endpoint by method, you can do that using the ResponseByMethod response object.
<?php use donatj\MockWebServer\MockWebServer; use donatj\MockWebServer\Response; use donatj\MockWebServer\ResponseByMethod; require __DIR__ . '/../vendor/autoload.php'; $server = new MockWebServer; $server->start(); // Create a response for both a POST and GET request to the same URL $response = new ResponseByMethod([ ResponseByMethod::METHOD_GET => new Response("This is our http GET response"), ResponseByMethod::METHOD_POST => new Response("This is our http POST response", [], 201), ]); $url = $server->setResponseOfPath('/foo/bar', $response); foreach( [ ResponseByMethod::METHOD_GET, ResponseByMethod::METHOD_POST ] as $method ) { echo "$method request to $url:\n"; $context = stream_context_create([ 'http' => [ 'method' => $method ] ]); $content = file_get_contents($url, false, $context); echo $content . "\n\n"; }
Outputs:
GET request to http://127.0.0.1:61874/foo/bar:
This is our http GET response
POST request to http://127.0.0.1:61874/foo/bar:
This is our http POST response
donatj/mock-webserver 适用场景与选型建议
donatj/mock-webserver 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 2.67M 次下载、GitHub Stars 达 138, 最近一次更新时间为 2017 年 04 月 24 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「http」 「testing」 「phpunit」 「unit testing」 「mock」 「webserver」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 donatj/mock-webserver 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 donatj/mock-webserver 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 donatj/mock-webserver 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
repository php library
HiDev plugin for PHPUnit
Testing Suite For Lumen like Laravel does.
A cli tool which generates unit tests.
The PHP SDK for Checkmango
PHPUnit DbUnit Native Array-based Fixtures
统计信息
- 总下载量: 2.67M
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 139
- 点击次数: 25
- 依赖项目数: 76
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2017-04-24