lamoda / codeception-wiremock-extension
Wiremock extension for Codeception
Requires
- php: >=8.0
- codeception/codeception: ^5.0.0
- wiremock-php/wiremock-php: ^2.35.1
Requires (Dev)
- codeception/module-asserts: ^3.0
- codeception/module-phpbrowser: ^3.0
- pdepend/pdepend: ^2.13.0
- phing/phing: ^2.17.4
- phpmd/phpmd: ^2.13.0
- squizlabs/php_codesniffer: ^3.7.2
This package is auto-updated.
Last update: 2024-10-17 11:26:01 UTC
README
This Codeception Extension allows developers and testers to use WireMock to mock external services when running codeception tests.
codeception-wiremock-extension connects to an already running instance of WireMock or can also run automatically a local standalone one. And, it is able to download the version of wiremock you preffer and run it too. After the tests are finished it will close the connection and turn wiremock service off (when it started it).
See also
Note
If you need an application with a functionality that is similar to the one offered by WireMock and is 100% PHP, please give Phiremock a try: Phiremock, it also has a nice codeception extension.
Installation
Composer:
This project is published in packagist, so you just need to add it as a dependency in your composer.json:
$ composer require lamoda/codeception-wiremock-extension
Configuration Examples
Module
The module allow you to connect to a WireMock instance, it can be the one ran by the extension or an already running one.
# acceptance.suite.yml modules: enabled: - WireMock: host: my.wiremock.host # defaults to 127.0.0.1 port: 80 # defaults to 8080
Extension
Default configuration
This configuration will download WireMock version 1.57 and run it on port 8080, writing logs to codeception tests _output dir.
# codeception.yml extensions: enabled: - Codeception\Extension\WireMock
Connect to a running WireMock instance
# codeception.yml extensions: enabled: - Codeception\Extension\WireMock config: Codeception\Extension\WireMock: host: my.wiremock.server port: 8080
Start a local WireMock instance and run it with given command line arguments
# codeception.yml extensions: enabled: - Codeception\Extension\WireMock config: Codeception\Extension\WireMock: jar-path: /opt/wiremock/bin/wiremock-standalone.jar port: 18080 https-port: 18443 verbose: true root-dir: /opt/wiremock/root
Download a WireMock instance and run it with given command line arguments
# codeception.yml extensions: enabled: - Codeception\Extension\WireMock config: Codeception\Extension\WireMock: download-version: 1.57 port: 18080 https-port: 18443 verbose: true root-dir: /opt/wiremock/root logs-path: /var/log/wiremock
How to use
Prepare your application
First of all, configure your application so when it is being tested it will replace its external services with WireMock. For instance, if you make some requests to a REST service located under http://your.rest.interface, replace that url in configuration with the url where WireMock runs, for instance: http://localhost:8080/rest_interface.
Write your tests
// YourCest.php class YourCest extends \Codeception\TestCase\Test { public function _after(\AcceptanceTester $I) { $I->cleanAllPreviousRequestsToWireMock(); } // tests public function tryToTest(\AcceptanceTester $I) { $I->expectRequestToWireMock( WireMock::get(WireMock::urlEqualTo('/some/url')) ->willReturn(WireMock::aResponse() ->withHeader('Content-Type', 'text/plain') ->withBody('Hello world!')) ); // Here you should execute your application in a way it requests wiremock. I do this directly to show it. $response = file_get_contents('http://localhost:18080/some/url'); $I->assertEquals('Hello world!', $response); $I->receivedRequestInWireMock( WireMock::getRequestedFor(WireMock::urlEqualTo('/some/url')) ); } // Also, you can access wiremock-php library directly public function moreComplexTest() { $wiremockPhp = Codeception\Extension\WiremockConnection::get(); // Now you can use wiremock-php library } }