-
-
Notifications
You must be signed in to change notification settings - Fork 479
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Add a test for pact-jvm-server
- Loading branch information
1 parent
85c9236
commit 3e501f5
Showing
2 changed files
with
141 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
135 changes: 135 additions & 0 deletions
135
pact-jvm-server/src/test/groovy/au/com/dius/pact/server/MainSpec.groovy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,135 @@ | ||
package au.com.dius.pact.server | ||
|
||
import groovy.json.JsonSlurper | ||
import org.apache.hc.client5.http.fluent.Request | ||
import org.apache.hc.core5.http.ContentType | ||
import org.apache.hc.core5.http.HttpResponse | ||
import spock.lang.Specification | ||
|
||
import java.util.concurrent.TimeUnit | ||
|
||
class MainSpec extends Specification { | ||
def 'application command line args'() { | ||
when: | ||
def process = invokeApp('--help') | ||
def result = process.waitFor() | ||
def out = process.inputReader().text | ||
|
||
then: | ||
result == 0 | ||
out == '''Usage: pact-jvm-server [options] [port] | ||
| | ||
| port port to run on (defaults to 29999) | ||
| --help prints this usage text | ||
| -h, --host <value> host to bind to (defaults to localhost) | ||
| -l, --mock-port-lower <value> | ||
| lower bound to allocate mock ports (defaults to 20000) | ||
| -u, --mock-port-upper <value> | ||
| upper bound to allocate mock ports (defaults to 40000) | ||
| -d, --daemon run as a daemon process | ||
| --debug run with debug logging | ||
| -v, --pact-version <value> | ||
| pact version to generate for (2 or 3) | ||
| -k, --keystore-path <value> | ||
| Path to keystore | ||
| -p, --keystore-password <value> | ||
| Keystore password | ||
| -s, --ssl-port <value> Ssl port the mock server should run on. lower and upper bounds are ignored | ||
| -b, --broker <value> URL of broker where to publish contracts to | ||
| -t, --token <value> Auth token for publishing the pact to broker | ||
|'''.stripMargin('|') | ||
} | ||
|
||
def 'start master server test'() { | ||
given: | ||
def process = invokeApp('--daemon', '31310') | ||
|
||
when: | ||
process.waitFor(500, TimeUnit.MILLISECONDS) | ||
def result = getRoot('31310') | ||
|
||
then: | ||
result == '{"ports": [], "paths": []}' | ||
|
||
cleanup: | ||
process.destroyForcibly() | ||
} | ||
|
||
def 'create mock server test'() { | ||
given: | ||
def pact = MainSpec.getResourceAsStream('/create-pact.json').text | ||
def process = invokeApp('--daemon', '--debug', '31311') | ||
|
||
when: | ||
process.waitFor(500, TimeUnit.MILLISECONDS) | ||
def result = createMock('31311', pact) | ||
|
||
then: | ||
result =~ /\{"port": \d+}/ | ||
|
||
when: | ||
def result2 = getRoot('31311') | ||
|
||
then: | ||
result2 ==~ /\{"ports": \[\d+], "paths": \["any"]}/ | ||
|
||
when: | ||
def mockJson = new JsonSlurper().parseText(result2) | ||
def result3 = getData(mockJson.ports[0]) | ||
|
||
then: | ||
result3.code == 204 | ||
|
||
when: | ||
def result4 = complete('31311', mockJson.ports[0]) | ||
|
||
then: | ||
result4 == '' | ||
|
||
when: | ||
def result5 = getRoot('31311') | ||
|
||
then: | ||
result5 == '{"ports": [], "paths": []}' | ||
|
||
cleanup: | ||
process.destroyForcibly() | ||
} | ||
|
||
Process invokeApp(String... args) { | ||
def exec = System.getProperty('appExecutable') | ||
List<String> command = [exec] | ||
command.addAll(args) | ||
ProcessBuilder pb = new ProcessBuilder(command) | ||
pb.start() | ||
} | ||
|
||
String getRoot(String port) { | ||
Request.get("http://127.0.0.1:$port/") | ||
.execute() | ||
.returnContent() | ||
.asString() | ||
} | ||
|
||
String createMock(String port, String pact) { | ||
Request.post("http://127.0.0.1:$port/create?state=any&path=any") | ||
.bodyString(pact, ContentType.APPLICATION_JSON) | ||
.execute() | ||
.returnContent() | ||
.asString() | ||
} | ||
|
||
String complete(String port, mockPort) { | ||
Request.post("http://127.0.0.1:$port/complete") | ||
.bodyString("{\"port\":$mockPort}", ContentType.APPLICATION_JSON) | ||
.execute() | ||
.returnContent() | ||
.asString() | ||
} | ||
|
||
HttpResponse getData(port) { | ||
Request.get("http://127.0.0.1:$port/data") | ||
.execute() | ||
.returnResponse() | ||
} | ||
} |