2012-03-18 23:29:11 +01:00
|
|
|
|
|
|
|
# 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
|
2012-03-18 23:50:25 +01:00
|
|
|
import ansible.utils as utils
|
2012-03-26 01:05:27 +02:00
|
|
|
import ansible.callbacks as ans_callbacks
|
2012-03-18 23:29:11 +01:00
|
|
|
import os
|
|
|
|
import shutil
|
|
|
|
|
2012-03-26 01:05:27 +02:00
|
|
|
EVENTS = []
|
|
|
|
|
2012-03-18 23:29:11 +01:00
|
|
|
class TestCallbacks(object):
|
2012-03-26 01:05:27 +02:00
|
|
|
# using same callbacks class for both runner and playbook
|
2012-03-18 23:29:11 +01:00
|
|
|
|
|
|
|
def __init__(self):
|
2012-03-26 01:05:27 +02:00
|
|
|
pass
|
2012-03-18 23:29:11 +01:00
|
|
|
|
|
|
|
def set_playbook(self, playbook):
|
|
|
|
self.playbook = playbook
|
|
|
|
|
2012-11-19 16:30:30 +01:00
|
|
|
def on_no_hosts_remaining(self):
|
|
|
|
pass
|
|
|
|
|
2012-03-18 23:29:11 +01:00
|
|
|
def on_start(self):
|
2012-03-26 01:05:27 +02:00
|
|
|
EVENTS.append('start')
|
2012-03-18 23:29:11 +01:00
|
|
|
|
2012-08-01 04:26:45 +02:00
|
|
|
def on_skipped(self, host, item=None):
|
2012-03-26 01:05:27 +02:00
|
|
|
EVENTS.append([ 'skipped', [ host ]])
|
2012-03-24 01:51:15 +01:00
|
|
|
|
2012-03-20 03:42:31 +01:00
|
|
|
def on_import_for_host(self, host, filename):
|
2012-03-26 01:05:27 +02:00
|
|
|
EVENTS.append([ 'import', [ host, filename ]])
|
2012-03-20 03:42:31 +01:00
|
|
|
|
2012-03-31 17:45:29 +02:00
|
|
|
def on_error(self, host, msg):
|
2012-04-03 02:08:40 +02:00
|
|
|
EVENTS.append([ 'stderr', [ host, msg ]])
|
2012-03-31 17:45:29 +02:00
|
|
|
|
2012-03-21 02:44:01 +01:00
|
|
|
def on_not_import_for_host(self, host, missing_filename):
|
|
|
|
pass
|
|
|
|
|
2012-03-26 01:05:27 +02:00
|
|
|
def on_notify(self, host, handler):
|
|
|
|
EVENTS.append([ 'notify', [ host, handler ]])
|
|
|
|
|
2012-03-18 23:29:11 +01:00
|
|
|
def on_task_start(self, name, is_conditional):
|
2012-03-26 01:05:27 +02:00
|
|
|
EVENTS.append([ 'task start', [ name, is_conditional ]])
|
2012-03-18 23:29:11 +01:00
|
|
|
|
2012-08-01 21:17:16 +02:00
|
|
|
def on_failed(self, host, results, ignore_errors):
|
|
|
|
EVENTS.append([ 'failed', [ host, results, ignore_errors ]])
|
2012-03-18 23:29:11 +01:00
|
|
|
|
2012-03-24 01:51:15 +01:00
|
|
|
def on_ok(self, host, result):
|
2012-03-19 00:25:56 +01:00
|
|
|
# delete certain info from host_result to make test comparisons easier
|
2012-03-24 01:51:15 +01:00
|
|
|
host_result = result.copy()
|
2012-06-20 03:55:57 +02:00
|
|
|
for k in [ 'ansible_job_id', 'results_file', 'md5sum', 'delta', 'start', 'end' ]:
|
2012-03-19 00:25:56 +01:00
|
|
|
if k in host_result:
|
|
|
|
del host_result[k]
|
2012-03-21 03:29:21 +01:00
|
|
|
for k in host_result.keys():
|
|
|
|
if k.startswith('facter_') or k.startswith('ohai_'):
|
2012-08-07 03:00:21 +02:00
|
|
|
del host_result[k]
|
2012-03-26 01:05:27 +02:00
|
|
|
EVENTS.append([ 'ok', [ host, host_result ]])
|
2012-03-18 23:29:11 +01:00
|
|
|
|
|
|
|
def on_play_start(self, pattern):
|
2012-03-26 01:05:27 +02:00
|
|
|
EVENTS.append([ 'play start', [ pattern ]])
|
2012-03-18 23:29:11 +01:00
|
|
|
|
2012-04-26 20:35:19 +02:00
|
|
|
def on_async_ok(self, host, res, jid):
|
|
|
|
EVENTS.append([ 'async ok', [ host ]])
|
2012-03-18 23:29:11 +01:00
|
|
|
|
2012-04-26 20:35:19 +02:00
|
|
|
def on_async_poll(self, host, res, jid, clock):
|
2012-03-26 01:05:27 +02:00
|
|
|
EVENTS.append([ 'async poll', [ host ]])
|
2012-03-18 23:29:11 +01:00
|
|
|
|
2012-04-26 20:35:19 +02:00
|
|
|
def on_async_failed(self, host, res, jid):
|
|
|
|
EVENTS.append([ 'async failed', [ host ]])
|
|
|
|
|
2012-03-26 01:05:27 +02:00
|
|
|
def on_unreachable(self, host, msg):
|
|
|
|
EVENTS.append([ 'failed/dark', [ host, msg ]])
|
2012-03-18 23:29:11 +01:00
|
|
|
|
2012-07-14 18:24:19 +02:00
|
|
|
def on_setup(self):
|
2012-03-21 02:44:01 +01:00
|
|
|
pass
|
2012-08-07 03:00:21 +02:00
|
|
|
|
2012-04-12 03:05:46 +02:00
|
|
|
def on_no_hosts(self):
|
|
|
|
pass
|
2012-03-18 23:29:11 +01:00
|
|
|
|
2012-04-12 02:16:28 +02:00
|
|
|
class TestPlaybook(unittest.TestCase):
|
2012-03-18 23:29:11 +01:00
|
|
|
|
|
|
|
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()
|
|
|
|
|
2012-03-19 00:25:56 +01:00
|
|
|
if os.path.exists('/tmp/ansible_test_data_copy.out'):
|
|
|
|
os.unlink('/tmp/ansible_test_data_copy.out')
|
|
|
|
if os.path.exists('/tmp/ansible_test_data_template.out'):
|
|
|
|
os.unlink('/tmp/ansible_test_data_template.out')
|
|
|
|
|
2012-03-18 23:29:11 +01:00
|
|
|
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
|
2012-08-07 03:00:21 +02:00
|
|
|
|
2012-03-18 23:29:11 +01:00
|
|
|
def _get_stage_file(self, filename):
|
|
|
|
# get a file inside the test output directory
|
|
|
|
filename = os.path.join(self.stage_dir, filename)
|
|
|
|
return filename
|
|
|
|
|
2012-10-21 20:11:27 +02:00
|
|
|
def _run(self, test_playbook, host_list='test/ansible_hosts'):
|
2012-03-18 23:29:11 +01:00
|
|
|
''' run a module and get the localhost results '''
|
2012-11-04 16:01:58 +01:00
|
|
|
# This ensures tests are independent of eachother
|
2012-11-13 12:09:42 +01:00
|
|
|
global EVENTS
|
2012-11-04 16:01:58 +01:00
|
|
|
ansible.playbook.SETUP_CACHE.clear()
|
|
|
|
EVENTS = []
|
|
|
|
|
2012-03-18 23:29:11 +01:00
|
|
|
self.test_callbacks = TestCallbacks()
|
|
|
|
self.playbook = ansible.playbook.PlayBook(
|
|
|
|
playbook = test_playbook,
|
2012-10-21 20:11:27 +02:00
|
|
|
host_list = host_list,
|
2012-03-18 23:29:11 +01:00
|
|
|
module_path = 'library/',
|
|
|
|
forks = 1,
|
|
|
|
timeout = 5,
|
|
|
|
remote_user = self.user,
|
|
|
|
remote_pass = None,
|
2012-03-26 01:05:27 +02:00
|
|
|
stats = ans_callbacks.AggregateStats(),
|
|
|
|
callbacks = self.test_callbacks,
|
|
|
|
runner_callbacks = self.test_callbacks
|
2012-03-18 23:29:11 +01:00
|
|
|
)
|
2012-04-20 14:09:43 +02:00
|
|
|
result = self.playbook.run()
|
|
|
|
return result
|
2012-03-18 23:29:11 +01:00
|
|
|
|
|
|
|
def test_one(self):
|
2012-11-06 20:57:35 +01:00
|
|
|
pb = 'test/playbook1.yml'
|
2012-03-19 00:25:56 +01:00
|
|
|
actual = self._run(pb)
|
2012-04-12 02:27:17 +02:00
|
|
|
|
2012-08-07 03:00:21 +02:00
|
|
|
# if different, this will output to screen
|
2012-04-12 02:27:17 +02:00
|
|
|
print "**ACTUAL**"
|
2012-07-15 16:12:49 +02:00
|
|
|
print utils.jsonify(actual, format=True)
|
2012-08-07 03:00:21 +02:00
|
|
|
expected = {
|
2012-08-28 05:06:39 +02:00
|
|
|
"localhost": {
|
2012-08-07 03:00:21 +02:00
|
|
|
"changed": 9,
|
|
|
|
"failures": 0,
|
|
|
|
"ok": 11,
|
|
|
|
"skipped": 1,
|
2012-04-12 02:27:17 +02:00
|
|
|
"unreachable": 0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
print "**EXPECTED**"
|
2012-07-15 16:12:49 +02:00
|
|
|
print utils.jsonify(expected, format=True)
|
|
|
|
|
|
|
|
assert utils.jsonify(expected, format=True) == utils.jsonify(actual,format=True)
|
2012-03-19 00:25:56 +01:00
|
|
|
|
2012-03-19 00:50:22 +01:00
|
|
|
# make sure the template module took options from the vars section
|
|
|
|
data = file('/tmp/ansible_test_data_template.out').read()
|
2012-04-27 01:56:10 +02:00
|
|
|
print data
|
2012-03-19 00:50:22 +01:00
|
|
|
assert data.find("ears") != -1, "template success"
|
|
|
|
|
2012-11-04 16:01:58 +01:00
|
|
|
def test_lookups(self):
|
|
|
|
pb = os.path.join(self.test_dir, 'lookup_plugins.yml')
|
|
|
|
actual = self._run(pb)
|
|
|
|
|
|
|
|
# if different, this will output to screen
|
|
|
|
print "**ACTUAL**"
|
|
|
|
print utils.jsonify(actual, format=True)
|
|
|
|
expected = {
|
|
|
|
"localhost": {
|
|
|
|
"changed": 7,
|
|
|
|
"failures": 0,
|
|
|
|
"ok": 9,
|
|
|
|
"skipped": 1,
|
|
|
|
"unreachable": 0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
print "**EXPECTED**"
|
|
|
|
print utils.jsonify(expected, format=True)
|
|
|
|
|
|
|
|
assert utils.jsonify(expected, format=True) == utils.jsonify(actual,format=True)
|
|
|
|
|
2012-11-13 12:09:42 +01:00
|
|
|
print "len(EVENTS) = %d" % len(EVENTS)
|
|
|
|
assert len(EVENTS) == 26
|
2012-11-04 16:01:58 +01:00
|
|
|
|
2012-11-09 13:09:20 +01:00
|
|
|
def test_includes(self):
|
|
|
|
pb = os.path.join(self.test_dir, 'playbook-includer.yml')
|
|
|
|
actual = self._run(pb)
|
|
|
|
|
|
|
|
# if different, this will output to screen
|
|
|
|
print "**ACTUAL**"
|
|
|
|
print utils.jsonify(actual, format=True)
|
|
|
|
expected = {
|
|
|
|
"localhost": {
|
|
|
|
"changed": 0,
|
|
|
|
"failures": 0,
|
2012-11-13 12:12:18 +01:00
|
|
|
"ok": 10,
|
2012-11-09 13:09:20 +01:00
|
|
|
"skipped": 0,
|
|
|
|
"unreachable": 0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
print "**EXPECTED**"
|
|
|
|
print utils.jsonify(expected, format=True)
|
|
|
|
|
|
|
|
assert utils.jsonify(expected, format=True) == utils.jsonify(actual,format=True)
|
|
|
|
|
2012-08-14 05:36:51 +02:00
|
|
|
def test_playbook_vars(self):
|
|
|
|
test_callbacks = TestCallbacks()
|
|
|
|
playbook = ansible.playbook.PlayBook(
|
|
|
|
playbook=os.path.join(self.test_dir, 'test_playbook_vars', 'playbook.yml'),
|
|
|
|
host_list='test/test_playbook_vars/hosts',
|
|
|
|
stats=ans_callbacks.AggregateStats(),
|
|
|
|
callbacks=test_callbacks,
|
|
|
|
runner_callbacks=test_callbacks
|
|
|
|
)
|
|
|
|
playbook.run()
|
|
|
|
|
2012-05-31 22:06:21 +02:00
|
|
|
def test_yaml_hosts_list(self):
|
|
|
|
# Make sure playbooks support hosts: [host1, host2]
|
|
|
|
# TODO: Actually run the play on more than one host
|
|
|
|
test_callbacks = TestCallbacks()
|
|
|
|
playbook = ansible.playbook.PlayBook(
|
|
|
|
playbook=os.path.join(self.test_dir, 'hosts_list.yml'),
|
|
|
|
host_list='test/ansible_hosts',
|
|
|
|
stats=ans_callbacks.AggregateStats(),
|
|
|
|
callbacks=test_callbacks,
|
|
|
|
runner_callbacks=test_callbacks
|
|
|
|
)
|
2012-09-12 00:04:54 +02:00
|
|
|
play = ansible.playbook.Play(playbook, playbook.playbook[0], os.getcwd())
|
2012-05-31 22:06:21 +02:00
|
|
|
assert play.hosts == ';'.join(('host1', 'host2', 'host3'))
|
2012-09-17 22:57:33 +02:00
|
|
|
|