2013-02-28 17:07:02 +01:00
|
|
|
'''
|
|
|
|
Test bundled filters
|
|
|
|
'''
|
|
|
|
|
|
|
|
import unittest, tempfile, shutil
|
|
|
|
from ansible import playbook, inventory, callbacks
|
2013-09-21 12:57:25 +02:00
|
|
|
import ansible.runner.filter_plugins.core
|
2013-02-28 17:07:02 +01:00
|
|
|
|
|
|
|
INVENTORY = inventory.Inventory(['localhost'])
|
|
|
|
|
|
|
|
BOOK = '''
|
|
|
|
- hosts: localhost
|
|
|
|
vars:
|
|
|
|
var: { a: [1,2,3] }
|
|
|
|
tasks:
|
|
|
|
- template: src=%s dest=%s
|
|
|
|
'''
|
|
|
|
|
|
|
|
SRC = '''
|
|
|
|
-
|
|
|
|
{{ var|to_json }}
|
|
|
|
-
|
|
|
|
{{ var|to_nice_json }}
|
|
|
|
-
|
|
|
|
{{ var|to_yaml }}
|
|
|
|
-
|
|
|
|
{{ var|to_nice_yaml }}
|
|
|
|
'''
|
|
|
|
|
|
|
|
DEST = '''
|
|
|
|
-
|
|
|
|
{"a": [1, 2, 3]}
|
|
|
|
-
|
|
|
|
{
|
|
|
|
"a": [
|
|
|
|
1,
|
|
|
|
2,
|
|
|
|
3
|
|
|
|
]
|
|
|
|
}
|
|
|
|
-
|
|
|
|
a: [1, 2, 3]
|
|
|
|
|
|
|
|
-
|
|
|
|
a:
|
|
|
|
- 1
|
|
|
|
- 2
|
|
|
|
- 3
|
|
|
|
'''
|
|
|
|
|
|
|
|
class TestFilters(unittest.TestCase):
|
|
|
|
|
|
|
|
def setUp(self):
|
|
|
|
self.tmpdir = tempfile.mkdtemp(dir='/tmp')
|
|
|
|
|
|
|
|
def tearDown(self):
|
|
|
|
shutil.rmtree(self.tmpdir)
|
|
|
|
|
|
|
|
def temp(self, name, data=''):
|
|
|
|
'''write a temporary file and return the name'''
|
|
|
|
name = self.tmpdir + '/' + name
|
|
|
|
with open(name, 'w') as f:
|
|
|
|
f.write(data)
|
|
|
|
return name
|
|
|
|
|
2013-09-21 12:57:25 +02:00
|
|
|
def test_bool_none(self):
|
|
|
|
a = ansible.runner.filter_plugins.core.bool(None)
|
|
|
|
assert a == None
|
|
|
|
|
|
|
|
def test_bool_true(self):
|
|
|
|
a = ansible.runner.filter_plugins.core.bool(True)
|
|
|
|
assert a == True
|
|
|
|
|
|
|
|
def test_bool_yes(self):
|
|
|
|
a = ansible.runner.filter_plugins.core.bool('Yes')
|
|
|
|
assert a == True
|
|
|
|
|
|
|
|
def test_bool_no(self):
|
|
|
|
a = ansible.runner.filter_plugins.core.bool('Foo')
|
|
|
|
assert a == False
|
|
|
|
|
|
|
|
def test_quotes(self):
|
|
|
|
a = ansible.runner.filter_plugins.core.quote('ls | wc -l')
|
|
|
|
assert a == "'ls | wc -l'"
|
|
|
|
|
2013-03-01 23:42:14 +01:00
|
|
|
#def test_filters(self):
|
|
|
|
|
|
|
|
# this test is pretty low level using a playbook, hence I am disabling it for now -- MPD.
|
|
|
|
#return
|
|
|
|
|
|
|
|
#src = self.temp('src.j2', SRC)
|
|
|
|
#dest = self.temp('dest.txt')
|
|
|
|
#book = self.temp('book', BOOK % (src, dest))
|
|
|
|
|
|
|
|
#playbook.PlayBook(
|
|
|
|
# playbook = book,
|
|
|
|
# inventory = INVENTORY,
|
|
|
|
# transport = 'local',
|
|
|
|
# callbacks = callbacks.PlaybookCallbacks(),
|
|
|
|
# runner_callbacks = callbacks.DefaultRunnerCallbacks(),
|
|
|
|
# stats = callbacks.AggregateStats(),
|
|
|
|
#).run()
|
2013-02-28 17:07:02 +01:00
|
|
|
|
2013-09-21 12:57:25 +02:00
|
|
|
#out = open(dest).read()
|
|
|
|
#self.assertEqual(DEST, out)
|
2013-02-28 17:07:02 +01:00
|
|
|
|