Add unittest for yamlgroup inventory plugin
This mocks out enough of the Ansible inventory framework so we can test the group matching against a range of corner cases as present in the results.yaml file. Change-Id: I05114d9aae6f149122da20f239c8b3546bc140bc
This commit is contained in:
parent
e998db36f2
commit
526a423dd2
@ -0,0 +1 @@
|
||||
../../../../../../inventory/groups.yaml
|
@ -0,0 +1,62 @@
|
||||
# This is a dictionary of hosts, with a list of what
|
||||
# groups they should be in
|
||||
|
||||
results:
|
||||
|
||||
adns1.openstack.org:
|
||||
- adns
|
||||
- puppet
|
||||
|
||||
afs01.dfw.openstack.org:
|
||||
- afs
|
||||
- afs-client
|
||||
- puppet
|
||||
|
||||
firehose01.openstack.org:
|
||||
- firehose
|
||||
- futureparser
|
||||
- puppet
|
||||
|
||||
graphite.openstack.org:
|
||||
- graphite
|
||||
- puppet
|
||||
- webservers
|
||||
|
||||
lists.katacontainers.io:
|
||||
- mailman
|
||||
- puppet
|
||||
|
||||
logstash-worker02.openstack.org:
|
||||
- futureparser
|
||||
- logstash-worker
|
||||
- puppet
|
||||
|
||||
mirror02.dfw.rax.openstack.org:
|
||||
- afs-client
|
||||
- mirror
|
||||
- puppet
|
||||
- webservers
|
||||
|
||||
mirror-update01.openstack.org:
|
||||
- afsadmin
|
||||
- puppet
|
||||
|
||||
review.openstack.org:
|
||||
- disabled
|
||||
- gerrit
|
||||
- puppet
|
||||
|
||||
nb01.openstack.org:
|
||||
- nodepool
|
||||
- nodepool-builder
|
||||
- puppet
|
||||
- webservers
|
||||
|
||||
ze01.openstack.org:
|
||||
- afs-client
|
||||
- puppet
|
||||
- zuul-executor
|
||||
|
||||
zk01.openstack.org:
|
||||
- puppet
|
||||
- zookeeper
|
@ -0,0 +1,98 @@
|
||||
# Copyright (C) 2018 Red Hat, Inc.
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
||||
# implied.
|
||||
#
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
# Make coding more python3-ish
|
||||
from __future__ import (absolute_import, division, print_function)
|
||||
__metaclass__ = type
|
||||
|
||||
import os
|
||||
import testtools
|
||||
import mock
|
||||
import yaml
|
||||
|
||||
from ansible.inventory.host import Host
|
||||
|
||||
from .yamlgroup import InventoryModule
|
||||
|
||||
FIXTURE_DIR = os.path.join(os.path.dirname(__file__),
|
||||
'test-fixtures')
|
||||
|
||||
class TestInventory(testtools.TestCase):
|
||||
|
||||
def test_yaml_groups(self):
|
||||
inventory = mock.MagicMock()
|
||||
|
||||
results_yaml = os.path.join(FIXTURE_DIR, 'results.yaml')
|
||||
with open(results_yaml) as f:
|
||||
results = yaml.load(f)
|
||||
results = results['results']
|
||||
|
||||
# Build the inventory list. This is a list of Host objects
|
||||
# which are the keys in our results.yaml file, keyed by the
|
||||
# hostname (... I dunno, we're just tricking the inventory and
|
||||
# making something it's happy with)
|
||||
inventory.hosts = {}
|
||||
for host in results.keys():
|
||||
inventory.hosts[host] = Host(name=host)
|
||||
|
||||
# Fake out add_group() and add_child() for the inventory
|
||||
# object to store our groups.
|
||||
inventory.groups = {}
|
||||
def add_group(group):
|
||||
inventory.groups[group] = []
|
||||
inventory.add_group = add_group
|
||||
def add_child(group, host):
|
||||
inventory.groups[group].append(host)
|
||||
inventory.add_child = add_child
|
||||
|
||||
# Not really needed for unit test
|
||||
loader = mock.MagicMock()
|
||||
|
||||
# This is all setup by ansible magic plugin/inventory stuff in
|
||||
# real-life, which gets the groups into the config object
|
||||
path = os.path.join(FIXTURE_DIR, 'groups.yaml')
|
||||
with open(path) as f:
|
||||
config_groups = yaml.load(f)
|
||||
config_groups = config_groups['groups']
|
||||
im = InventoryModule()
|
||||
im._read_config_data = mock.MagicMock()
|
||||
im._load_name = 'yamlgroup'
|
||||
im.get_option = mock.MagicMock(side_effect=lambda x: config_groups)
|
||||
|
||||
im.parse(inventory, loader, path)
|
||||
|
||||
# Now, for every host we have in our results, we should be
|
||||
# able to see it listed as a child of the groups it wants to
|
||||
# be in
|
||||
for host, groups in results.items():
|
||||
for group in groups:
|
||||
message=(
|
||||
"The inventory does not have a group <%s>;"
|
||||
"host <%s> should be in this group" % (group, host))
|
||||
self.assertEquals(group in inventory.groups, True, message)
|
||||
|
||||
message=(
|
||||
"The group <%s> does not contain host <%s>"
|
||||
% (group, host))
|
||||
self.assertIn(host, inventory.groups[group], message)
|
||||
|
||||
# Additionally, check this host hasn't managed to get into
|
||||
# any groups it is *not* supposed to be in
|
||||
for inventory_group, inventory_hosts in inventory.groups.items():
|
||||
if host in inventory_hosts:
|
||||
message = ("The host <%s> should not be in group <%s>"
|
||||
% (host, inventory_group))
|
||||
self.assertTrue(inventory_group in groups, message)
|
@ -7,5 +7,7 @@ PyYAML>=3.10.0 # MIT
|
||||
ansible-lint
|
||||
openstacksdk
|
||||
zuul-sphinx>=0.2.3
|
||||
testtools
|
||||
mock
|
||||
# testinfra 1.17.0 has a broken wheel that won't install under python3
|
||||
testinfra!=1.17.0
|
||||
|
1
tox.ini
1
tox.ini
@ -17,6 +17,7 @@ commands =
|
||||
python3 {toxinidir}/tools/sorted_modules_env.py {toxinidir}/modules.env
|
||||
python3 {toxinidir}/tools/irc_checks.py
|
||||
python3 {toxinidir}/tools/check_clouds_yaml.py
|
||||
python3 -m unittest playbooks/roles/install-ansible/files/inventory_plugins/test_yamlgroup.py
|
||||
# Ansible Lint Check
|
||||
bash -c "find roles playbooks -type f -regex '.*.y[a]?ml' -print0 | xargs -t -n1 -0 \
|
||||
ansible-lint -x ANSIBLE0004 -x ANSIBLE0006 -x ANSIBLE0007 -x ANSIBLE0011 \
|
||||
|
Loading…
x
Reference in New Issue
Block a user