mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-23 20:29:08 +00:00
Keycloak client scope support (#10842)
* first commit
* sanity
* fixe test
* trailing white space
* sanity
* Fragment
* test sanity
* Update changelogs/fragments/10842-keycloak-client-scope-support.yml
* Update plugins/modules/keycloak_client.py
* add client_scopes_behavior
* Sanity
* Sanity
* Update plugins/modules/keycloak_client.py
* Fix typo.
* Update plugins/modules/keycloak_client.py
* Update plugins/modules/keycloak_client.py
* Update plugins/modules/keycloak_client.py
* Update plugins/modules/keycloak_client.py
---------
(cherry picked from commit f34842b7b2)
Co-authored-by: desand01 <desrosiers.a@hotmail.com>
Co-authored-by: Andre Desrosiers <andre.desrosiers@ssss.gouv.qc.ca>
Co-authored-by: Felix Fontein <felix@fontein.de>
Co-authored-by: Alexei Znamensky <103110+russoz@users.noreply.github.com>
19 lines
685 B
Markdown
19 lines
685 B
Markdown
<!--
|
|
Copyright (c) Ansible Project
|
|
GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
SPDX-License-Identifier: GPL-3.0-or-later
|
|
-->
|
|
|
|
# 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
|