mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-08-15 02:21:44 -07:00
* fix: remove jinja2 templating from conditionals in keycloak_role module integration tests (#9726) * fix: remove jinja2 templating in conditional in keycloak clientsecret info integration test (#9726) This test needs a further fix; see #9744. Left for a future PR for now. * fix: remove jinja2 templating in conditional in keycloak clientsecret regenerate integration test (#9726) * chore: remove jinja2 templating in conditional in keycloak user federation integration test (#9726) These instances of templating were not causing failures, but this removes the warnings. * chore: remove jinja2 templating in conditional in keycloak user rolemapping integration test (#9726) These instances of templating were not causing failures, but this removes the warnings. * docs: add changelog fragment (#9726) * docs: repair changelog fragment yaml (#9726) * docs: actually repair changelog fragment yaml (#9726) * chore: remove changelog fragment for test only pr (#9726)
This commit is contained in:
parent
8e324881a6
commit
910c57aaa0
5 changed files with 26 additions and 26 deletions
|
@ -45,8 +45,8 @@
|
|||
that:
|
||||
- result is changed
|
||||
- result.existing == {}
|
||||
- result.end_state.name == "{{ role }}"
|
||||
- result.end_state.containerId == "{{ realm }}"
|
||||
- result.end_state.name == role
|
||||
- result.end_state.containerId == realm
|
||||
|
||||
- name: Create existing realm role
|
||||
community.general.keycloak_role:
|
||||
|
@ -89,8 +89,8 @@
|
|||
assert:
|
||||
that:
|
||||
- result is changed
|
||||
- result.existing.description == "{{ description_1 }}"
|
||||
- result.end_state.description == "{{ description_2 }}"
|
||||
- result.existing.description == description_1
|
||||
- result.end_state.description == description_2
|
||||
|
||||
- name: Delete existing realm role
|
||||
community.general.keycloak_role:
|
||||
|
@ -156,8 +156,8 @@
|
|||
that:
|
||||
- result is changed
|
||||
- result.existing == {}
|
||||
- result.end_state.name == "{{ role }}"
|
||||
- result.end_state.containerId == "{{ client.end_state.id }}"
|
||||
- result.end_state.name == role
|
||||
- result.end_state.containerId == client.end_state.id
|
||||
|
||||
- name: Create existing client role
|
||||
community.general.keycloak_role:
|
||||
|
@ -202,8 +202,8 @@
|
|||
assert:
|
||||
that:
|
||||
- result is changed
|
||||
- result.existing.description == "{{ description_1 }}"
|
||||
- result.end_state.description == "{{ description_2 }}"
|
||||
- result.existing.description == description_1
|
||||
- result.end_state.description == description_2
|
||||
|
||||
- name: Delete existing client role
|
||||
community.general.keycloak_role:
|
||||
|
@ -480,4 +480,4 @@
|
|||
assert:
|
||||
that:
|
||||
- result is not changed
|
||||
- result.end_state == {}
|
||||
- result.end_state == {}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue