2014-11-27 00:58:45 +00:00
|
|
|
# (c) 2012, Jeroen Hoekx <jeroen@hoekx.be>
|
|
|
|
#
|
|
|
|
# This file is part of Ansible
|
|
|
|
#
|
|
|
|
# Ansible is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# Ansible is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2015-10-20 01:36:19 +00:00
|
|
|
# Make coding more python3-ish
|
|
|
|
from __future__ import (absolute_import, division, print_function)
|
|
|
|
__metaclass__ = type
|
|
|
|
|
2014-11-27 00:58:45 +00:00
|
|
|
import re
|
|
|
|
from ansible import errors
|
|
|
|
|
|
|
|
def failed(*a, **kw):
|
|
|
|
''' Test if task result yields failed '''
|
|
|
|
item = a[0]
|
|
|
|
if type(item) != dict:
|
|
|
|
raise errors.AnsibleFilterError("|failed expects a dictionary")
|
|
|
|
rc = item.get('rc',0)
|
|
|
|
failed = item.get('failed',False)
|
|
|
|
if rc != 0 or failed:
|
|
|
|
return True
|
|
|
|
else:
|
|
|
|
return False
|
|
|
|
|
|
|
|
def success(*a, **kw):
|
|
|
|
''' Test if task result yields success '''
|
2015-11-19 19:10:09 +00:00
|
|
|
return not failed(*a, **kw)
|
2014-11-27 00:58:45 +00:00
|
|
|
|
|
|
|
def changed(*a, **kw):
|
|
|
|
''' Test if task result yields changed '''
|
|
|
|
item = a[0]
|
|
|
|
if type(item) != dict:
|
|
|
|
raise errors.AnsibleFilterError("|changed expects a dictionary")
|
|
|
|
if not 'changed' in item:
|
|
|
|
changed = False
|
|
|
|
if ('results' in item # some modules return a 'results' key
|
|
|
|
and type(item['results']) == list
|
|
|
|
and type(item['results'][0]) == dict):
|
|
|
|
for result in item['results']:
|
|
|
|
changed = changed or result.get('changed', False)
|
|
|
|
else:
|
|
|
|
changed = item.get('changed', False)
|
|
|
|
return changed
|
|
|
|
|
|
|
|
def skipped(*a, **kw):
|
|
|
|
''' Test if task result yields skipped '''
|
|
|
|
item = a[0]
|
|
|
|
if type(item) != dict:
|
|
|
|
raise errors.AnsibleFilterError("|skipped expects a dictionary")
|
|
|
|
skipped = item.get('skipped', False)
|
|
|
|
return skipped
|
|
|
|
|
|
|
|
def regex(value='', pattern='', ignorecase=False, match_type='search'):
|
|
|
|
''' Expose `re` as a boolean filter using the `search` method by default.
|
|
|
|
This is likely only useful for `search` and `match` which already
|
|
|
|
have their own filters.
|
|
|
|
'''
|
|
|
|
if ignorecase:
|
|
|
|
flags = re.I
|
|
|
|
else:
|
|
|
|
flags = 0
|
|
|
|
_re = re.compile(pattern, flags=flags)
|
|
|
|
_bool = __builtins__.get('bool')
|
|
|
|
return _bool(getattr(_re, match_type, 'search')(value))
|
|
|
|
|
|
|
|
def match(value, pattern='', ignorecase=False):
|
|
|
|
''' Perform a `re.match` returning a boolean '''
|
|
|
|
return regex(value, pattern, ignorecase, 'match')
|
|
|
|
|
|
|
|
def search(value, pattern='', ignorecase=False):
|
|
|
|
''' Perform a `re.search` returning a boolean '''
|
|
|
|
return regex(value, pattern, ignorecase, 'search')
|
|
|
|
|
|
|
|
class TestModule(object):
|
|
|
|
''' Ansible core jinja2 tests '''
|
|
|
|
|
|
|
|
def tests(self):
|
|
|
|
return {
|
|
|
|
# failure testing
|
|
|
|
'failed' : failed,
|
|
|
|
'success' : success,
|
|
|
|
|
|
|
|
# changed testing
|
|
|
|
'changed' : changed,
|
|
|
|
|
|
|
|
# skip testing
|
|
|
|
'skipped' : skipped,
|
|
|
|
|
|
|
|
# regex
|
|
|
|
'match': match,
|
|
|
|
'search': search,
|
|
|
|
'regex': regex,
|
|
|
|
}
|