mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Adding block code and tests
This commit is contained in:
parent
21577ff2cc
commit
57d2622c8c
4 changed files with 126 additions and 11 deletions
|
@ -19,8 +19,6 @@
|
||||||
from __future__ import (absolute_import, division, print_function)
|
from __future__ import (absolute_import, division, print_function)
|
||||||
__metaclass__ = type
|
__metaclass__ = type
|
||||||
|
|
||||||
#from ansible.common.errors import AnsibleError
|
|
||||||
|
|
||||||
class Attribute:
|
class Attribute:
|
||||||
|
|
||||||
def __init__(self, isa=None, private=False, default=None):
|
def __init__(self, isa=None, private=False, default=None):
|
||||||
|
|
|
@ -65,11 +65,11 @@ class Base:
|
||||||
if isinstance(attribute, FieldAttribute):
|
if isinstance(attribute, FieldAttribute):
|
||||||
|
|
||||||
# copy the value over unless a _load_field method is defined
|
# copy the value over unless a _load_field method is defined
|
||||||
method = getattr(self, '_load_%s' % aname, None)
|
if aname in ds:
|
||||||
if method:
|
method = getattr(self, '_load_%s' % aname, None)
|
||||||
self._attributes[aname] = method(self, attribute)
|
if method:
|
||||||
else:
|
self._attributes[aname] = method(aname, ds[aname])
|
||||||
if aname in ds:
|
else:
|
||||||
self._attributes[aname] = ds[aname]
|
self._attributes[aname] = ds[aname]
|
||||||
|
|
||||||
# return the constructed object
|
# return the constructed object
|
||||||
|
|
|
@ -19,10 +19,48 @@
|
||||||
from __future__ import (absolute_import, division, print_function)
|
from __future__ import (absolute_import, division, print_function)
|
||||||
__metaclass__ = type
|
__metaclass__ = type
|
||||||
|
|
||||||
from v2.playbook.base import PlaybookBase
|
from ansible.playbook.base import Base
|
||||||
|
from ansible.playbook.task import Task
|
||||||
|
from ansible.playbook.attribute import Attribute, FieldAttribute
|
||||||
|
|
||||||
class Block(PlaybookBase):
|
class Block(Base):
|
||||||
|
|
||||||
def __init__(self):
|
_begin = FieldAttribute(isa='list')
|
||||||
pass
|
_rescue = FieldAttribute(isa='list')
|
||||||
|
_end = FieldAttribute(isa='list')
|
||||||
|
_otherwise = FieldAttribute(isa='list')
|
||||||
|
|
||||||
|
def __init__(self, role=None):
|
||||||
|
self.role = role
|
||||||
|
super(Block, self).__init__()
|
||||||
|
|
||||||
|
def get_variables(self):
|
||||||
|
# blocks do not (currently) store any variables directly,
|
||||||
|
# so we just return an empty dict here
|
||||||
|
return dict()
|
||||||
|
|
||||||
|
@staticmethod
|
||||||
|
def load(data, role=None):
|
||||||
|
b = Block(role=role)
|
||||||
|
return b.load_data(data)
|
||||||
|
|
||||||
|
def _load_list_of_tasks(self, ds):
|
||||||
|
assert type(ds) == list
|
||||||
|
task_list = []
|
||||||
|
for task in ds:
|
||||||
|
t = Task.load(task)
|
||||||
|
task_list.append(t)
|
||||||
|
return task_list
|
||||||
|
|
||||||
|
def _load_begin(self, attr, ds):
|
||||||
|
return self._load_list_of_tasks(ds)
|
||||||
|
|
||||||
|
def _load_rescue(self, attr, ds):
|
||||||
|
return self._load_list_of_tasks(ds)
|
||||||
|
|
||||||
|
def _load_end(self, attr, ds):
|
||||||
|
return self._load_list_of_tasks(ds)
|
||||||
|
|
||||||
|
def _load_otherwise(self, attr, ds):
|
||||||
|
return self._load_list_of_tasks(ds)
|
||||||
|
|
||||||
|
|
79
v2/test/playbook/test_block.py
Normal file
79
v2/test/playbook/test_block.py
Normal file
|
@ -0,0 +1,79 @@
|
||||||
|
# (c) 2012-2014, Michael DeHaan <michael.dehaan@gmail.com>
|
||||||
|
#
|
||||||
|
# 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/>.
|
||||||
|
|
||||||
|
# Make coding more python3-ish
|
||||||
|
from __future__ import (absolute_import, division, print_function)
|
||||||
|
__metaclass__ = type
|
||||||
|
|
||||||
|
from ansible.playbook.block import Block
|
||||||
|
from ansible.playbook.task import Task
|
||||||
|
from .. compat import unittest
|
||||||
|
|
||||||
|
class TestBlock(unittest.TestCase):
|
||||||
|
|
||||||
|
def setUp(self):
|
||||||
|
pass
|
||||||
|
|
||||||
|
def tearDown(self):
|
||||||
|
pass
|
||||||
|
|
||||||
|
def test_construct_empty_block(self):
|
||||||
|
b = Block()
|
||||||
|
|
||||||
|
def test_construct_block_with_role(self):
|
||||||
|
pass
|
||||||
|
|
||||||
|
def test_block__load_list_of_tasks(self):
|
||||||
|
task = dict(action='test')
|
||||||
|
b = Block()
|
||||||
|
self.assertEqual(b._load_list_of_tasks([]), [])
|
||||||
|
res = b._load_list_of_tasks([task])
|
||||||
|
self.assertEqual(len(res), 1)
|
||||||
|
assert isinstance(res[0], Task)
|
||||||
|
res = b._load_list_of_tasks([task,task,task])
|
||||||
|
self.assertEqual(len(res), 3)
|
||||||
|
|
||||||
|
def test_load_block_simple(self):
|
||||||
|
ds = dict(
|
||||||
|
begin = [],
|
||||||
|
rescue = [],
|
||||||
|
end = [],
|
||||||
|
otherwise = [],
|
||||||
|
)
|
||||||
|
b = Block.load(ds)
|
||||||
|
self.assertEqual(b.begin, [])
|
||||||
|
self.assertEqual(b.rescue, [])
|
||||||
|
self.assertEqual(b.end, [])
|
||||||
|
self.assertEqual(b.otherwise, [])
|
||||||
|
|
||||||
|
def test_load_block_with_tasks(self):
|
||||||
|
ds = dict(
|
||||||
|
begin = [dict(action='begin')],
|
||||||
|
rescue = [dict(action='rescue')],
|
||||||
|
end = [dict(action='end')],
|
||||||
|
otherwise = [dict(action='otherwise')],
|
||||||
|
)
|
||||||
|
b = Block.load(ds)
|
||||||
|
self.assertEqual(len(b.begin), 1)
|
||||||
|
assert isinstance(b.begin[0], Task)
|
||||||
|
self.assertEqual(len(b.rescue), 1)
|
||||||
|
assert isinstance(b.rescue[0], Task)
|
||||||
|
self.assertEqual(len(b.end), 1)
|
||||||
|
assert isinstance(b.end[0], Task)
|
||||||
|
self.assertEqual(len(b.otherwise), 1)
|
||||||
|
assert isinstance(b.otherwise[0], Task)
|
||||||
|
|
Loading…
Reference in a new issue