|
1 |
| -# mule-http-mockserver |
2 |
| -HTTP MockServer for Mule Munit Testing of HTTP APIs |
| 1 | +# HTTP MockServer Extension |
| 2 | + |
| 3 | +HTTP MockServer Extension for MUnit. |
| 4 | + |
| 5 | +This extension allows to use [MockServer](https://www.mock-server.com/#what-is-mockserver) in MUnit Testing for mocking and verifying HTTP invocations from the application flows. |
| 6 | + |
| 7 | +## Installation |
| 8 | + |
| 9 | +Add this dependency to your application pom.xml |
| 10 | + |
| 11 | +``` |
| 12 | +<groupId>com.avioconsulting.munit</groupId> |
| 13 | +<artifactId>munit-http-mockserver</artifactId> |
| 14 | +<version>${munit-http-mockserver.version}</version> |
| 15 | +<classifier>mule-plugin</classifier> |
| 16 | +<scope>test</scope> |
| 17 | +``` |
| 18 | + |
| 19 | +See latest version on [Maven Central](https://central.sonatype.com/search?namespace=com.avioconsulting.munit&name=munit-http-mockserver). |
| 20 | + |
| 21 | +## Usage |
| 22 | + |
| 23 | +Consider a Mule app with following HTTP Request configuration and usage - |
| 24 | + |
| 25 | +```xml |
| 26 | + |
| 27 | + <http:request-config name="HTTP_Request_configuration"> |
| 28 | + <http:request-connection host="0.0.0.0" port="8081" /> |
| 29 | + </http:request-config> |
| 30 | + |
| 31 | + <flow name="munit-http-mockserver-demoFlow"> |
| 32 | + <http:request method="GET" config-ref="HTTP_Request_configuration" path="/api/info"/> |
| 33 | + </flow> |
| 34 | + |
| 35 | +``` |
| 36 | + |
| 37 | +To use MockServer for above request configuration, create a global configuration in your MUnit Test suite - |
| 38 | + |
| 39 | +```xml |
| 40 | + <http-mockserver:config name="HTTP_MockServer_Config"> |
| 41 | + <http-mockserver:connection port="8081" /> |
| 42 | + </http-mockserver:config> |
| 43 | +``` |
| 44 | + |
| 45 | +For advanced configuration of the MockServer, [system properties approach](https://www.mock-server.com/mock_server/configuration_properties.html) can be used to define a custom `src/test/resources/mockserver.properties` file. |
| 46 | + |
| 47 | +Following test uses above configuration to set an expectation and verification using module operations - |
| 48 | + |
| 49 | +```xml |
| 50 | +<munit:test name="http-mock-valid-expectation-test" doc:id="faf60afd-0a61-415f-aab0-3f0565e49432" description="Set Valid expectation"> |
| 51 | + <munit:behavior > |
| 52 | + <http-mockserver:set-expectation config-ref="HTTP_MockServer_Config"> |
| 53 | + <http-mockserver:expectation ><![CDATA[#[output application/json |
| 54 | +--- |
| 55 | +{ |
| 56 | + "id": "valid-expectation-id-1", |
| 57 | + "httpRequest" : { |
| 58 | + "method" : "GET", |
| 59 | + "path" : "/api/info" |
| 60 | + }, |
| 61 | + "httpResponse" : { |
| 62 | + "body" : "some_response_body", |
| 63 | + "statusCode": 201 |
| 64 | + } |
| 65 | +}]]]></http-mockserver:expectation> |
| 66 | + </http-mockserver:set-expectation> |
| 67 | + </munit:behavior> |
| 68 | + <munit:execution> |
| 69 | + <flow-ref name="munit-http-mockserver-demoFlow"/> |
| 70 | + </munit:execution> |
| 71 | + <munit:validation> |
| 72 | + <munit-tools:assert-equals actual="#[attributes.statusCode]" expected="#[201]"/> |
| 73 | + <http-mockserver:verify-expectation comparison="AT_LEAST" config-ref="HTTP_MockServer_Config" expectationId="valid-expectation-id-1" count="1"/> |
| 74 | + </munit:validation> |
| 75 | + </munit:test> |
| 76 | +``` |
| 77 | + |
| 78 | +To reduce the HTTP logging from MockServer, you may set `org.mockserver.log.MockServerEventLog` category to `WARN`. |
| 79 | + |
| 80 | +See [modules tests](./src/test/munit/) for more examples and [connector documentation](./docs/1.0.x/munit-http-mockserver-documentation.adoc) for supported operations. |
| 81 | + |
| 82 | +Resources to learn about MockServer usage - |
| 83 | +- https://github.com/mock-server/mockserver/blob/master/mockserver-examples/json_examples.md |
0 commit comments