community.general/lib/ansible/plugins/test/mathstuff.py

63 lines
1.5 KiB
Python
Raw Normal View History

2016-03-21 19:22:39 +00:00
# (c) 2016, Ansible, Inc
#
# 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/>.
2016-03-25 01:04:16 +00:00
from __future__ import (absolute_import, division, print_function)
__metaclass__ = type
2016-03-21 19:22:39 +00:00
import math
2016-03-21 19:22:39 +00:00
def issubset(a, b):
return set(a) <= set(b)
2016-03-21 19:22:39 +00:00
def issuperset(a, b):
return set(a) >= set(b)
def isnotanumber(x):
try:
return math.isnan(x)
except TypeError:
return False
def contains(seq, value):
'''Opposite of the ``in`` test, allowing use as a test in filters like ``selectattr``
.. versionadded:: 2.8
'''
return value in seq
2016-03-25 01:04:16 +00:00
class TestModule:
2016-03-21 19:22:39 +00:00
''' Ansible math jinja2 tests '''
def tests(self):
return {
# set theory
'issubset': issubset,
'subset': issubset,
2016-03-21 19:22:39 +00:00
'issuperset': issuperset,
'superset': issuperset,
'contains': contains,
# numbers
'isnan': isnotanumber,
'nan': isnotanumber,
2016-03-21 19:22:39 +00:00
}