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
45abe3c1
Commit
45abe3c1
authored
Mar 18, 2012
by
Michael DeHaan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add unit tests for playbooks, and fix an error caught by one
parent
9c5ec886
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
159 additions
and
2 deletions
+159
-2
lib/ansible/playbook.py
+2
-1
test/TestPlayBook.py
+122
-0
test/TestRunner.py
+1
-1
test/playbook1.yml
+34
-0
No files found.
lib/ansible/playbook.py
View file @
45abe3c1
...
...
@@ -83,6 +83,7 @@ class PlayBook(object):
# playbook file can be passed in as a path or
# as file contents (to support API usage)
print
"DEBUG: playbook=
%
s"
%
playbook
self
.
basedir
=
os
.
path
.
dirname
(
playbook
)
self
.
playbook
=
self
.
_parse_playbook
(
playbook
)
...
...
@@ -471,7 +472,7 @@ class PlayBook(object):
for
(
host
,
host_result
)
in
contacted_hosts
.
iteritems
():
if
'failed'
in
host_result
:
self
.
callbacks
.
on_failed
(
host
,
host_result
)
self
.
fail
ed
[
host
]
=
1
self
.
fail
ures
[
host
]
=
1
# now for each result, load into the setup cache so we can
# let runner template out future commands
...
...
test/TestPlayBook.py
0 → 100644
View file @
45abe3c1
# tests are fairly 'live' (but safe to run)
# setup authorized_keys for logged in user such
# that the user can log in as themselves before running tests
import
unittest
import
getpass
import
ansible.playbook
import
os
import
shutil
import
time
try
:
import
json
except
:
import
simplejson
as
json
class
TestCallbacks
(
object
):
def
__init__
(
self
):
self
.
tasks_started
=
[]
self
.
plays_started
=
[]
self
.
unreachable
=
{}
self
.
failed
=
{}
self
.
ok_counts
=
{}
self
.
poll_events
=
[]
self
.
dark
=
[]
def
results
(
self
):
return
dict
(
tasks_started
=
self
.
tasks_started
,
plays_started
=
self
.
plays_started
,
unreachable
=
self
.
unreachable
,
failed
=
self
.
failed
,
ok_counts
=
self
.
ok_counts
,
poll_events
=
self
.
poll_events
,
dark
=
self
.
dark
)
def
set_playbook
(
self
,
playbook
):
self
.
playbook
=
playbook
def
on_start
(
self
):
pass
def
on_task_start
(
self
,
name
,
is_conditional
):
self
.
tasks_started
.
append
(
name
)
def
on_unreachable
(
self
,
host
,
msg
):
self
.
unreachable
[
host
]
=
msg
def
on_failed
(
self
,
host
,
results
):
self
.
failed
[
host
]
=
results
def
on_ok
(
self
,
host
):
ok
=
self
.
ok_counts
.
get
(
host
,
0
)
self
.
ok_counts
[
host
]
=
ok
+
1
def
on_play_start
(
self
,
pattern
):
self
.
plays_started
.
append
(
pattern
)
def
on_async_confused
(
self
,
msg
):
raise
Exception
(
"confused:
%
s"
%
msg
)
def
on_async_poll
(
self
,
jid
,
host
,
clock
,
host_result
):
self
.
poll_events
.
append
([
jid
,
host
,
clock
.
host_result
])
def
on_dark_host
(
self
,
host
,
msg
):
self
.
dark
.
append
([
host
,
msg
])
class
TestRunner
(
unittest
.
TestCase
):
def
setUp
(
self
):
self
.
user
=
getpass
.
getuser
()
self
.
cwd
=
os
.
getcwd
()
self
.
test_dir
=
os
.
path
.
join
(
self
.
cwd
,
'test'
)
self
.
stage_dir
=
self
.
_prepare_stage_dir
()
def
_prepare_stage_dir
(
self
):
stage_path
=
os
.
path
.
join
(
self
.
test_dir
,
'test_data'
)
if
os
.
path
.
exists
(
stage_path
):
shutil
.
rmtree
(
stage_path
,
ignore_errors
=
False
)
assert
not
os
.
path
.
exists
(
stage_path
)
os
.
makedirs
(
stage_path
)
assert
os
.
path
.
exists
(
stage_path
)
return
stage_path
def
_get_test_file
(
self
,
filename
):
# get a file inside the test input directory
filename
=
os
.
path
.
join
(
self
.
test_dir
,
filename
)
assert
os
.
path
.
exists
(
filename
)
return
filename
def
_get_stage_file
(
self
,
filename
):
# get a file inside the test output directory
filename
=
os
.
path
.
join
(
self
.
stage_dir
,
filename
)
return
filename
def
_run
(
self
,
test_playbook
):
''' run a module and get the localhost results '''
self
.
test_callbacks
=
TestCallbacks
()
self
.
playbook
=
ansible
.
playbook
.
PlayBook
(
playbook
=
test_playbook
,
host_list
=
'test/ansible_hosts'
,
module_path
=
'library/'
,
forks
=
1
,
timeout
=
5
,
remote_user
=
self
.
user
,
remote_pass
=
None
,
verbose
=
False
,
callbacks
=
self
.
test_callbacks
)
results
=
self
.
playbook
.
run
()
return
dict
(
results
=
results
,
callbacks
=
self
.
test_callbacks
.
results
(),
)
def
test_one
(
self
):
pb
=
os
.
path
.
join
(
self
.
test_dir
,
'playbook1.yml'
)
print
self
.
_run
(
pb
)
test/TestRunner.py
View file @
45abe3c1
...
...
@@ -22,7 +22,7 @@ class TestRunner(unittest.TestCase):
module_name
=
'ping'
,
module_path
=
'library/'
,
module_args
=
[],
remote_user
=
'root'
,
remote_user
=
self
.
user
,
remote_pass
=
None
,
host_list
=
'test/ansible_hosts'
,
timeout
=
5
,
...
...
test/playbook1.yml
0 → 100644
View file @
45abe3c1
# extremely simple test of the most basic of playbook engine/functions
---
-
hosts
:
all
vars
:
answer
:
"
I
think
so,
Brain,
but
if
they
called
them
sad
meals,
kids
wouldn't
buy
them."
port
:
5150
tasks
:
-
name
:
test basic success command
action
:
command /bin/true
-
name
:
test basic success command 2
action
:
command /bin/true
-
name
:
test basic shell
action
:
echo $HOME
-
name
:
test copy
action
:
copy src=sample.j2 dest=test_data/copy.out
-
name
:
test template
action
:
template src=sample.j2 dest=test_data/template.out
handlers
:
-
name
:
on change 1
action
:
command /bin/true
-
name
:
on change 2
action
:
command /bin/true
-
action
:
on change 3
action
:
command /bin/true
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