ec-europa / oe-poetry-behat
Poetry Client Behat extension.
Installs: 30 447
Dependents: 1
Suggesters: 1
Security: 0
Stars: 0
Watchers: 28
Forks: 0
Open Issues: 3
Requires
- php: >=5.6
- behat/behat: ^3.5
- ec-europa/oe-poetry-client: ^0.3.6
- internations/http-mock: ^0.14
- jeremeamia/superclosure: ^2.2
- symfony/yaml: ^3.3|^4.0
Requires (Dev)
- guzzle/guzzle: ~2.7|~3.0
- monolog/monolog: ~1.23
- openeuropa/code-review: ~1.0
- phpunit/phpunit: ~5.7||~6.0
This package is auto-updated.
Last update: 2024-10-28 18:28:33 UTC
README
Behat extension for the European Commission's Poetry Client.
Installation Using Docker Compose
Requirements:
Copy docker-compose.yml.dist
into docker-compose.yml
.
You can make any alterations you need for your local Docker setup. However, the defaults should be enough to set the
project up. Note that there are mac specific settings available in the docker-compose.yml.dist
.
Run:
$ docker-compose up -d
$ docker-compose exec web composer install
Setup
Load the Poetry context and configure the extension as shown below:
default: suites: default: contexts: - 'EC\Behat\PoetryExtension\Context\PoetryContext' extensions: EC\Behat\PoetryExtension: application: base_url: 'http://local.dev' # Required: application base URL running Poetry Client library. endpoint: '/my-endpoint' # Required: notification endpoint on your application.
The following extensive configuration allows you to further tweak the extension's behaviour:
default: suites: default: contexts: - 'EC\Behat\PoetryExtension\Context\PoetryContext' extensions: EC\Behat\PoetryExtension: application: base_url: 'http://local.dev' # Required: application base URL running the Poetry Client library. endpoint: '/my-endpoint' # Required: notification endpoint for your application. service: host: 'localhost' # Optional: host where mock Poetry service will be running, defaults to `localhost`. port: '28080' # Optional: mock Poetry service port, defaults to `28080`. endpoint: '/service' # Optional: mock Poetry service endpoint, defaults to `/service`. wsdl: '/wsdl' # Optional: mock Poetry service WSDL endpoint, defaults to `/wsdl`. username: 'username' # Optional: username used by the mock service to authenticate on your application, defaults to `username`. password: 'password' # Optional: password used by the mock service to authenticate on your application, defaults to `password`.
Service parameters can be also overridden in your Behat scenarios (see below).
Usage
All scenarios and/or features that wish to use the extension's steps will need to be tagged with @poetry
.
To instantiate test Poetry client with redefined settings use:
Given the Poetry client uses the following settings: """ identifier.code: STSI identifier.year: 2017 identifier.number: 40017 identifier.version: 0 identifier.part: 11 client.wsdl: http://my-client.eu/wsdl notification.username: foo notification.password: bar """
To send a raw XML notification message to the client endpoint use:
When Poetry notifies the client with the following XML: """ <?xml version="1.0" encoding="UTF-8"?> ... """
Or, if you want to express the message in a withArray()
format, use:
When Poetry notifies the client with the following "notification.translation_received" message: """ identifier: code: "WEB" year: "2017" number: "40012" ... """
To setup test responses for the Poetry server use:
Given Poetry will return the following XML response: """ <?xml version="1.0" encoding="utf-8"?><POETRY xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://intragate.ec.europa.eu/DGT/poetry_services/poetry.xsd"> <request communication="synchrone" id="WEB/2017/40029/0/0/TRA" type="status"> <demandeId> <codeDemandeur>WEB</codeDemandeur> <annee>2017</annee> ... """
Or, if you want to express the message in a withArray()
format, use:
Given Poetry will return the following "response.status" message response: """ identifier: code: WEB year: 2017 number: 40029 version: 0 ... """
Client responses can be asserted by using the following step:
Then client response contains the following text: | <codeDemandeur>WEB</codeDemandeur> | | <annee>2017</annee> | | <statusMessage>OK</statusMessage> |
Or, if you want to assert XML portions, use:
And Poetry service received request should contain the following XML portion: """ <documentSource format="HTML" legiswrite="No"> <documentSourceName>content.html</documentSourceName> <documentSourceFile>BASE64ENCODEDFILECONTENT</documentSourceFile> <documentSourceLang lgCode="EN"> <documentSourceLangPages>1</documentSourceLangPages> </documentSourceLang> </documentSource> """
Application parameters can be overridden by using the following step:
When Poetry service uses the following settings: """ username: foo password: bar """
For more detailed examples please refer to the Poetry Behat Extension's tests features baring in mind that
steps beginning with Given the test application...
are only used to test the extension itself and, thus, not available
to the extension users.
Token replacement
Both Behat extension settings and current Poetry client settings can be used in Behat steps as replacement tokens. The following tokens will be automatically replaced:
- Behat extension settings in dot-notation prefixed by
!
, like!service.host
or!service.port
- Poetry client string settings in dot-notation prefixed by
!poetry.
, like!poetry.client.wsdl
.
Token replacements can be used as follow:
And Poetry service received request should contain the following XML portion: """ <retour type="webService" action="UPDATE"> <retourUser>foo</retourUser> <retourPassword>bar</retourPassword> <retourAddress>!poetry.client.wsdl</retourAddress> <retourPath>handle</retourPath> </retour> """