Add eos_l3_interface module (#34224)
* eos_l3_interface module implementation * Integration test cases for eos_l3_interface module
This commit is contained in:
parent
d73be7f461
commit
dc1d6ec684
9 changed files with 783 additions and 0 deletions
291
lib/ansible/modules/network/eos/eos_l3_interface.py
Normal file
291
lib/ansible/modules/network/eos/eos_l3_interface.py
Normal file
|
@ -0,0 +1,291 @@
|
||||||
|
#!/usr/bin/python
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
# (c) 2017, Ansible by Red Hat, inc
|
||||||
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||||
|
|
||||||
|
from __future__ import absolute_import, division, print_function
|
||||||
|
__metaclass__ = type
|
||||||
|
|
||||||
|
|
||||||
|
ANSIBLE_METADATA = {'metadata_version': '1.1',
|
||||||
|
'status': ['preview'],
|
||||||
|
'supported_by': 'network'}
|
||||||
|
|
||||||
|
DOCUMENTATION = """
|
||||||
|
---
|
||||||
|
module: eos_l3_interface
|
||||||
|
version_added: "2.5"
|
||||||
|
author: "Ganesh Nalawade (@ganeshrn)"
|
||||||
|
short_description: Manage L3 interfaces on Arist EOS network devices.
|
||||||
|
description:
|
||||||
|
- This module provides declarative management of L3 interfaces
|
||||||
|
on Arist EOS network devices.
|
||||||
|
notes:
|
||||||
|
- Tested against EOS 4.15
|
||||||
|
options:
|
||||||
|
name:
|
||||||
|
description:
|
||||||
|
- Name of the L3 interface to be configured eg. ethernet1
|
||||||
|
ipv4:
|
||||||
|
description:
|
||||||
|
- IPv4 address to be set for the L3 interface mentioned in I(name) option.
|
||||||
|
The address format is <ipv4 address>/<mask>, the mask is number
|
||||||
|
in range 0-32 eg. 192.168.0.1/24
|
||||||
|
ipv6:
|
||||||
|
description:
|
||||||
|
- IPv6 address to be set for the L3 interface mentioned in I(name) option.
|
||||||
|
The address format is <ipv6 address>/<mask>, the mask is number
|
||||||
|
in range 0-128 eg. fd5d:12c9:2201:1::1/64
|
||||||
|
|
||||||
|
aggregate:
|
||||||
|
description:
|
||||||
|
- List of L3 interfaces definitions. Each of the entry in aggregate list should
|
||||||
|
define name of interface C(name) and a optional C(ipv4) or C(ipv6) address.
|
||||||
|
state:
|
||||||
|
description:
|
||||||
|
- State of the L3 interface configuration. It indicates if the configuration should
|
||||||
|
be present or absent on remote device.
|
||||||
|
default: present
|
||||||
|
choices: ['present', 'absent']
|
||||||
|
"""
|
||||||
|
|
||||||
|
EXAMPLES = """
|
||||||
|
- name: Remove ethernet1 IPv4 and IPv6 address
|
||||||
|
eos_l3_interface:
|
||||||
|
name: ethernet1
|
||||||
|
state: absent
|
||||||
|
|
||||||
|
- name: Set ethernet1 IPv4 address
|
||||||
|
eos_l3_interface:
|
||||||
|
name: ethernet1
|
||||||
|
ipv4: 192.168.0.1/24
|
||||||
|
|
||||||
|
- name: Set ethernet1 IPv6 address
|
||||||
|
eos_l3_interface:
|
||||||
|
name: ethernet1
|
||||||
|
ipv6: "fd5d:12c9:2201:1::1/64"
|
||||||
|
|
||||||
|
- name: Set IP addresses on aggregate
|
||||||
|
eos_l3_interface:
|
||||||
|
aggregate:
|
||||||
|
- { name: ethernet1, ipv4: 192.168.2.10/24 }
|
||||||
|
- { name: ethernet1, ipv4: 192.168.3.10/24, ipv6: "fd5d:12c9:2201:1::1/64" }
|
||||||
|
|
||||||
|
- name: Remove IP addresses on aggregate
|
||||||
|
eos_l3_interface:
|
||||||
|
aggregate:
|
||||||
|
- { name: ethernet1, ipv4: 192.168.2.10/24 }
|
||||||
|
- { name: ethernet1, ipv4: 192.168.3.10/24, ipv6: "fd5d:12c9:2201:1::1/64" }
|
||||||
|
state: absent
|
||||||
|
"""
|
||||||
|
|
||||||
|
RETURN = """
|
||||||
|
commands:
|
||||||
|
description: The list of configuration mode commands to send to the device
|
||||||
|
returned: always, except for the platforms that use Netconf transport to manage the device.
|
||||||
|
type: list
|
||||||
|
sample:
|
||||||
|
- interface ethernet1
|
||||||
|
- ip address 192.168.0.1/24
|
||||||
|
- ipv6 address fd5d:12c9:2201:1::1/64
|
||||||
|
"""
|
||||||
|
import re
|
||||||
|
from copy import deepcopy
|
||||||
|
|
||||||
|
from ansible.module_utils.basic import AnsibleModule
|
||||||
|
from ansible.module_utils.network.common.config import NetworkConfig
|
||||||
|
from ansible.module_utils.network.common.utils import remove_default_spec
|
||||||
|
from ansible.module_utils.network.eos.eos import get_config, load_config
|
||||||
|
from ansible.module_utils.network.eos.eos import eos_argument_spec
|
||||||
|
from ansible.module_utils.network.common.utils import is_masklen
|
||||||
|
|
||||||
|
|
||||||
|
def validate_ipv4(value, module):
|
||||||
|
if value:
|
||||||
|
address = value.split('/')
|
||||||
|
if len(address) != 2:
|
||||||
|
module.fail_json(msg='address format is <ipv4 address>/<mask>, got invalid format %s' % value)
|
||||||
|
|
||||||
|
if not is_masklen(address[1]):
|
||||||
|
module.fail_json(msg='invalid value for mask: %s, mask should be in range 0-32' % address[1])
|
||||||
|
|
||||||
|
|
||||||
|
def validate_ipv6(value, module):
|
||||||
|
if value:
|
||||||
|
address = value.split('/')
|
||||||
|
if len(address) != 2:
|
||||||
|
module.fail_json(msg='address format is <ipv6 address>/<mask>, got invalid format %s' % value)
|
||||||
|
else:
|
||||||
|
if not 0 <= int(address[1]) <= 128:
|
||||||
|
module.fail_json(msg='invalid value for mask: %s, mask should be in range 0-128' % address[1])
|
||||||
|
|
||||||
|
|
||||||
|
def validate_param_values(module, obj, param=None):
|
||||||
|
if param is None:
|
||||||
|
param = module.params
|
||||||
|
for key in obj:
|
||||||
|
# validate the param value (if validator func exists)
|
||||||
|
validator = globals().get('validate_%s' % key)
|
||||||
|
if callable(validator):
|
||||||
|
validator(param.get(key), module)
|
||||||
|
|
||||||
|
|
||||||
|
def parse_config_argument(configobj, name, arg=None):
|
||||||
|
cfg = configobj['interface %s' % name]
|
||||||
|
cfg = '\n'.join(cfg.children)
|
||||||
|
match = re.search(r'%s (.+)$' % arg, cfg, re.M)
|
||||||
|
if match:
|
||||||
|
return match.group(1).strip()
|
||||||
|
|
||||||
|
|
||||||
|
def search_obj_in_list(name, lst):
|
||||||
|
for o in lst:
|
||||||
|
if o['name'] == name:
|
||||||
|
return o
|
||||||
|
|
||||||
|
return None
|
||||||
|
|
||||||
|
|
||||||
|
def map_obj_to_commands(updates, module):
|
||||||
|
commands = list()
|
||||||
|
want, have = updates
|
||||||
|
|
||||||
|
for w in want:
|
||||||
|
name = w['name']
|
||||||
|
ipv4 = w['ipv4']
|
||||||
|
ipv6 = w['ipv6']
|
||||||
|
state = w['state']
|
||||||
|
|
||||||
|
interface = 'interface ' + name
|
||||||
|
commands.append(interface)
|
||||||
|
|
||||||
|
obj_in_have = search_obj_in_list(name, have)
|
||||||
|
if state == 'absent' and obj_in_have:
|
||||||
|
if obj_in_have['ipv4']:
|
||||||
|
if ipv4:
|
||||||
|
commands.append('no ip address {}'.format(ipv4))
|
||||||
|
else:
|
||||||
|
commands.append('no ip address')
|
||||||
|
if obj_in_have['ipv6']:
|
||||||
|
if ipv6:
|
||||||
|
commands.append('no ipv6 address {}'.format(ipv6))
|
||||||
|
else:
|
||||||
|
commands.append('no ipv6 address')
|
||||||
|
|
||||||
|
elif state == 'present':
|
||||||
|
if ipv4:
|
||||||
|
if obj_in_have is None or obj_in_have['ipv4'] is None or ipv4 != obj_in_have['ipv4']:
|
||||||
|
commands.append('ip address {}'.format(ipv4))
|
||||||
|
|
||||||
|
if ipv6:
|
||||||
|
if obj_in_have is None or obj_in_have['ipv6'] is None or ipv6.lower() != obj_in_have['ipv6'].lower():
|
||||||
|
commands.append('ipv6 address {}'.format(ipv6))
|
||||||
|
|
||||||
|
if commands[-1] == interface:
|
||||||
|
commands.pop(-1)
|
||||||
|
|
||||||
|
return commands
|
||||||
|
|
||||||
|
|
||||||
|
def map_config_to_obj(module):
|
||||||
|
config = get_config(module, flags=['| section interface'])
|
||||||
|
configobj = NetworkConfig(indent=3, contents=config)
|
||||||
|
|
||||||
|
match = re.findall(r'^interface (\S+)', config, re.M)
|
||||||
|
if not match:
|
||||||
|
return list()
|
||||||
|
|
||||||
|
instances = list()
|
||||||
|
|
||||||
|
for item in set(match):
|
||||||
|
obj = {
|
||||||
|
'name': item.lower(),
|
||||||
|
'ipv4': parse_config_argument(configobj, item, 'ip address'),
|
||||||
|
'ipv6': parse_config_argument(configobj, item, 'ipv6 address'),
|
||||||
|
'state': 'present'
|
||||||
|
}
|
||||||
|
instances.append(obj)
|
||||||
|
|
||||||
|
return instances
|
||||||
|
|
||||||
|
|
||||||
|
def map_params_to_obj(module):
|
||||||
|
obj = []
|
||||||
|
|
||||||
|
aggregate = module.params.get('aggregate')
|
||||||
|
if aggregate:
|
||||||
|
for item in aggregate:
|
||||||
|
for key in item:
|
||||||
|
if item.get(key) is None:
|
||||||
|
item[key] = module.params[key]
|
||||||
|
|
||||||
|
validate_param_values(module, item, item)
|
||||||
|
obj.append(item.copy())
|
||||||
|
else:
|
||||||
|
obj.append({
|
||||||
|
'name': module.params['name'].lower(),
|
||||||
|
'ipv4': module.params['ipv4'],
|
||||||
|
'ipv6': module.params['ipv6'],
|
||||||
|
'state': module.params['state']
|
||||||
|
})
|
||||||
|
|
||||||
|
validate_param_values(module, obj)
|
||||||
|
|
||||||
|
return obj
|
||||||
|
|
||||||
|
|
||||||
|
def main():
|
||||||
|
""" main entry point for module execution
|
||||||
|
"""
|
||||||
|
element_spec = dict(
|
||||||
|
name=dict(),
|
||||||
|
ipv4=dict(),
|
||||||
|
ipv6=dict(),
|
||||||
|
state=dict(default='present',
|
||||||
|
choices=['present', 'absent'])
|
||||||
|
)
|
||||||
|
|
||||||
|
aggregate_spec = deepcopy(element_spec)
|
||||||
|
aggregate_spec['name'] = dict(required=True)
|
||||||
|
|
||||||
|
# remove default in aggregate spec, to handle common arguments
|
||||||
|
remove_default_spec(aggregate_spec)
|
||||||
|
|
||||||
|
argument_spec = dict(
|
||||||
|
aggregate=dict(type='list', elements='dict', options=aggregate_spec),
|
||||||
|
)
|
||||||
|
|
||||||
|
argument_spec.update(element_spec)
|
||||||
|
argument_spec.update(eos_argument_spec)
|
||||||
|
|
||||||
|
required_one_of = [['name', 'aggregate']]
|
||||||
|
mutually_exclusive = [['name', 'aggregate']]
|
||||||
|
module = AnsibleModule(argument_spec=argument_spec,
|
||||||
|
required_one_of=required_one_of,
|
||||||
|
mutually_exclusive=mutually_exclusive,
|
||||||
|
supports_check_mode=True)
|
||||||
|
|
||||||
|
warnings = list()
|
||||||
|
result = {'changed': False}
|
||||||
|
if warnings:
|
||||||
|
result['warnings'] = warnings
|
||||||
|
|
||||||
|
want = map_params_to_obj(module)
|
||||||
|
have = map_config_to_obj(module)
|
||||||
|
commands = map_obj_to_commands((want, have), module)
|
||||||
|
result['commands'] = commands
|
||||||
|
|
||||||
|
if commands:
|
||||||
|
commit = not module.check_mode
|
||||||
|
response = load_config(module, commands, commit=commit)
|
||||||
|
if response.get('diff') and module._diff:
|
||||||
|
result['diff'] = {'prepared': response.get('diff')}
|
||||||
|
result['session_name'] = response.get('session')
|
||||||
|
result['changed'] = True
|
||||||
|
|
||||||
|
module.exit_json(**result)
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
main()
|
|
@ -121,6 +121,14 @@
|
||||||
failed_modules: "{{ failed_modules }} + [ 'eos_linkagg' ]"
|
failed_modules: "{{ failed_modules }} + [ 'eos_linkagg' ]"
|
||||||
test_failed: true
|
test_failed: true
|
||||||
|
|
||||||
|
- block:
|
||||||
|
- include_role:
|
||||||
|
name: eos_l3_interface
|
||||||
|
when: "limit_to in ['*', 'eos_l3_interface']"
|
||||||
|
rescue:
|
||||||
|
- set_fact:
|
||||||
|
failed_modules: "{{ failed_modules }} + [ 'eos_l3_interface' ]"
|
||||||
|
test_failed: true
|
||||||
|
|
||||||
###########
|
###########
|
||||||
- debug: var=failed_modules
|
- debug: var=failed_modules
|
||||||
|
|
|
@ -0,0 +1,2 @@
|
||||||
|
---
|
||||||
|
testcase: "*"
|
2
test/integration/targets/eos_l3_interface/meta/main.yaml
Normal file
2
test/integration/targets/eos_l3_interface/meta/main.yaml
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
dependencies:
|
||||||
|
- prepare_eos_tests
|
22
test/integration/targets/eos_l3_interface/tasks/cli.yaml
Normal file
22
test/integration/targets/eos_l3_interface/tasks/cli.yaml
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
---
|
||||||
|
- name: collect all cli test cases
|
||||||
|
find:
|
||||||
|
paths: "{{ role_path }}/tests/cli"
|
||||||
|
patterns: "{{ testcase }}.yaml"
|
||||||
|
register: test_cases
|
||||||
|
delegate_to: localhost
|
||||||
|
|
||||||
|
- name: set test_items
|
||||||
|
set_fact: test_items="{{ test_cases.files | map(attribute='path') | list }}"
|
||||||
|
|
||||||
|
- name: run test cases (connection=network_cli)
|
||||||
|
include: "{{ test_case_to_run }} ansible_connection=network_cli"
|
||||||
|
with_items: "{{ test_items }}"
|
||||||
|
loop_control:
|
||||||
|
loop_var: test_case_to_run
|
||||||
|
|
||||||
|
- name: run test case (connection=local)
|
||||||
|
include: "{{ test_case_to_run }} ansible_connection=local ansible_become=no"
|
||||||
|
with_first_found: "{{ test_items }}"
|
||||||
|
loop_control:
|
||||||
|
loop_var: test_case_to_run
|
16
test/integration/targets/eos_l3_interface/tasks/eapi.yaml
Normal file
16
test/integration/targets/eos_l3_interface/tasks/eapi.yaml
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
---
|
||||||
|
- name: collect all eapi test cases
|
||||||
|
find:
|
||||||
|
paths: "{{ role_path }}/tests/eapi"
|
||||||
|
patterns: "{{ testcase }}.yaml"
|
||||||
|
delegate_to: localhost
|
||||||
|
register: test_cases
|
||||||
|
|
||||||
|
- name: set test_items
|
||||||
|
set_fact: test_items="{{ test_cases.files | map(attribute='path') | list }}"
|
||||||
|
|
||||||
|
- name: run test case (connection=local)
|
||||||
|
include: "{{ test_case_to_run }} ansible_connection=local"
|
||||||
|
with_items: "{{ test_items }}"
|
||||||
|
loop_control:
|
||||||
|
loop_var: test_case_to_run
|
|
@ -0,0 +1,2 @@
|
||||||
|
---
|
||||||
|
- { include: cli.yaml, tags: ['cli'] }
|
220
test/integration/targets/eos_l3_interface/tests/cli/basic.yaml
Normal file
220
test/integration/targets/eos_l3_interface/tests/cli/basic.yaml
Normal file
|
@ -0,0 +1,220 @@
|
||||||
|
---
|
||||||
|
- debug: msg="START eos_l3_interface cli/basic.yaml on connection={{ ansible_connection }}"
|
||||||
|
|
||||||
|
- name: Set test interface
|
||||||
|
set_fact:
|
||||||
|
test_interface_1: ethernet1
|
||||||
|
test_interface_2: ethernet2
|
||||||
|
|
||||||
|
- name: Delete interface ipv4 and ipv6 address(setup)
|
||||||
|
eos_l3_interface:
|
||||||
|
name: "{{ test_interface_1 }}"
|
||||||
|
state: absent
|
||||||
|
authorize: yes
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- name: Configure interface ipv4 address
|
||||||
|
eos_l3_interface:
|
||||||
|
name: "{{ test_interface_1 }}"
|
||||||
|
ipv4: 192.168.0.1/24
|
||||||
|
state: present
|
||||||
|
authorize: yes
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- 'result.changed == true'
|
||||||
|
- '"interface {{ test_interface_1 }}" in result.commands'
|
||||||
|
- '"ip address 192.168.0.1/24" in result.commands'
|
||||||
|
|
||||||
|
- name: Configure interface ipv4 address (idempotent)
|
||||||
|
eos_l3_interface:
|
||||||
|
name: "{{ test_interface_1 }}"
|
||||||
|
ipv4: 192.168.0.1/24
|
||||||
|
state: present
|
||||||
|
authorize: yes
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- 'result.changed == false'
|
||||||
|
|
||||||
|
- name: Change interface ipv4 address
|
||||||
|
eos_l3_interface:
|
||||||
|
name: "{{ test_interface_1 }}"
|
||||||
|
ipv4: 197.168.0.1/24
|
||||||
|
state: present
|
||||||
|
authorize: yes
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- 'result.changed == true'
|
||||||
|
- '"interface {{ test_interface_1 }}" in result.commands'
|
||||||
|
- '"ip address 197.168.0.1/24" in result.commands'
|
||||||
|
|
||||||
|
- name: Configure interface ipv6 address
|
||||||
|
eos_l3_interface:
|
||||||
|
name: "{{ test_interface_1 }}"
|
||||||
|
ipv6: fd5d:12c9:2201:1::1/64
|
||||||
|
state: present
|
||||||
|
authorize: yes
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- 'result.changed == true'
|
||||||
|
- '"interface {{ test_interface_1 }}" in result.commands'
|
||||||
|
- '"ipv6 address fd5d:12c9:2201:1::1/64" in result.commands'
|
||||||
|
|
||||||
|
- name: Configure interface ipv6 address (idempotent)
|
||||||
|
eos_l3_interface:
|
||||||
|
name: "{{ test_interface_1 }}"
|
||||||
|
ipv6: fd5d:12c9:2201:1::1/64
|
||||||
|
state: present
|
||||||
|
authorize: yes
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- 'result.changed == false'
|
||||||
|
|
||||||
|
- name: Change interface ipv6 address
|
||||||
|
eos_l3_interface:
|
||||||
|
name: "{{ test_interface_1 }}"
|
||||||
|
ipv6: fd58:12c9:2201:1::1/64
|
||||||
|
state: present
|
||||||
|
authorize: yes
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- 'result.changed == true'
|
||||||
|
- '"interface {{ test_interface_1 }}" in result.commands'
|
||||||
|
- '"ipv6 address fd58:12c9:2201:1::1/64" in result.commands'
|
||||||
|
|
||||||
|
- name: Delete interface ipv4 and ipv6 address
|
||||||
|
eos_l3_interface:
|
||||||
|
name: "{{ test_interface_1 }}"
|
||||||
|
state: absent
|
||||||
|
authorize: yes
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- 'result.changed == true'
|
||||||
|
- '"interface {{ test_interface_1 }}" in result.commands'
|
||||||
|
- '"no ip address" in result.commands'
|
||||||
|
- '"no ipv6 address" in result.commands'
|
||||||
|
|
||||||
|
- name: Delete interface ipv4 and ipv6 address (idempotent)
|
||||||
|
eos_l3_interface:
|
||||||
|
name: "{{ test_interface_1 }}"
|
||||||
|
state: absent
|
||||||
|
authorize: yes
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- name: Delete second interface ipv4 and ipv6 address (setup)
|
||||||
|
eos_l3_interface:
|
||||||
|
name: "{{ test_interface_2 }}"
|
||||||
|
state: absent
|
||||||
|
authorize: yes
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- name: Configure ipv4 and ipv6 address using aggregate
|
||||||
|
eos_l3_interface:
|
||||||
|
aggregate:
|
||||||
|
- { name: "{{ test_interface_1 }}", ipv4: 192.161.0.1/24, ipv6: "fd5d:12c9:2201:2::2/64" }
|
||||||
|
- { name: "{{ test_interface_2 }}", ipv4: 192.162.0.2/16, ipv6: "fd5e:12c9:2201:3::3/32" }
|
||||||
|
authorize: yes
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- 'result.changed == true'
|
||||||
|
- '"interface {{ test_interface_1 }}" in result.commands'
|
||||||
|
- '"ip address 192.161.0.1/24" in result.commands'
|
||||||
|
- '"ipv6 address fd5d:12c9:2201:2::2/64" in result.commands'
|
||||||
|
- '"interface {{ test_interface_2 }}" in result.commands'
|
||||||
|
- '"ip address 192.162.0.2/16" in result.commands'
|
||||||
|
- '"ipv6 address fd5e:12c9:2201:3::3/32" in result.commands'
|
||||||
|
|
||||||
|
- name: Configure ipv4 and ipv6 address using aggregate (idempotent)
|
||||||
|
eos_l3_interface:
|
||||||
|
aggregate:
|
||||||
|
- { name: "{{ test_interface_1 }}", ipv4: 192.161.0.1/24, ipv6: "fd5d:12c9:2201:2::2/64" }
|
||||||
|
- { name: "{{ test_interface_2 }}", ipv4: 192.162.0.2/16, ipv6: "fd5e:12c9:2201:3::3/32" }
|
||||||
|
authorize: yes
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- 'result.changed == false'
|
||||||
|
|
||||||
|
- name: Change ipv4 and ipv6 address using aggregate
|
||||||
|
eos_l3_interface:
|
||||||
|
aggregate:
|
||||||
|
- { name: "{{ test_interface_1 }}", ipv4: 193.167.1.1/8, ipv6: "fd5a:12c9:2201:4::4/32" }
|
||||||
|
- { name: "{{ test_interface_2 }}", ipv4: 192.169.2.2/24, ipv6: "fd5b:12c9:2201:5::5/90" }
|
||||||
|
authorize: yes
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- 'result.changed == true'
|
||||||
|
- '"interface {{ test_interface_1 }}" in result.commands'
|
||||||
|
- '"ip address 193.167.1.1/8" in result.commands'
|
||||||
|
- '"ipv6 address fd5a:12c9:2201:4::4/32" in result.commands'
|
||||||
|
- '"interface {{ test_interface_2 }}" in result.commands'
|
||||||
|
- '"ip address 192.169.2.2/24" in result.commands'
|
||||||
|
- '"ipv6 address fd5b:12c9:2201:5::5/90" in result.commands'
|
||||||
|
|
||||||
|
|
||||||
|
- name: Delete ipv4 and ipv6 address using aggregate
|
||||||
|
eos_l3_interface:
|
||||||
|
aggregate:
|
||||||
|
- { name: "{{ test_interface_1 }}" }
|
||||||
|
- { name: "{{ test_interface_2 }}" }
|
||||||
|
state: absent
|
||||||
|
authorize: yes
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- 'result.changed == true'
|
||||||
|
- '"interface {{ test_interface_1 }}" in result.commands'
|
||||||
|
- '"no ip address" in result.commands'
|
||||||
|
- '"no ipv6 address" in result.commands'
|
||||||
|
- '"interface {{ test_interface_2 }}" in result.commands'
|
||||||
|
- '"no ip address" in result.commands'
|
||||||
|
- '"no ipv6 address" in result.commands'
|
||||||
|
|
||||||
|
- name: Delete ipv4 and ipv6 address using aggregate (idempotent)
|
||||||
|
eos_l3_interface:
|
||||||
|
aggregate:
|
||||||
|
- { name: "{{ test_interface_1 }}" }
|
||||||
|
- { name: "{{ test_interface_2 }}" }
|
||||||
|
state: absent
|
||||||
|
authorize: yes
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- 'result.changed == false'
|
||||||
|
|
||||||
|
- debug: msg="END eos_l3_interface cli/basic.yaml on connection={{ ansible_connection }}"
|
220
test/integration/targets/eos_l3_interface/tests/eapi/basic.yaml
Normal file
220
test/integration/targets/eos_l3_interface/tests/eapi/basic.yaml
Normal file
|
@ -0,0 +1,220 @@
|
||||||
|
---
|
||||||
|
- debug: msg="START eos_l3_interface eapi/basic.yaml on connection={{ ansible_connection }}"
|
||||||
|
|
||||||
|
- name: Set test interface
|
||||||
|
set_fact:
|
||||||
|
test_interface_1: ethernet1
|
||||||
|
test_interface_2: ethernet2
|
||||||
|
|
||||||
|
- name: Delete interface ipv4 and ipv6 address(setup)
|
||||||
|
eos_l3_interface:
|
||||||
|
name: "{{ test_interface_1 }}"
|
||||||
|
state: absent
|
||||||
|
authorize: yes
|
||||||
|
provider: "{{ eapi }}"
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- name: Configure interface ipv4 address
|
||||||
|
eos_l3_interface:
|
||||||
|
name: "{{ test_interface_1 }}"
|
||||||
|
ipv4: 192.168.0.1/24
|
||||||
|
state: present
|
||||||
|
authorize: yes
|
||||||
|
provider: "{{ eapi }}"
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- 'result.changed == true'
|
||||||
|
- '"interface {{ test_interface_1 }}" in result.commands'
|
||||||
|
- '"ip address 192.168.0.1/24" in result.commands'
|
||||||
|
|
||||||
|
- name: Configure interface ipv4 address (idempotent)
|
||||||
|
eos_l3_interface:
|
||||||
|
name: "{{ test_interface_1 }}"
|
||||||
|
ipv4: 192.168.0.1/24
|
||||||
|
state: present
|
||||||
|
authorize: yes
|
||||||
|
provider: "{{ eapi }}"
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- 'result.changed == false'
|
||||||
|
|
||||||
|
- name: Change interface ipv4 address
|
||||||
|
eos_l3_interface:
|
||||||
|
name: "{{ test_interface_1 }}"
|
||||||
|
ipv4: 197.168.0.1/24
|
||||||
|
state: present
|
||||||
|
authorize: yes
|
||||||
|
provider: "{{ eapi }}"
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- 'result.changed == true'
|
||||||
|
- '"interface {{ test_interface_1 }}" in result.commands'
|
||||||
|
- '"ip address 197.168.0.1/24" in result.commands'
|
||||||
|
|
||||||
|
- name: Configure interface ipv6 address
|
||||||
|
eos_l3_interface:
|
||||||
|
name: "{{ test_interface_1 }}"
|
||||||
|
ipv6: fd5d:12c9:2201:1::1/64
|
||||||
|
state: present
|
||||||
|
authorize: yes
|
||||||
|
provider: "{{ eapi }}"
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- 'result.changed == true'
|
||||||
|
- '"interface {{ test_interface_1 }}" in result.commands'
|
||||||
|
- '"ipv6 address fd5d:12c9:2201:1::1/64" in result.commands'
|
||||||
|
|
||||||
|
- name: Configure interface ipv6 address (idempotent)
|
||||||
|
eos_l3_interface:
|
||||||
|
name: "{{ test_interface_1 }}"
|
||||||
|
ipv6: fd5d:12c9:2201:1::1/64
|
||||||
|
state: present
|
||||||
|
authorize: yes
|
||||||
|
provider: "{{ eapi }}"
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- 'result.changed == false'
|
||||||
|
|
||||||
|
- name: Change interface ipv6 address
|
||||||
|
eos_l3_interface:
|
||||||
|
name: "{{ test_interface_1 }}"
|
||||||
|
ipv6: fd58:12c9:2201:1::1/64
|
||||||
|
state: present
|
||||||
|
authorize: yes
|
||||||
|
provider: "{{ eapi }}"
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- 'result.changed == true'
|
||||||
|
- '"interface {{ test_interface_1 }}" in result.commands'
|
||||||
|
- '"ipv6 address fd58:12c9:2201:1::1/64" in result.commands'
|
||||||
|
|
||||||
|
- name: Delete interface ipv4 and ipv6 address
|
||||||
|
eos_l3_interface:
|
||||||
|
name: "{{ test_interface_1 }}"
|
||||||
|
state: absent
|
||||||
|
authorize: yes
|
||||||
|
provider: "{{ eapi }}"
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- 'result.changed == true'
|
||||||
|
- '"interface {{ test_interface_1 }}" in result.commands'
|
||||||
|
- '"no ip address" in result.commands'
|
||||||
|
- '"no ipv6 address" in result.commands'
|
||||||
|
|
||||||
|
- name: Delete interface ipv4 and ipv6 address (idempotent)
|
||||||
|
eos_l3_interface:
|
||||||
|
name: "{{ test_interface_1 }}"
|
||||||
|
state: absent
|
||||||
|
authorize: yes
|
||||||
|
provider: "{{ eapi }}"
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- name: Delete second interface ipv4 and ipv6 address (setup)
|
||||||
|
eos_l3_interface:
|
||||||
|
name: "{{ test_interface_2 }}"
|
||||||
|
state: absent
|
||||||
|
authorize: yes
|
||||||
|
provider: "{{ eapi }}"
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- name: Configure ipv4 and ipv6 address using aggregate
|
||||||
|
eos_l3_interface:
|
||||||
|
aggregate:
|
||||||
|
- { name: "{{ test_interface_1 }}", ipv4: 192.161.0.1/24, ipv6: "fd5d:12c9:2201:2::2/64" }
|
||||||
|
- { name: "{{ test_interface_2 }}", ipv4: 192.162.0.2/16, ipv6: "fd5e:12c9:2201:3::3/32" }
|
||||||
|
authorize: yes
|
||||||
|
provider: "{{ eapi }}"
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- 'result.changed == true'
|
||||||
|
- '"interface {{ test_interface_1 }}" in result.commands'
|
||||||
|
- '"ip address 192.161.0.1/24" in result.commands'
|
||||||
|
- '"ipv6 address fd5d:12c9:2201:2::2/64" in result.commands'
|
||||||
|
- '"interface {{ test_interface_2 }}" in result.commands'
|
||||||
|
- '"ip address 192.162.0.2/16" in result.commands'
|
||||||
|
- '"ipv6 address fd5e:12c9:2201:3::3/32" in result.commands'
|
||||||
|
|
||||||
|
- name: Configure ipv4 and ipv6 address using aggregate (idempotent)
|
||||||
|
eos_l3_interface:
|
||||||
|
aggregate:
|
||||||
|
- { name: "{{ test_interface_1 }}", ipv4: 192.161.0.1/24, ipv6: "fd5d:12c9:2201:2::2/64" }
|
||||||
|
- { name: "{{ test_interface_2 }}", ipv4: 192.162.0.2/16, ipv6: "fd5e:12c9:2201:3::3/32" }
|
||||||
|
authorize: yes
|
||||||
|
provider: "{{ eapi }}"
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- 'result.changed == false'
|
||||||
|
|
||||||
|
- name: Change ipv4 and ipv6 address using aggregate
|
||||||
|
eos_l3_interface:
|
||||||
|
aggregate:
|
||||||
|
- { name: "{{ test_interface_1 }}", ipv4: 193.167.1.1/8, ipv6: "fd5a:12c9:2201:4::4/32" }
|
||||||
|
- { name: "{{ test_interface_2 }}", ipv4: 192.169.2.2/24, ipv6: "fd5b:12c9:2201:5::5/90" }
|
||||||
|
authorize: yes
|
||||||
|
provider: "{{ eapi }}"
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- 'result.changed == true'
|
||||||
|
- '"interface {{ test_interface_1 }}" in result.commands'
|
||||||
|
- '"ip address 193.167.1.1/8" in result.commands'
|
||||||
|
- '"ipv6 address fd5a:12c9:2201:4::4/32" in result.commands'
|
||||||
|
- '"interface {{ test_interface_2 }}" in result.commands'
|
||||||
|
- '"ip address 192.169.2.2/24" in result.commands'
|
||||||
|
- '"ipv6 address fd5b:12c9:2201:5::5/90" in result.commands'
|
||||||
|
|
||||||
|
|
||||||
|
- name: Delete ipv4 and ipv6 address using aggregate
|
||||||
|
eos_l3_interface:
|
||||||
|
aggregate:
|
||||||
|
- { name: "{{ test_interface_1 }}" }
|
||||||
|
- { name: "{{ test_interface_2 }}" }
|
||||||
|
state: absent
|
||||||
|
authorize: yes
|
||||||
|
provider: "{{ eapi }}"
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- 'result.changed == true'
|
||||||
|
- '"interface {{ test_interface_1 }}" in result.commands'
|
||||||
|
- '"no ip address" in result.commands'
|
||||||
|
- '"no ipv6 address" in result.commands'
|
||||||
|
- '"interface {{ test_interface_2 }}" in result.commands'
|
||||||
|
- '"no ip address" in result.commands'
|
||||||
|
- '"no ipv6 address" in result.commands'
|
||||||
|
|
||||||
|
- name: Delete ipv4 and ipv6 address using aggregate (idempotent)
|
||||||
|
eos_l3_interface:
|
||||||
|
aggregate:
|
||||||
|
- { name: "{{ test_interface_1 }}" }
|
||||||
|
- { name: "{{ test_interface_2 }}" }
|
||||||
|
state: absent
|
||||||
|
authorize: yes
|
||||||
|
provider: "{{ eapi }}"
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- 'result.changed == false'
|
||||||
|
|
||||||
|
- debug: msg="END eos_l3_interface eapi/basic.yaml on connection={{ ansible_connection }}"
|
Loading…
Reference in a new issue