Download the PHP package liip/soap-recorder-bundle without Composer
On this page you can find all versions of the php package liip/soap-recorder-bundle. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download liip/soap-recorder-bundle
More information about liip/soap-recorder-bundle
Files in liip/soap-recorder-bundle
Package soap-recorder-bundle
Short Description A simple recorder for SOAP communication
License MIT
Homepage http://github.com/liip/LiipSoapRecorderBundle
Informations about the package soap-recorder-bundle
UNMAINTAINED
This bundle is no longer maintained. Feel free to fork it if needed.
LiipSoapRecorderBundle
This bundle provide an easy way to record SOAP communications. Typical usage could be:
- Generating a set of fixtures for functional test writing
- Recording a scenario and being able to replay it
- Mocking the webservice to work offline
- ...
Installation
- Install this bundle like any other SF2 bundle (Composer or git submodule install + Enable it in the kernel)
- Replace the base class SoapClient by the new Liip\SoapRecorderBundle\Client\RecordableSoapClient
Configuration
By default the bundle does nothing, to activate it, you just need to configure it:
Usage
To use the bundle, you can play with some config parameters:
- record can be set to
- true: to start communication recording
- false: to stop it
- fetching_mode can be set to:
- remote: Always fetch response from the WebService
- local_only: Always fetch response from the local recording
- local_first: Try to fetch locally, and if not recorded yet, fetch to the WebService
- enable_profiler can be set to:
- true: to display SOAP records in the Symfony2 Profiler. It will delete the recorded files from the directories.
- false: to keep the files in the directories without using the Symfony2 Profiler.
- die_on_error can be used to define the behaviour in case you are in local_only and a record is missing:
- false: Normal behavior, will throw an exception
- true: Will die() with an explicit message, this is useful on Symfony2 where sometimes the generated exception is replace by an AccessDeniedException who masked the original one
Usage outside Symfony2
The heart of the bundle is the class Liip\SoapRecorderBundle\Client\RecordableSoapClient. This class is independent, so you can use it outside of the Bundle, in any PHP 5.3 project:
- Replace your base class SoapClient by the new Liip\SoapRecorderBundle\Client\RecordableSoapClient
- Start recording by calling:
- Start playing your records
Contributing
If you would like to contribute, just go on the project page: https://github.com/liip/LiipSoapRecorderBundle, fork it and providing PRs.
This project comes with a functional test suite, just read the Tests/README.md for more information.
Travis CI is also running for continuous integration tests:
Requirements
PHP 5.3
Authors
- Pierre Vanhulst - Liip SA [email protected]
- David Jeanmonod - Liip SA [email protected]
License
LiipSoapRecorderBundle is licensed under the MIT License - see the LICENSE file for details