1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2026-03-22 05:09:12 +00:00
community.general/tests/integration/targets/keycloak_client
patchback[bot] 5807791c80
[PR #11357/ddf05104 backport][stable-11] Add missing integration test aliases files (#11371)
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:05 +01:00
..
tasks [PR #10842/f34842b7 backport][stable-11] Keycloak client scope support (#10882) 2025-10-06 18:28:38 +02:00
vars [PR #10842/f34842b7 backport][stable-11] Keycloak client scope support (#10882) 2025-10-06 18:28:38 +02:00
aliases [PR #11357/ddf05104 backport][stable-11] Add missing integration test aliases files (#11371) 2026-01-02 15:03:05 +01:00
README.md [PR #10842/f34842b7 backport][stable-11] Keycloak client scope support (#10882) 2025-10-06 18:28:38 +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