Add documentation for IntegrationTest host configs

This commit is contained in:
Paul Schaub 2019-09-28 01:17:22 +02:00
parent 03bde438ce
commit c3cc7461f1
Signed by: vanitasvitae
GPG Key ID: 62BEE9264BF17311
1 changed files with 26 additions and 16 deletions

View File

@ -58,24 +58,34 @@ debugger=console
### Framework properties ### Framework properties
| Name | | | Name | |
|----------------------|-------------------------------------------| |----------------------|---------------------------------------------|
| service | XMPP service to run the tests on | | service | XMPP service to run the tests on |
| serviceTlsPin | TLS Pin (used by [java-pinning](https://github.com/Flowdalic/java-pinning)) | | serviceTlsPin | TLS Pin (used by [java-pinning](https://github.com/Flowdalic/java-pinning)) |
| securityMode | Either 'required' or 'disabled' | | securityMode | Either 'required' or 'disabled' |
| replyTimeout | In milliseconds | | replyTimeout | In milliseconds |
| adminAccountUsername | Username of the XEP-0133 Admin account | | adminAccountUsername | Username of the XEP-0133 Admin account |
| adminAccountPassword | Password of the XEP-0133 Admin account | | adminAccountPassword | Password of the XEP-0133 Admin account |
| accountOneUsername | Username of the first XMPP account | | adminAccountHostname | Hostname to use for the Admin account |
| accountOnePassword | Password of the first XMPP account | | adminAccountPort | Port to use with the Admin account |
| accountTwoUsername | Username of the second XMPP account | | accountOneUsername | Username of the first XMPP account |
| accountTwoPassword | Password of the second XMPP account | | accountOnePassword | Password of the first XMPP account |
| accountThreeUsername | Username of the third XMPP account | | accountOneHostname | Hostname to use for the first XMPP account |
| accountThreePassword | Password of the third XMPP account | | accountOnePort | Port to use for the first XMPP account |
| accountTwoUsername | Username of the second XMPP account |
| accountTwoPassword | Password of the second XMPP account |
| accountTwoHostname | Hostname to use for the second XMPP account |
| accountTwoPort | Port to use for the second XMPP account |
| accountThreeUsername | Username of the third XMPP account |
| accountThreePassword | Password of the third XMPP account |
| accountThreeHostname | Hostname to use for the third XMPP account |
| accountThreePort | Port to use for the third XMPP account |
| debugger | 'console' for console debugger, 'enhanced' for the enhanced debugger | | debugger | 'console' for console debugger, 'enhanced' for the enhanced debugger |
| enabledTests | List of enabled tests | | enabledTests | List of enabled tests |
| disabledTests | List of disabled tests | | disabledTests | List of disabled tests |
| testPackages | List of packages with tests | | testPackages | List of packages with tests |
The hostname and port properties may come in handy when testing on clustered systems.
### Where to place the properties file ### Where to place the properties file