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-18 23:29:11 +01:00
|
|
|
import os
|
|
|
|
import shutil
|
|
|
|
import time
|
|
|
|
try:
|
|
|
|
import json
|
|
|
|
except:
|
|
|
|
import simplejson as json
|
|
|
|
|
|
|
|
class TestCallbacks(object):
|
|
|
|
|
|
|
|
def __init__(self):
|
2012-03-18 23:50:25 +01:00
|
|
|
self.events = []
|
2012-03-18 23:29:11 +01:00
|
|
|
|
|
|
|
def set_playbook(self, playbook):
|
|
|
|
self.playbook = playbook
|
|
|
|
|
|
|
|
def on_start(self):
|
2012-03-18 23:50:25 +01:00
|
|
|
self.events.append('start')
|
2012-03-18 23:29:11 +01:00
|
|
|
|
|
|
|
def on_task_start(self, name, is_conditional):
|
2012-03-18 23:50:25 +01:00
|
|
|
self.events.append([ 'task start', [ name, is_conditional ]])
|
2012-03-18 23:29:11 +01:00
|
|
|
|
|
|
|
def on_unreachable(self, host, msg):
|
2012-03-18 23:50:25 +01:00
|
|
|
self.events.append([ 'unreachable', [ host, msg ]])
|
2012-03-18 23:29:11 +01:00
|
|
|
|
|
|
|
def on_failed(self, host, results):
|
2012-03-18 23:50:25 +01:00
|
|
|
self.events.append([ 'failed', [ host, results ]])
|
2012-03-18 23:29:11 +01:00
|
|
|
|
2012-03-18 23:50:25 +01:00
|
|
|
# FIXME: this callback should get results too!
|
2012-03-18 23:29:11 +01:00
|
|
|
def on_ok(self, host):
|
2012-03-18 23:50:25 +01:00
|
|
|
self.events.append([ 'ok', [ host ]])
|
2012-03-18 23:29:11 +01:00
|
|
|
|
|
|
|
def on_play_start(self, pattern):
|
2012-03-18 23:50:25 +01:00
|
|
|
self.events.append([ 'play start', [ pattern ]])
|
2012-03-18 23:29:11 +01:00
|
|
|
|
|
|
|
def on_async_confused(self, msg):
|
2012-03-18 23:50:25 +01:00
|
|
|
self.events.append([ 'async confused', [ msg ]])
|
2012-03-18 23:29:11 +01:00
|
|
|
|
|
|
|
def on_async_poll(self, jid, host, clock, host_result):
|
2012-03-18 23:50:25 +01:00
|
|
|
self.events.append([ 'async poll', [ host, jid ]])
|
2012-03-18 23:29:11 +01:00
|
|
|
|
|
|
|
def on_dark_host(self, host, msg):
|
2012-03-18 23:50:25 +01:00
|
|
|
self.events.append([ 'failed/dark', [ host, msg ]])
|
2012-03-18 23:29:11 +01:00
|
|
|
|
2012-03-18 23:50:25 +01:00
|
|
|
# FIXME: callbacks need to be fired on notifiers as well
|
|
|
|
|
2012-03-18 23:29:11 +01:00
|
|
|
|
|
|
|
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(
|
2012-03-18 23:50:25 +01:00
|
|
|
results = results,
|
|
|
|
events = self.test_callbacks.events,
|
2012-03-18 23:29:11 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
def test_one(self):
|
|
|
|
pb = os.path.join(self.test_dir, 'playbook1.yml')
|
2012-03-18 23:50:25 +01:00
|
|
|
print utils.bigjson(self._run(pb))
|
|
|
|
assert False, "this test works, but we need to check the results values to complete it"
|