mirror of
https://github.com/ansible/awx.git
synced 2026-05-19 14:57:39 -02:30
Signed-off-by: kurokobo <2920259+kurokobo@users.noreply.github.com> Co-authored-by: Alan Rominger <arominge@redhat.com>
This commit is contained in:
@@ -89,7 +89,7 @@ def coerce_type(module, value):
|
|||||||
if not HAS_YAML:
|
if not HAS_YAML:
|
||||||
module.fail_json(msg="yaml is not installed, try 'pip install pyyaml'")
|
module.fail_json(msg="yaml is not installed, try 'pip install pyyaml'")
|
||||||
return yaml.safe_load(value)
|
return yaml.safe_load(value)
|
||||||
elif value.lower in ('true', 'false', 't', 'f'):
|
elif value.lower() in ('true', 'false', 't', 'f'):
|
||||||
return {'t': True, 'f': False}[value[0].lower()]
|
return {'t': True, 'f': False}[value[0].lower()]
|
||||||
try:
|
try:
|
||||||
return int(value)
|
return int(value)
|
||||||
|
|||||||
@@ -1,4 +1,42 @@
|
|||||||
---
|
---
|
||||||
|
- name: Initialize starting project vvv setting to false
|
||||||
|
awx.awx.settings:
|
||||||
|
name: "PROJECT_UPDATE_VVV"
|
||||||
|
value: false
|
||||||
|
|
||||||
|
- name: Change project vvv setting to true
|
||||||
|
awx.awx.settings:
|
||||||
|
name: "PROJECT_UPDATE_VVV"
|
||||||
|
value: true
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- name: Changing setting to true should have changed the value
|
||||||
|
assert:
|
||||||
|
that:
|
||||||
|
- "result is changed"
|
||||||
|
|
||||||
|
- name: Change project vvv setting to true
|
||||||
|
awx.awx.settings:
|
||||||
|
name: "PROJECT_UPDATE_VVV"
|
||||||
|
value: true
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- name: Changing setting to true again should not change the value
|
||||||
|
assert:
|
||||||
|
that:
|
||||||
|
- "result is not changed"
|
||||||
|
|
||||||
|
- name: Change project vvv setting back to false
|
||||||
|
awx.awx.settings:
|
||||||
|
name: "PROJECT_UPDATE_VVV"
|
||||||
|
value: false
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- name: Changing setting back to false should have changed the value
|
||||||
|
assert:
|
||||||
|
that:
|
||||||
|
- "result is changed"
|
||||||
|
|
||||||
- name: Set the value of AWX_ISOLATION_SHOW_PATHS to a baseline
|
- name: Set the value of AWX_ISOLATION_SHOW_PATHS to a baseline
|
||||||
settings:
|
settings:
|
||||||
name: AWX_ISOLATION_SHOW_PATHS
|
name: AWX_ISOLATION_SHOW_PATHS
|
||||||
|
|||||||
Reference in New Issue
Block a user