mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 13:52:54 +00:00
aci_spvpg: Various fixes to integration tests/modules (#36458)
* aci_spvpg: Various fixes to integration tests/modules This PR includes: - A fix in module_utils aci.py - Various fixes in integration tests * Fix typo
This commit is contained in:
@@ -300,7 +300,6 @@ class ACIModule(object):
|
||||
except Exception as e:
|
||||
# Expose RAW output for troubleshooting
|
||||
self.error = dict(code=-1, text="Unable to parse output as JSON, see 'raw' output. %s" % e)
|
||||
# self.error = dict(code=str(self.status), text="Request failed: %s (see 'raw' output)" % self.response)
|
||||
self.result['raw'] = rawoutput
|
||||
return
|
||||
|
||||
@@ -324,7 +323,6 @@ class ACIModule(object):
|
||||
except Exception as e:
|
||||
# Expose RAW output for troubleshooting
|
||||
self.error = dict(code=-1, text="Unable to parse output as XML, see 'raw' output. %s" % e)
|
||||
# self.error = dict(code=str(self.status), text="Request failed: %s (see 'raw' output)" % self.response)
|
||||
self.result['raw'] = rawoutput
|
||||
return
|
||||
|
||||
@@ -750,7 +748,8 @@ class ACIModule(object):
|
||||
"""
|
||||
update_config = {child_class: {'attributes': {}}}
|
||||
for key, value in proposed_child.items():
|
||||
if value != existing_child[key]:
|
||||
existing_field = existing_child.get(key)
|
||||
if value != existing_field:
|
||||
update_config[child_class]['attributes'][key] = value
|
||||
|
||||
if not update_config[child_class]['attributes']:
|
||||
|
||||
@@ -37,7 +37,6 @@ options:
|
||||
description:
|
||||
- The vPC domain policy to be associated with the Explicit vPC Protection Group.
|
||||
aliases: [ vpc_domain_policy_name ]
|
||||
required: no
|
||||
switch_1_id:
|
||||
description:
|
||||
- The ID of the first Leaf Switch for the Explicit vPC Protection Group.
|
||||
@@ -219,9 +218,9 @@ def main():
|
||||
aci_class='fabricExplicitGEp',
|
||||
aci_rn='fabric/protpol/expgep-{0}'.format(protection_group),
|
||||
filter_target='eq(fabricExplicitGEp.name, "{0}")'.format(protection_group),
|
||||
module_object=protection_group
|
||||
module_object=protection_group,
|
||||
),
|
||||
child_classes=['fabricNodePEp', 'fabricNodePEp', 'fabricRsVpcInstPol']
|
||||
child_classes=['fabricNodePEp', 'fabricNodePEp', 'fabricRsVpcInstPol'],
|
||||
)
|
||||
|
||||
aci.get_existing()
|
||||
@@ -231,7 +230,6 @@ def main():
|
||||
aci.payload(
|
||||
aci_class='fabricExplicitGEp',
|
||||
class_config=dict(
|
||||
dn='uni/fabric/protpol/expgep-{0}'.format(protection_group),
|
||||
name=protection_group,
|
||||
id=protection_group_id,
|
||||
rn='expgep-{0}'.format(protection_group),
|
||||
@@ -240,29 +238,27 @@ def main():
|
||||
dict(
|
||||
fabricNodePEp=dict(
|
||||
attributes=dict(
|
||||
dn='uni/fabric/protpol/expgep-{0}/nodepep-{1}'.format(protection_group, switch_1_id),
|
||||
id='{0}'.format(switch_1_id),
|
||||
rn='nodepep-{0}'.format(switch_1_id),
|
||||
)
|
||||
)
|
||||
),
|
||||
),
|
||||
),
|
||||
dict(
|
||||
fabricNodePEp=dict(
|
||||
attributes=dict(
|
||||
dn='uni/fabric/protpol/expgep-{0}/nodepep-{1}'.format(protection_group, switch_2_id),
|
||||
id='{0}'.format(switch_2_id),
|
||||
rn='nodepep-{0}'.format(switch_2_id),
|
||||
)
|
||||
)
|
||||
),
|
||||
),
|
||||
),
|
||||
dict(
|
||||
fabricRsVpcInstPol=dict(
|
||||
attributes=dict(
|
||||
tnVpcInstPolName=vpc_domain_policy,
|
||||
)
|
||||
)
|
||||
),
|
||||
),
|
||||
),
|
||||
]
|
||||
],
|
||||
)
|
||||
|
||||
# Generate config diff which will be used as POST request body
|
||||
|
||||
Reference in New Issue
Block a user