[KEYCLOAK-11345] - Test basic features of Keycloak.X with current tetsuite

This commit is contained in:
Pedro Igor
2020-03-06 10:29:55 -03:00
committed by Stian Thorgersen
parent 097a9b6e2e
commit b7a395a3ef
16 changed files with 529 additions and 2 deletions

View File

@@ -42,6 +42,26 @@ route add -net 224.0.0.0 netmask 240.0.0.0 dev lo
ifconfig lo multicast
```
#### Quarkus
To run the tests against a Quarkus Server:
```
mvn -Pauth-server-quarkus -Dauth.server.ssl.required=false clean verify
```
NOTE: At the moment the Quarkus server does not support SSL, thus it *must* be disabled.
To debug the server:
```
mvn -Pauth-server-quarkus -Dauth.server.ssl.required=false -Dauth.server.debug=true clean verify
```
By default, debug port is `5005`. To change it, set the `auth.server.debug.port` system property to another port.
NOTE: Not all tests are passing, this is a working in progress.
### App Servers / Adapter Tests
Lifecycle of application server is always tied to a particular TestClass.