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_rolescope
Felix Fontein 8bd68e7e41
Remove and prevent trailing whitespace (#10199)
* Remove trailing whitespace.

* Add no-trailing-whitespace extra test.

* Re-add needed trailing whitespace.

* Remove one more trailing whitespace.
2025-06-07 17:47:22 +02:00
..
tasks Remove and prevent trailing whitespace (#10199) 2025-06-07 17:47:22 +02:00
vars Keycloak client role scope (#8252) 2024-04-21 20:10:03 +02:00
aliases Keycloak client role scope (#8252) 2024-04-21 20:10:03 +02:00
README.md Keycloak client role scope (#8252) 2024-04-21 20:10:03 +02:00

Running keycloak_client_rolescope module integration test

To run Keycloak component info 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 integration tests:

ansible-test integration -v keycloak_client_rolescope --allow-unsupported --docker fedora35 --docker-network host

Cleanup:

docker stop mykeycloak