TestPlayBook.py 13.5 KB
Newer Older
1 2 3 4 5 6 7 8

# 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
9
import ansible.utils as utils
10
import ansible.callbacks as ans_callbacks
11 12
import os
import shutil
13
import ansible.constants as C
14

15 16
EVENTS = []

17
class TestCallbacks(object):
18
    # using same callbacks class for both runner and playbook
19 20

    def __init__(self):
21
        pass
22 23 24 25

    def set_playbook(self, playbook):
        self.playbook = playbook

26 27 28
    def on_no_hosts_remaining(self):
        pass

29
    def on_start(self):
30
        EVENTS.append('start')
31

32
    def on_skipped(self, host, item=None):
33
        EVENTS.append([ 'skipped', [ host ]])
34

35
    def on_import_for_host(self, host, filename):
36
        EVENTS.append([ 'import', [ host, filename ]])
37

38
    def on_error(self, host, msg):
39
        EVENTS.append([ 'stderr', [ host, msg ]])
40

41 42 43
    def on_not_import_for_host(self, host, missing_filename):
        pass

44 45 46
    def on_notify(self, host, handler):
        EVENTS.append([ 'notify', [ host, handler ]])

47
    def on_task_start(self, name, is_conditional):
48
        EVENTS.append([ 'task start', [ name, is_conditional ]])
49

Petros Moisiadis committed
50 51
    def on_failed(self, host, results, ignore_errors):
        EVENTS.append([ 'failed', [ host, results, ignore_errors ]])
52

53
    def on_ok(self, host, result):
54
        # delete certain info from host_result to make test comparisons easier
55
        host_result = result.copy()
56
        for k in [ 'ansible_job_id', 'results_file', 'md5sum', 'delta', 'start', 'end' ]:
57 58
            if k in host_result:
                del host_result[k]
59 60
        for k in host_result.keys():
            if k.startswith('facter_') or k.startswith('ohai_'):
Michael DeHaan committed
61
                del host_result[k]
62
        EVENTS.append([ 'ok', [ host, host_result ]])
63 64

    def on_play_start(self, pattern):
65
        EVENTS.append([ 'play start', [ pattern ]])
66

67 68
    def on_async_ok(self, host, res, jid):
        EVENTS.append([ 'async ok', [ host ]])
69

70
    def on_async_poll(self, host, res, jid, clock):
71
        EVENTS.append([ 'async poll', [ host ]])
72

73 74 75
    def on_async_failed(self, host, res, jid):
        EVENTS.append([ 'async failed', [ host ]])

76 77
    def on_unreachable(self, host, msg):
        EVENTS.append([ 'failed/dark', [ host, msg ]])
78

79
    def on_setup(self):
80
        pass
Michael DeHaan committed
81

82 83
    def on_no_hosts(self):
        pass
84

85
class TestPlaybook(unittest.TestCase):
86 87 88 89 90 91 92

   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()

93 94 95 96
       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')
97 98
       if os.path.exists('/tmp/ansible_test_messages.out'):
           os.unlink('/tmp/ansible_test_messages.out')
99 100
       if os.path.exists('/tmp/ansible_test_role_messages.out'):
           os.unlink('/tmp/ansible_test_role_messages.out')
101

102 103 104 105 106 107 108 109 110 111 112 113 114 115
   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
Michael DeHaan committed
116

117 118 119 120 121
   def _get_stage_file(self, filename):
       # get a file inside the test output directory
       filename = os.path.join(self.stage_dir, filename)
       return filename

122 123
   def _run(self, test_playbook, host_list='test/ansible_hosts', 
            extra_vars=None):
124
       ''' run a module and get the localhost results '''
125
       # This ensures tests are independent of eachother
126
       global EVENTS
127 128 129
       ansible.playbook.SETUP_CACHE.clear()
       EVENTS = []

130 131 132
       self.test_callbacks = TestCallbacks()
       self.playbook = ansible.playbook.PlayBook(
           playbook     = test_playbook,
133
           host_list    = host_list,
134 135 136 137 138
           module_path  = 'library/',
           forks        = 1,
           timeout      = 5,
           remote_user  = self.user,
           remote_pass  = None,
139
           extra_vars   = extra_vars,
140 141 142
           stats            = ans_callbacks.AggregateStats(),
           callbacks        = self.test_callbacks,
           runner_callbacks = self.test_callbacks
143
       )
144 145
       result = self.playbook.run()
       return result
146

147
   def test_playbook_vars(self):
148 149 150 151 152 153 154 155 156 157
       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()

158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191
   def _test_playbook_undefined_vars(self, playbook, fail_on_undefined):
       # save DEFAULT_UNDEFINED_VAR_BEHAVIOR so we can restore it in the end of the test
       saved_undefined_var_behavior = C.DEFAULT_UNDEFINED_VAR_BEHAVIOR
       C.DEFAULT_UNDEFINED_VAR_BEHAVIOR = fail_on_undefined

       test_callbacks = TestCallbacks()
       playbook = ansible.playbook.PlayBook(
           playbook=os.path.join(self.test_dir, 'test_playbook_undefined_vars', playbook),
           host_list='test/test_playbook_undefined_vars/hosts',
           stats=ans_callbacks.AggregateStats(),
           callbacks=test_callbacks,
           runner_callbacks=test_callbacks
       )
       actual = playbook.run()

       C.DEFAULT_UNDEFINED_VAR_BEHAVIOR = saved_undefined_var_behavior

       # if different, this will output to screen
       print "**ACTUAL**"
       print utils.jsonify(actual, format=True)
       expected =  {
           "localhost": {
               "changed": 0,
               "failures": 0,
               "ok": int(not fail_on_undefined) + 1,
               "skipped": 0,
               "unreachable": int(fail_on_undefined)
           }
       }
       print "**EXPECTED**"
       print utils.jsonify(expected, format=True)

       assert utils.jsonify(expected, format=True) == utils.jsonify(actual, format=True)

192 193
   #def test_playbook_undefined_vars1_ignore(self):
   #    self._test_playbook_undefined_vars('playbook1.yml', False)
194

195 196
   #def test_playbook_undefined_vars1_fail(self):
   #    self._test_playbook_undefined_vars('playbook1.yml', True)
197

198 199
   #def test_playbook_undefined_vars2_ignore(self):
   #    self._test_playbook_undefined_vars('playbook2.yml', False)
200

201 202
   #def test_playbook_undefined_vars2_fail(self):
   #    self._test_playbook_undefined_vars('playbook2.yml', True)
203

204 205 206 207 208 209 210 211 212 213 214
   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
       )
215
       play = ansible.playbook.Play(playbook, playbook.playbook[0], os.getcwd())
216
       assert play.hosts == ';'.join(('host1', 'host2', 'host3'))
217

218 219 220 221 222 223 224 225 226 227 228 229 230 231 232
   def test_playbook_hash_replace(self):
      # save default hash behavior so we can restore it in the end of the test
      saved_hash_behavior = C.DEFAULT_HASH_BEHAVIOUR
      C.DEFAULT_HASH_BEHAVIOUR = "replace"

      test_callbacks = TestCallbacks()
      playbook = ansible.playbook.PlayBook(
          playbook=os.path.join(self.test_dir, 'test_hash_behavior', 'playbook.yml'),
          host_list='test/ansible_hosts',
          stats=ans_callbacks.AggregateStats(),
          callbacks=test_callbacks,
          runner_callbacks=test_callbacks
      )
      playbook.run()

233 234
      filename = '/tmp/ansible_test_messages.out'
      expected_lines = [
235 236
        "goodbye: Goodbye World!"
      ]
237
      self._compare_file_output(filename, expected_lines)
238

239 240 241 242 243
      filename = '/tmp/ansible_test_role_messages.out'
      expected_lines = [
        "inside_a_role: Indeed!"
      ]
      self._compare_file_output(filename, expected_lines)
244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262

      # restore default hash behavior
      C.DEFAULT_HASH_BEHAVIOUR = saved_hash_behavior

   def test_playbook_hash_merge(self):
      # save default hash behavior so we can restore it in the end of the test
      saved_hash_behavior = C.DEFAULT_HASH_BEHAVIOUR
      C.DEFAULT_HASH_BEHAVIOUR = "merge"

      test_callbacks = TestCallbacks()
      playbook = ansible.playbook.PlayBook(
          playbook=os.path.join(self.test_dir, 'test_hash_behavior', 'playbook.yml'),
          host_list='test/ansible_hosts',
          stats=ans_callbacks.AggregateStats(),
          callbacks=test_callbacks,
          runner_callbacks=test_callbacks
      )
      playbook.run()

263 264 265 266 267 268
      filename = '/tmp/ansible_test_messages.out'
      expected_lines = [
        "goodbye: Goodbye World!",
        "hello: Hello World!"
      ]
      self._compare_file_output(filename, expected_lines)
269

270 271 272
      filename = '/tmp/ansible_test_role_messages.out'
      expected_lines = [
        "goodbye: Goodbye World!",
273
        "hello: Hello World!",
274
        "inside_a_role: Indeed!"
275
      ]
276
      self._compare_file_output(filename, expected_lines)
277 278 279

      # restore default hash behavior
      C.DEFAULT_HASH_BEHAVIOUR = saved_hash_behavior
280

281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308
   def test_playbook_ignore_errors(self):
       test_callbacks = TestCallbacks()
       playbook = ansible.playbook.PlayBook(
           playbook=os.path.join(self.test_dir, 'playbook-ignore-errors.yml'),
           host_list='test/ansible_hosts',
           stats=ans_callbacks.AggregateStats(),
           callbacks=test_callbacks,
           runner_callbacks=test_callbacks
       )
       actual = playbook.run()

       # if different, this will output to screen
       print "**ACTUAL**"
       print utils.jsonify(actual, format=True)
       expected =  {
           "localhost": {
               "changed": 1,
               "failures": 1,
               "ok": 1,
               "skipped": 0,
               "unreachable": 0
           }
       }
       print "**EXPECTED**"
       print utils.jsonify(expected, format=True)

       assert utils.jsonify(expected, format=True) == utils.jsonify(actual,format=True)

309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336
   def test_playbook_changed_when(self):
       test_callbacks = TestCallbacks()
       playbook = ansible.playbook.PlayBook(
           playbook=os.path.join(self.test_dir, 'playbook-changed_when.yml'),
           host_list='test/ansible_hosts',
           stats=ans_callbacks.AggregateStats(),
           callbacks=test_callbacks,
           runner_callbacks=test_callbacks
       )
       actual = playbook.run()

       # if different, this will output to screen
       print "**ACTUAL**"
       print utils.jsonify(actual, format=True)
       expected =  {
           "localhost": {
               "changed": 3,
               "failures": 0,
               "ok": 6,
               "skipped": 0,
               "unreachable": 0
           }
       }
       print "**EXPECTED**"
       print utils.jsonify(expected, format=True)

       assert utils.jsonify(expected, format=True) == utils.jsonify(actual,format=True)

337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364
   def test_playbook_failed_when(self):
       test_callbacks = TestCallbacks()
       playbook = ansible.playbook.PlayBook(
           playbook=os.path.join(self.test_dir, 'playbook-failed_when.yml'),
           host_list='test/ansible_hosts',
           stats=ans_callbacks.AggregateStats(),
           callbacks=test_callbacks,
           runner_callbacks=test_callbacks
       )
       actual = playbook.run()

       # if different, this will output to screen
       print "**ACTUAL**"
       print utils.jsonify(actual, format=True)
       expected =  {
           "localhost": {
               "changed": 2,
               "failures": 1,
               "ok": 2,
               "skipped": 0,
               "unreachable": 0
           }
       }
       print "**EXPECTED**"
       print utils.jsonify(expected, format=True)

       assert utils.jsonify(expected, format=True) == utils.jsonify(actual,format=True)

365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395

   def test_playbook_always_run(self):
      test_callbacks = TestCallbacks()
      playbook = ansible.playbook.PlayBook(
          playbook=os.path.join(self.test_dir, 'playbook-always-run.yml'),
          host_list='test/ansible_hosts',
          stats=ans_callbacks.AggregateStats(),
          callbacks=test_callbacks,
          runner_callbacks=test_callbacks,
          check=True
      )
      actual = playbook.run()

      # if different, this will output to screen
      print "**ACTUAL**"
      print utils.jsonify(actual, format=True)
      expected =  {
          "localhost": {
              "changed": 4,
              "failures": 0,
              "ok": 4,
              "skipped": 8,
              "unreachable": 0
          }
      }
      print "**EXPECTED**"
      print utils.jsonify(expected, format=True)

      assert utils.jsonify(expected, format=True) == utils.jsonify(actual,format=True)


396 397 398 399 400 401 402 403 404 405 406 407 408
   def _compare_file_output(self, filename, expected_lines):
      actual_lines = []
      with open(filename) as f:
        actual_lines = [l.strip() for l in f.readlines()]
        actual_lines = sorted(actual_lines)

      print "**ACTUAL**"
      print actual_lines

      print "**EXPECTED**"
      print expected_lines

      assert actual_lines == expected_lines