Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
ansible
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
ansible
Commits
01708cc8
Commit
01708cc8
authored
Aug 21, 2015
by
Brian Coca
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added test for environment directive
parent
2787b3ac
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
56 additions
and
1 deletions
+56
-1
test/integration/Makefile
+4
-1
test/integration/test_environment.yml
+52
-0
No files found.
test/integration/Makefile
View file @
01708cc8
...
@@ -21,7 +21,7 @@ VAULT_PASSWORD_FILE = vault-password
...
@@ -21,7 +21,7 @@ VAULT_PASSWORD_FILE = vault-password
CONSUL_RUNNING
:=
$(
shell
python consul_running.py
)
CONSUL_RUNNING
:=
$(
shell
python consul_running.py
)
all
:
parsing test_var_precedence unicode test_templating_settings non_destructive destructive includes check_mode test_hash test_handlers test_group_by test_vault test_tags test_lookup_paths
all
:
parsing test_var_precedence unicode test_templating_settings
environment
non_destructive destructive includes check_mode test_hash test_handlers test_group_by test_vault test_tags test_lookup_paths
parsing
:
parsing
:
ansible-playbook bad_parsing.yml
-i
$(INVENTORY)
-e
@
$(VARS_FILE)
$(CREDENTIALS_ARG)
-vvv
$(TEST_FLAGS)
--tags
prepare,common,scenario5
ansible-playbook bad_parsing.yml
-i
$(INVENTORY)
-e
@
$(VARS_FILE)
$(CREDENTIALS_ARG)
-vvv
$(TEST_FLAGS)
--tags
prepare,common,scenario5
...
@@ -38,6 +38,9 @@ unicode:
...
@@ -38,6 +38,9 @@ unicode:
test_templating_settings
:
test_templating_settings
:
ansible-playbook test_templating_settings.yml
-i
$(INVENTORY)
-e
@
$(VARS_FILE)
$(CREDENTIALS_ARG)
-v
$(TEST_FLAGS)
ansible-playbook test_templating_settings.yml
-i
$(INVENTORY)
-e
@
$(VARS_FILE)
$(CREDENTIALS_ARG)
-v
$(TEST_FLAGS)
environment
:
ansible-playbook test_environment.yml
-i
$(INVENTORY)
-e
@
$(VARS_FILE)
$(CREDENTIALS_ARG)
$(TEST_FLAGS)
non_destructive
:
non_destructive
:
ansible-playbook non_destructive.yml
-i
$(INVENTORY)
-e
@
$(VARS_FILE)
$(CREDENTIALS_ARG)
-v
$(TEST_FLAGS)
ansible-playbook non_destructive.yml
-i
$(INVENTORY)
-e
@
$(VARS_FILE)
$(CREDENTIALS_ARG)
-v
$(TEST_FLAGS)
...
...
test/integration/test_environment.yml
0 → 100644
View file @
01708cc8
-
hosts
:
testhost
vars
:
-
test1
:
key1
:
val1
roles
:
-
{
role
:
prepare_tests
}
tasks
:
-
name
:
check that envvar does not exist
shell
:
echo $key1
register
:
test_env
-
assert
:
that
:
-
'
"val1"
not
in
test_env.stdout'
-
name
:
check that envvar does exist
shell
:
echo $key1
environment
:
"
{{test1}}"
register
:
test_env2
-
assert
:
that
:
-
'
"val1"
in
test_env2.stdout'
-
hosts
:
testhost
tasks
:
vars
:
-
test1
:
key1
:
val1
-
test2
:
key1
:
not1
other1
:
val2
environment
:
"
{{test1}}"
tasks
:
-
name
:
check that play envvar does exist
shell
:
echo $key1
register
:
test_env
-
assert
:
that
:
-
'
"val1"
in
test_env.stdout'
-
name
:
check that task envvar does exist
shell
:
echo $key1; echo $other1
register
:
test_env2
environment
:
"
{{test2}}"
-
assert
:
that
:
-
'
"val1"
not
in
test_env2.stdout'
-
'
"not1"
in
test_env2.stdout'
-
'
"val2"
in
test_env2.stdout'
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment