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] f53804f542
[PR #11357/ddf05104 backport][stable-10] Add missing integration test aliases files (#11370)
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:02:58 +01:00
..
tasks [stable-10] Adjust YAML files (#10233) (#10244) 2025-06-15 10:02:03 +02:00
vars [PR #9644/250dc113 backport][stable-10] Fb keycloak client improvement (#9671) 2025-02-01 22:46:14 +01:00
aliases [PR #11357/ddf05104 backport][stable-10] Add missing integration test aliases files (#11370) 2026-01-02 15:02:58 +01:00
README.md Fixes #1226 - keycloak_client detects changes on check_mode but not in run mode (#7881) 2024-02-17 12:31:45 +01: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 fedora35 --docker-network host

Cleanup:

docker stop mykeycloak