1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2026-02-04 07:51:50 +00:00
community.general/tests/integration/targets/keycloak_client
Felix Fontein ddf05104f3
Add missing integration test aliases files (#11357)
* Add missing aliases files.

* Fix directory name.

* Add another missing aliases file.

* Adjust test to also work with newer jsonpatch versions.
2026-01-02 09:34:06 +01:00
..
tasks Keycloak client scope support (#10842) 2025-10-06 18:16:27 +02:00
vars Keycloak client scope support (#10842) 2025-10-06 18:16:27 +02:00
aliases Add missing integration test aliases files (#11357) 2026-01-02 09:34:06 +01:00
README.md Keycloak client scope support (#10842) 2025-10-06 18:16:27 +02:00

Running keycloak_client module integration test

To run Keycloak client module's integration test, start a keycloak server using Docker:

docker run -d --rm --name mykeycloak -p 8080:8080 -e KEYCLOAK_ADMIN=admin -e KEYCLOAK_ADMIN_PASSWORD=password quay.io/keycloak/keycloak:latest start-dev --http-relative-path /auth

Run the integration tests:

ansible-test integration -v keycloak_client --allow-unsupported --docker --docker-network host

Cleanup:

docker stop mykeycloak