O5ten / soapui-maven-example

Slim example repo for a SoapUI-maven automated build that triggers in test-phase. I was missing one as an example.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

SoapUI Maven Automation Example Build Status

This is an example setup for SoapUI-maven integration using a plain very basic pom to power up the soapui maven plugin. It can be used to bring API test-automation to your project or to use it as a service-monitoring tool.

Run with:

   mvn clean install

The SoapUI project contains one testsuite and a mockService on 8088 with a single resource /hello

The only testcase has three steps.

1. Start the mockservice

  http://localhost:8088/hello

which returns

{
   "hello": "world"
}

2. HTTP GET Request to http://localhost:8088/hello

And one assertion

Assert that payload contains "world"

3. Stop the mockservice

About

Slim example repo for a SoapUI-maven automated build that triggers in test-phase. I was missing one as an example.