PhpServerContext- starts and stops PHP's built-in web server around each scenario:- Serves files from a configurable document root.
- Configurable protocol, host and port.
- Tag a scenario or a whole feature with
@phpserverto opt in.
ApiServerContext- runs a mock API server that replays queued responses:- Step definitions to queue responses inline, as JSON, or from a fixture file.
- Step definitions to assert how many requests arrived and how many responses are still queued.
- Records every received request for debugging.
- Tag a scenario or a whole feature with
@apiserverto opt in.
Requires PHP 8.2 or newer.
composer require --dev drevops/behat-phpserver
Serves static assets from a pre-defined document root.
default:
suites:
default:
contexts:
- DrevOps\BehatPhpServer\PhpServerContext:
webroot: '%paths.base%/tests/behat/fixtures'
protocol: http
host: 0.0.0.0
port: 8888
debug: falseThis context adds no step definitions. It starts the server before a tagged scenario and stops it afterwards, so tag the scenarios that need it:
@phpserver
Scenario: Visit a page served by the PHP server
...Tagging the Feature: line instead starts the server for every scenario in that feature.
Reach the running server through getServerUrl() - see Accessing the server URL from your own context.
Serves pre-set API responses. It extends PhpServerContext, so it accepts the same options plus paths.
default:
suites:
default:
contexts:
- DrevOps\BehatPhpServer\ApiServerContext:
webroot: '%paths.base%/apiserver'
protocol: http
host: 0.0.0.0
port: 8889
debug: false
paths:
- '%paths.base%/tests/behat/fixtures'
- '%paths.base%/tests/behat/fixtures2'| Option | Default | Description |
|---|---|---|
webroot |
See below | Document root the server serves from. Must exist, or the constructor throws. |
host |
127.0.0.1 |
Server host. |
port |
8888 |
Server port. |
protocol |
http |
Server protocol, used to build the server URL. |
debug |
false |
Print verbose output about server start, stop and connection attempts. |
connection_timeout |
2 |
Seconds to keep retrying a connection before the server is declared failed. |
retry_delay |
100000 |
Microseconds to wait between connection retries. |
paths |
<webroot>/../tests/behat/fixtures |
ApiServerContext only. One path or a list of paths searched, in order, for file responses. |
ApiServerContext defaults webroot to the bundled apiserver directory. PhpServerContext has no usable default, so always set it.
Both contexts default to port 8888. When both are registered, give each one its own port, as shown above.
# Start the API server if it is not already running.
Given the API server is running
# Clear all queued responses and all recorded requests.
Given the API server is reset
# Clear only the queued responses, leaving recorded requests intact.
Given the API has no responses# Queue a response with full control over code, reason, headers and body.
Given API will respond with:
"""
{
"code": 200,
"reason": "OK",
"headers": {
"Content-Type": "application/json"
},
"body": {
"Id": "test-id-1",
"Slug": "test-slug-1"
}
}
"""
# Every field except "code" may be omitted.
Given API will respond with:
"""
{
"code": 200
}
"""
# Queue a JSON body, defaulting to a 200 response.
Given API will respond with JSON:
"""
{
"Id": "test-id-1",
"Slug": "test-slug-1"
}
"""
# Queue a JSON body with an explicit response code.
Given API will respond with JSON and 201 code:
"""
{
"Id": "test-id-2",
"Slug": "test-slug-2"
}
"""
# Queue the contents of a fixture file, with the content type detected
# from its extension.
Given API will respond with file "test_data.json"
# Queue a fixture file with an explicit response code.
Given API will respond with file "test_content.xml" and 201 codeResponses are replayed in the order they were queued, one per request.
# Assert how many requests the server received.
Then the API server should have 3 received requests
# Assert how many responses are still waiting to be replayed.
Then the API server should have 0 queued responses
# Print every recorded request to stdout.
When I debug API requestsBoth assertion steps also accept the alternative phrasings the API server should have received 3 requests and the API server should have 0 responses queued, and both accept a singular noun for a count of one.
See the test feature for worked examples of every step.
API will respond with file reads a file from the configured paths, searching each path in the order given until it finds a match. The content type is derived from the file extension:
| Extension | Content-Type |
|---|---|
.json |
application/json |
.xml |
application/xml |
.html, .htm |
text/html |
.txt |
text/plain |
| anything else | application/octet-stream |
To point an API client at the running server, read the URL in a beforeScenario hook:
<?php
declare(strict_types=1);
use Behat\Behat\Context\Context;
use Behat\Behat\Context\Environment\InitializedContextEnvironment;
use Behat\Behat\Hook\Scope\BeforeScenarioScope;
use DrevOps\BehatPhpServer\ApiServerContext;
use DrevOps\BehatPhpServer\PhpServerContext;
class FeatureContext implements Context {
/**
* The PHP server URL.
*/
protected string $phpServerUrl;
/**
* The API server URL.
*/
protected string $apiServerUrl;
/**
* Initialize the context.
*
* @beforeScenario
*/
public function beforeScenarioInit(BeforeScenarioScope $scope): void {
$environment = $scope->getEnvironment();
if (!$environment instanceof InitializedContextEnvironment) {
throw new \Exception('Environment is not initialized');
}
$context = $environment->getContext(PhpServerContext::class);
$this->phpServerUrl = $context->getServerUrl();
$context = $environment->getContext(ApiServerContext::class);
$this->apiServerUrl = $context->getServerUrl();
}
}The step definitions cover the common cases. The mock server also exposes the endpoints directly, which is useful when driving it from code rather than from Gherkin.
| Method | Endpoint | Result |
|---|---|---|
GET |
/admin/status |
200 OK. Reports the counts in the headers below. |
GET |
/admin/requests |
200 OK with the recorded requests as JSON. |
DELETE |
/admin/requests |
200 OK. Clears the recorded requests. |
GET |
/admin/responses |
200 OK with the queued responses as JSON. |
DELETE |
/admin/responses |
200 OK. Clears the queued responses. |
PUT |
/admin/responses |
201 Created. Appends the posted responses to the queue. |
These endpoints and the replayed responses carry an X-Received-Requests and an X-Queued-Responses header with the current counts. Error responses do not.
Any other request is recorded and answered with the next queued response. When the queue is empty, the server answers 500 with No responses in queue.
PUT /admin/responses takes an array of response objects:
[
{
"code": 200,
"reason": "OK",
"headers": {},
"body": ""
},
{
"code": 404,
"reason": "Not found",
"headers": {},
"body": ""
}
]body must be base64-encoded - the server decodes it before replaying the response. The step definitions do this encoding for you, so it only matters when calling the endpoint directly. code must be between 100 and 599; reason must be a non-empty string; header names and values must be scalars.
See CONTRIBUTING.md for local setup, linting, testing and maintenance.
This repository was created using the Scaffold project template
