aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/ansible_library/modules/apex_generate_inventory_test.py
diff options
context:
space:
mode:
authorzhihui wu <wu.zhihui1@zte.com.cn>2017-04-20 09:57:06 +0800
committerzhihui wu <wu.zhihui1@zte.com.cn>2017-04-20 11:10:16 +0800
commite37805bda96bd54a6c0108e6fb2e67298bbda280 (patch)
tree027418884e44bc3e5766ae34ffb8498a97694a7c /tests/unit/ansible_library/modules/apex_generate_inventory_test.py
parent973f0287b44b3bcac193bc069bd474fc252232db (diff)
fix apex integration
I didnot find a right way to source Openstack rc file via ansible module python api. Without openstack rc fiel, openstack cli command can not be executed. So I move this part to ansible playbook. Change-Id: I44439560f8ffa1b41890c4e94c9657ab2cc43241 Signed-off-by: zhihui wu <wu.zhihui1@zte.com.cn>
Diffstat (limited to 'tests/unit/ansible_library/modules/apex_generate_inventory_test.py')
-rw-r--r--tests/unit/ansible_library/modules/apex_generate_inventory_test.py30
1 files changed, 30 insertions, 0 deletions
diff --git a/tests/unit/ansible_library/modules/apex_generate_inventory_test.py b/tests/unit/ansible_library/modules/apex_generate_inventory_test.py
new file mode 100644
index 00000000..7df9d35c
--- /dev/null
+++ b/tests/unit/ansible_library/modules/apex_generate_inventory_test.py
@@ -0,0 +1,30 @@
+###############################################################
+# Copyright (c) 2017 ZTE Corporation
+#
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Apache License, Version 2.0
+# which accompanies this distribution, and is available at
+# http://www.apache.org/licenses/LICENSE-2.0
+##############################################################################
+
+import json
+import os
+
+from qtip.ansible_library.modules import apex_generate_inventory
+
+
+def test_generate_inventory(data_root):
+ baremetal_info = json.load(open(os.path.join(data_root, 'external',
+ 'apex', 'baremetal_info.json')))
+ server_info = json.load(open(os.path.join(data_root, 'external',
+ 'apex', 'server_info.json')))
+ inventory = apex_generate_inventory.generate_inventory(baremetal_info, server_info)
+ assert dict(inventory['hosts']) == {
+ u'compute': [u'192.0.2.5', u'192.0.2.6'],
+ u'control': [u'192.0.2.7', u'192.0.2.8', u'192.0.2.9']}
+ assert dict(inventory['hosts_meta']) == {
+ u'192.0.2.5': {'ansible_ssh_host': u'192.0.2.5'},
+ u'192.0.2.6': {'ansible_ssh_host': u'192.0.2.6'},
+ u'192.0.2.7': {'ansible_ssh_host': u'192.0.2.7'},
+ u'192.0.2.8': {'ansible_ssh_host': u'192.0.2.8'},
+ u'192.0.2.9': {'ansible_ssh_host': u'192.0.2.9'}}