1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2026-04-10 05:55:13 +00:00
community.general/tests/integration/targets/keycloak_client
patchback[bot] 88eee5fbb4
[PR #11357/ddf05104 backport][stable-12] Add missing integration test aliases files (#11372)
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.

(cherry picked from commit ddf05104f3)

Co-authored-by: Felix Fontein <felix@fontein.de>
2026-01-02 15:03:07 +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 [PR #11357/ddf05104 backport][stable-12] Add missing integration test aliases files (#11372) 2026-01-02 15:03:07 +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