mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Added support for new Ansible Infra (network_cli plugin, cliconf, module utils cleanup and test) for dellos10 Support t (#34915)
* Support for network_cli plugin and tests * Fixed ansible-test * issues * Fixed Pylint warning * Fixed the sanity test errors * Fix YAMLlinter issue - removed blank spaces * Fixed Python 3 failures * Fixed the PEP8 issue * Fix sanity --test validate-modules * Reverted the changes to the doc fragments
This commit is contained in:
parent
1f544ed6cc
commit
2f46f8f944
51 changed files with 22371 additions and 160 deletions
|
@ -124,8 +124,7 @@ def load_config(module, commands):
|
||||||
for command in to_list(commands):
|
for command in to_list(commands):
|
||||||
if command == 'end':
|
if command == 'end':
|
||||||
continue
|
continue
|
||||||
cmd = {'command': command, 'prompt': WARNING_PROMPTS_RE, 'answer': 'yes'}
|
rc, out, err = exec_command(module, command)
|
||||||
rc, out, err = exec_command(module, module.jsonify(cmd))
|
|
||||||
if rc != 0:
|
if rc != 0:
|
||||||
module.fail_json(msg=to_text(err, errors='surrogate_or_strict'), command=command, rc=rc)
|
module.fail_json(msg=to_text(err, errors='surrogate_or_strict'), command=command, rc=rc)
|
||||||
|
|
||||||
|
|
|
@ -45,9 +45,22 @@ options:
|
||||||
See examples.
|
See examples.
|
||||||
required: false
|
required: false
|
||||||
default: null
|
default: null
|
||||||
|
version_added: "2.2"
|
||||||
|
match:
|
||||||
|
description:
|
||||||
|
- The I(match) argument is used in conjunction with the
|
||||||
|
I(wait_for) argument to specify the match policy. Valid
|
||||||
|
values are C(all) or C(any). If the value is set to C(all)
|
||||||
|
then all conditionals in the wait_for must be satisfied. If
|
||||||
|
the value is set to C(any) then only one of the values must be
|
||||||
|
satisfied.
|
||||||
|
required: false
|
||||||
|
default: all
|
||||||
|
choices: ['any', 'all']
|
||||||
|
version_added: "2.5"
|
||||||
retries:
|
retries:
|
||||||
description:
|
description:
|
||||||
- Specifies the number of retries a command should by tried
|
- Specifies the number of retries a command should be tried
|
||||||
before it is considered failed. The command is run on the
|
before it is considered failed. The command is run on the
|
||||||
target device every retry and evaluated against the
|
target device every retry and evaluated against the
|
||||||
I(wait_for) conditions.
|
I(wait_for) conditions.
|
||||||
|
@ -64,33 +77,21 @@ options:
|
||||||
"""
|
"""
|
||||||
|
|
||||||
EXAMPLES = """
|
EXAMPLES = """
|
||||||
# Note: examples below use the following provider dict to handle
|
|
||||||
# transport and authentication to the node.
|
|
||||||
vars:
|
|
||||||
cli:
|
|
||||||
host: "{{ inventory_hostname }}"
|
|
||||||
username: admin
|
|
||||||
password: admin
|
|
||||||
transport: cli
|
|
||||||
|
|
||||||
tasks:
|
tasks:
|
||||||
- name: run show version on remote devices
|
- name: run show version on remote devices
|
||||||
dellos10_command:
|
dellos10_command:
|
||||||
commands: show version
|
commands: show version
|
||||||
provider: "{{ cli }}"
|
|
||||||
|
|
||||||
- name: run show version and check to see if output contains OS10
|
- name: run show version and check to see if output contains OS10
|
||||||
dellos10_command:
|
dellos10_command:
|
||||||
commands: show version
|
commands: show version
|
||||||
wait_for: result[0] contains OS10
|
wait_for: result[0] contains OS10
|
||||||
provider: "{{ cli }}"
|
|
||||||
|
|
||||||
- name: run multiple commands on remote nodes
|
- name: run multiple commands on remote nodes
|
||||||
dellos10_command:
|
dellos10_command:
|
||||||
commands:
|
commands:
|
||||||
- show version
|
- show version
|
||||||
- show interface
|
- show interface
|
||||||
provider: "{{ cli }}"
|
|
||||||
|
|
||||||
- name: run multiple commands and evaluate the output
|
- name: run multiple commands and evaluate the output
|
||||||
dellos10_command:
|
dellos10_command:
|
||||||
|
@ -100,7 +101,6 @@ tasks:
|
||||||
wait_for:
|
wait_for:
|
||||||
- result[0] contains OS10
|
- result[0] contains OS10
|
||||||
- result[1] contains Ethernet
|
- result[1] contains Ethernet
|
||||||
provider: "{{ cli }}"
|
|
||||||
"""
|
"""
|
||||||
|
|
||||||
RETURN = """
|
RETURN = """
|
||||||
|
@ -109,19 +109,16 @@ stdout:
|
||||||
returned: always apart from low level errors (such as action plugin)
|
returned: always apart from low level errors (such as action plugin)
|
||||||
type: list
|
type: list
|
||||||
sample: ['...', '...']
|
sample: ['...', '...']
|
||||||
|
|
||||||
stdout_lines:
|
stdout_lines:
|
||||||
description: The value of stdout split into a list
|
description: The value of stdout split into a list
|
||||||
returned: always apart from low level errors (such as action plugin)
|
returned: always apart from low level errors (such as action plugin)
|
||||||
type: list
|
type: list
|
||||||
sample: [['...', '...'], ['...'], ['...']]
|
sample: [['...', '...'], ['...'], ['...']]
|
||||||
|
|
||||||
failed_conditions:
|
failed_conditions:
|
||||||
description: The list of conditionals that have failed
|
description: The list of conditionals that have failed
|
||||||
returned: failed
|
returned: failed
|
||||||
type: list
|
type: list
|
||||||
sample: ['...', '...']
|
sample: ['...', '...']
|
||||||
|
|
||||||
warnings:
|
warnings:
|
||||||
description: The list of warnings (if any) generated by module based on arguments
|
description: The list of warnings (if any) generated by module based on arguments
|
||||||
returned: always
|
returned: always
|
||||||
|
@ -220,11 +217,11 @@ def main():
|
||||||
msg = 'One or more conditional statements have not be satisfied'
|
msg = 'One or more conditional statements have not be satisfied'
|
||||||
module.fail_json(msg=msg, failed_conditions=failed_conditions)
|
module.fail_json(msg=msg, failed_conditions=failed_conditions)
|
||||||
|
|
||||||
result = {
|
result.update({
|
||||||
'changed': False,
|
'changed': False,
|
||||||
'stdout': responses,
|
'stdout': responses,
|
||||||
'stdout_lines': list(to_lines(responses))
|
'stdout_lines': list(to_lines(responses))
|
||||||
}
|
})
|
||||||
|
|
||||||
module.exit_json(**result)
|
module.exit_json(**result)
|
||||||
|
|
||||||
|
|
|
@ -31,15 +31,17 @@ options:
|
||||||
description:
|
description:
|
||||||
- The ordered set of commands that should be configured in the
|
- The ordered set of commands that should be configured in the
|
||||||
section. The commands must be the exact same commands as found
|
section. The commands must be the exact same commands as found
|
||||||
in the device running-config. Note the configuration
|
in the device running-config. Be sure to note the configuration
|
||||||
command syntax as the device config parser automatically modifies some commands. This argument is mutually exclusive with I(src).
|
command syntax as some commands are automatically modified by the
|
||||||
|
device config parser. This argument is mutually exclusive with I(src).
|
||||||
required: false
|
required: false
|
||||||
default: null
|
default: null
|
||||||
aliases: ['commands']
|
aliases: ['commands']
|
||||||
parents:
|
parents:
|
||||||
description:
|
description:
|
||||||
- The ordered set of parents that uniquely identify the section
|
- The ordered set of parents that uniquely identify the section
|
||||||
the commands should be checked against. If you omit the parents argument, the commands are checked against the set of top
|
the commands should be checked against. If the parents argument
|
||||||
|
is omitted, the commands are checked against the set of top
|
||||||
level or global commands.
|
level or global commands.
|
||||||
required: false
|
required: false
|
||||||
default: null
|
default: null
|
||||||
|
@ -48,15 +50,15 @@ options:
|
||||||
- Specifies the source path to the file that contains the configuration
|
- Specifies the source path to the file that contains the configuration
|
||||||
or configuration template to load. The path to the source file can
|
or configuration template to load. The path to the source file can
|
||||||
either be the full path on the Ansible control host or a relative
|
either be the full path on the Ansible control host or a relative
|
||||||
path from the playbook or role root directory. This argument is mutually
|
path from the playbook or role root directory. This argument is
|
||||||
exclusive with I(lines), I(parents).
|
mutually exclusive with I(lines).
|
||||||
required: false
|
required: false
|
||||||
default: null
|
default: null
|
||||||
before:
|
before:
|
||||||
description:
|
description:
|
||||||
- The ordered set of commands to push on to the command stack if
|
- The ordered set of commands to push on to the command stack if
|
||||||
a change needs to be made. The playbook designer can use this argument
|
a change needs to be made. This allows the playbook designer
|
||||||
to perform configuration commands prior to pushing
|
the opportunity to perform configuration commands prior to pushing
|
||||||
any changes without affecting how the set of commands are matched
|
any changes without affecting how the set of commands are matched
|
||||||
against the system.
|
against the system.
|
||||||
required: false
|
required: false
|
||||||
|
@ -64,20 +66,20 @@ options:
|
||||||
after:
|
after:
|
||||||
description:
|
description:
|
||||||
- The ordered set of commands to append to the end of the command
|
- The ordered set of commands to append to the end of the command
|
||||||
stack if a change needs to be made. As with I(before),
|
stack if a change needs to be made. Just like with I(before) this
|
||||||
the playbook designer can use this argument to append a set of commands to be
|
allows the playbook designer to append a set of commands to be
|
||||||
executed after the command set.
|
executed after the command set.
|
||||||
required: false
|
required: false
|
||||||
default: null
|
default: null
|
||||||
match:
|
match:
|
||||||
description:
|
description:
|
||||||
- Instructs the module on the way to perform the matching of
|
- Instructs the module on the way to perform the matching of
|
||||||
the set of commands against the current device config. If you set
|
the set of commands against the current device config. If
|
||||||
match to I(line), commands match line by line. If you set
|
match is set to I(line), commands are matched line by line. If
|
||||||
match to I(strict), command lines match by
|
match is set to I(strict), command lines are matched with respect
|
||||||
position. If you set match to I(exact), command lines
|
to position. If match is set to I(exact), command lines
|
||||||
must be an equal match. Finally, if you set match to I(none), the
|
must be an equal match. Finally, if match is set to I(none), the
|
||||||
module does not attempt to compare the source configuration with
|
module will not attempt to compare the source configuration with
|
||||||
the running configuration on the remote device.
|
the running configuration on the remote device.
|
||||||
required: false
|
required: false
|
||||||
default: line
|
default: line
|
||||||
|
@ -85,10 +87,10 @@ options:
|
||||||
replace:
|
replace:
|
||||||
description:
|
description:
|
||||||
- Instructs the module on the way to perform the configuration
|
- Instructs the module on the way to perform the configuration
|
||||||
on the device. If you set the replace argument to I(line), then
|
on the device. If the replace argument is set to I(line) then
|
||||||
the modified lines push to the device in configuration
|
the modified lines are pushed to the device in configuration
|
||||||
mode. If you set the replace argument to I(block), then the entire
|
mode. If the replace argument is set to I(block) then the entire
|
||||||
command block pushes to the device in configuration mode if any
|
command block is pushed to the device in configuration mode if any
|
||||||
line is not correct.
|
line is not correct.
|
||||||
required: false
|
required: false
|
||||||
default: line
|
default: line
|
||||||
|
@ -97,9 +99,9 @@ options:
|
||||||
description:
|
description:
|
||||||
- The I(update) argument controls how the configuration statements
|
- The I(update) argument controls how the configuration statements
|
||||||
are processed on the remote device. Valid choices for the I(update)
|
are processed on the remote device. Valid choices for the I(update)
|
||||||
argument are I(merge) and I(check). When you set the argument to
|
argument are I(merge) and I(check). When you set this argument to
|
||||||
I(merge), the configuration changes merge with the current
|
I(merge), the configuration changes merge with the current
|
||||||
device running configuration. When you set the argument to I(check),
|
device running configuration. When you set this argument to I(check)
|
||||||
the configuration updates are determined but not actually configured
|
the configuration updates are determined but not actually configured
|
||||||
on the remote device.
|
on the remote device.
|
||||||
required: false
|
required: false
|
||||||
|
@ -109,34 +111,36 @@ options:
|
||||||
description:
|
description:
|
||||||
- The C(save) argument instructs the module to save the running-
|
- The C(save) argument instructs the module to save the running-
|
||||||
config to the startup-config at the conclusion of the module
|
config to the startup-config at the conclusion of the module
|
||||||
running. If you specify check mode, this argument is ignored.
|
running. If check mode is specified, this argument is ignored.
|
||||||
required: false
|
required: false
|
||||||
default: no
|
default: no
|
||||||
choices: ['yes', 'no']
|
choices: ['yes', 'no']
|
||||||
config:
|
config:
|
||||||
description:
|
description:
|
||||||
- The playbook designer can use the C(config) argument to supply
|
- The module, by default, will connect to the remote device and
|
||||||
the base configuration to be used to validate necessary configuration
|
retrieve the current running-config to use as a base for comparing
|
||||||
changes. If you specify this argument, the module
|
against the contents of source. There are times when it is not
|
||||||
does not download the running-config from the remote node.
|
desirable to have the task get the current running-config for
|
||||||
|
every task in a playbook. The I(config) argument allows the
|
||||||
|
implementer to pass in the configuration to use as the base
|
||||||
|
config for comparison.
|
||||||
required: false
|
required: false
|
||||||
default: null
|
default: null
|
||||||
backup:
|
backup:
|
||||||
description:
|
description:
|
||||||
- This argument causes the module to create a full backup of
|
- This argument will cause the module to create a full backup of
|
||||||
the current C(running-config) from the remote device before any
|
the current C(running-config) from the remote device before any
|
||||||
changes are made. The backup file is written to the C(backup)
|
changes are made. The backup file is written to the C(backup)
|
||||||
folder in the playbook root directory. If the directory does not
|
folder in the playbook root directory. If the directory does not
|
||||||
exist, it is created.
|
exist, it is created.
|
||||||
required: false
|
required: false
|
||||||
default: no
|
default: no
|
||||||
choices: ['yes', 'no']
|
type: bool
|
||||||
"""
|
"""
|
||||||
|
|
||||||
EXAMPLES = """
|
EXAMPLES = """
|
||||||
- dellos10_config:
|
- dellos10_config:
|
||||||
lines: ['hostname {{ inventory_hostname }}']
|
lines: ['hostname {{ inventory_hostname }}']
|
||||||
provider: "{{ cli }}"
|
|
||||||
|
|
||||||
- dellos10_config:
|
- dellos10_config:
|
||||||
lines:
|
lines:
|
||||||
|
@ -148,7 +152,6 @@ EXAMPLES = """
|
||||||
parents: ['ip access-list test']
|
parents: ['ip access-list test']
|
||||||
before: ['no ip access-list test']
|
before: ['no ip access-list test']
|
||||||
match: exact
|
match: exact
|
||||||
provider: "{{ cli }}"
|
|
||||||
|
|
||||||
- dellos10_config:
|
- dellos10_config:
|
||||||
lines:
|
lines:
|
||||||
|
@ -159,23 +162,19 @@ EXAMPLES = """
|
||||||
parents: ['ip access-list test']
|
parents: ['ip access-list test']
|
||||||
before: ['no ip access-list test']
|
before: ['no ip access-list test']
|
||||||
replace: block
|
replace: block
|
||||||
provider: "{{ cli }}"
|
|
||||||
|
|
||||||
"""
|
"""
|
||||||
|
|
||||||
RETURN = """
|
RETURN = """
|
||||||
updates:
|
updates:
|
||||||
description: The set of commands pushed to the remote device.
|
description: The set of commands that will be pushed to the remote device.
|
||||||
returned: Always.
|
returned: always
|
||||||
type: list
|
type: list
|
||||||
sample: ['...', '...']
|
sample: ['hostname foo', 'router bgp 1', 'router-id 1.1.1.1']
|
||||||
|
commands:
|
||||||
responses:
|
description: The set of commands that will be pushed to the remote device
|
||||||
description: The set of responses from issuing the commands on the device.
|
returned: always
|
||||||
returned: When not check_mode.
|
|
||||||
type: list
|
type: list
|
||||||
sample: ['...', '...']
|
sample: ['hostname foo', 'router bgp 1', 'router-id 1.1.1.1']
|
||||||
|
|
||||||
saved:
|
saved:
|
||||||
description: Returns whether the configuration is saved to the startup
|
description: Returns whether the configuration is saved to the startup
|
||||||
configuration or not.
|
configuration or not.
|
||||||
|
@ -202,10 +201,23 @@ def get_candidate(module):
|
||||||
candidate.load(module.params['src'])
|
candidate.load(module.params['src'])
|
||||||
elif module.params['lines']:
|
elif module.params['lines']:
|
||||||
parents = module.params['parents'] or list()
|
parents = module.params['parents'] or list()
|
||||||
|
commands = module.params['lines'][0]
|
||||||
|
if (isinstance(commands, dict)) and (isinstance((commands['command']), list)):
|
||||||
|
candidate.add(commands['command'], parents=parents)
|
||||||
|
elif (isinstance(commands, dict)) and (isinstance((commands['command']), str)):
|
||||||
|
candidate.add([commands['command']], parents=parents)
|
||||||
|
else:
|
||||||
candidate.add(module.params['lines'], parents=parents)
|
candidate.add(module.params['lines'], parents=parents)
|
||||||
return candidate
|
return candidate
|
||||||
|
|
||||||
|
|
||||||
|
def get_running_config(module):
|
||||||
|
contents = module.params['config']
|
||||||
|
if not contents:
|
||||||
|
contents = get_config(module)
|
||||||
|
return contents
|
||||||
|
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
|
|
||||||
argument_spec = dict(
|
argument_spec = dict(
|
||||||
|
@ -229,8 +241,7 @@ def main():
|
||||||
|
|
||||||
argument_spec.update(dellos10_argument_spec)
|
argument_spec.update(dellos10_argument_spec)
|
||||||
|
|
||||||
mutually_exclusive = [('lines', 'src'),
|
mutually_exclusive = [('lines', 'src')]
|
||||||
('parents', 'src')]
|
|
||||||
|
|
||||||
module = AnsibleModule(argument_spec=argument_spec,
|
module = AnsibleModule(argument_spec=argument_spec,
|
||||||
mutually_exclusive=mutually_exclusive,
|
mutually_exclusive=mutually_exclusive,
|
||||||
|
@ -246,27 +257,36 @@ def main():
|
||||||
|
|
||||||
result = dict(changed=False, saved=False, warnings=warnings)
|
result = dict(changed=False, saved=False, warnings=warnings)
|
||||||
|
|
||||||
|
if module.params['backup']:
|
||||||
|
if not module.check_mode:
|
||||||
|
result['__backup__'] = get_config(module)
|
||||||
|
|
||||||
|
commands = list()
|
||||||
candidate = get_candidate(module)
|
candidate = get_candidate(module)
|
||||||
|
|
||||||
|
if any((module.params['lines'], module.params['src'])):
|
||||||
if match != 'none':
|
if match != 'none':
|
||||||
config = get_config(module)
|
config = get_running_config(module)
|
||||||
if parents:
|
if parents:
|
||||||
contents = get_sublevel_config(config, module)
|
contents = get_sublevel_config(config, module)
|
||||||
config = NetworkConfig(contents=contents, indent=1)
|
config = NetworkConfig(contents=contents, indent=1)
|
||||||
else:
|
else:
|
||||||
config = NetworkConfig(contents=config, indent=1)
|
config = NetworkConfig(contents=config, indent=1)
|
||||||
configobjs = candidate.difference(config, match=match, replace=replace)
|
configobjs = candidate.difference(config, match=match, replace=replace)
|
||||||
|
|
||||||
else:
|
else:
|
||||||
configobjs = candidate.items
|
configobjs = candidate.items
|
||||||
|
|
||||||
if module.params['backup']:
|
|
||||||
if not module.check_mode:
|
|
||||||
result['__backup__'] = get_config(module)
|
|
||||||
|
|
||||||
commands = list()
|
|
||||||
|
|
||||||
if configobjs:
|
if configobjs:
|
||||||
commands = dumps(configobjs, 'commands')
|
commands = dumps(configobjs, 'commands')
|
||||||
|
if ((isinstance((module.params['lines']), list)) and
|
||||||
|
(isinstance((module.params['lines'][0]), dict)) and
|
||||||
|
(['prompt', 'answer'].issubset(module.params['lines'][0]))):
|
||||||
|
|
||||||
|
cmd = {'command': commands,
|
||||||
|
'prompt': module.params['lines'][0]['prompt'],
|
||||||
|
'answer': module.params['lines'][0]['answer']}
|
||||||
|
commands = [module.jsonify(cmd)]
|
||||||
|
else:
|
||||||
commands = commands.split('\n')
|
commands = commands.split('\n')
|
||||||
|
|
||||||
if module.params['before']:
|
if module.params['before']:
|
||||||
|
@ -278,14 +298,21 @@ def main():
|
||||||
if not module.check_mode and module.params['update'] == 'merge':
|
if not module.check_mode and module.params['update'] == 'merge':
|
||||||
load_config(module, commands)
|
load_config(module, commands)
|
||||||
|
|
||||||
|
result['changed'] = True
|
||||||
|
result['commands'] = commands
|
||||||
|
result['updates'] = commands
|
||||||
|
|
||||||
if module.params['save']:
|
if module.params['save']:
|
||||||
cmd = {'command': 'copy runing-config startup-config', 'prompt': WARNING_PROMPTS_RE, 'answer': 'yes'}
|
result['changed'] = True
|
||||||
|
if not module.check_mode:
|
||||||
|
cmd = {r'command': 'copy running-config startup-config',
|
||||||
|
r'prompt': r'\[confirm yes/no\]:\s?$', 'answer': 'yes'}
|
||||||
run_commands(module, [cmd])
|
run_commands(module, [cmd])
|
||||||
result['saved'] = True
|
result['saved'] = True
|
||||||
|
else:
|
||||||
result['changed'] = True
|
module.warn('Skipping command `copy running-config startup-config`'
|
||||||
|
'due to check_mode. Configuration not copied to '
|
||||||
result['updates'] = commands
|
'non-volatile storage')
|
||||||
|
|
||||||
module.exit_json(**result)
|
module.exit_json(**result)
|
||||||
|
|
||||||
|
|
|
@ -23,16 +23,17 @@ description:
|
||||||
- Collects a base set of device facts from a remote device that
|
- Collects a base set of device facts from a remote device that
|
||||||
is running OS10. This module prepends all of the
|
is running OS10. This module prepends all of the
|
||||||
base network fact keys with C(ansible_net_<fact>). The facts
|
base network fact keys with C(ansible_net_<fact>). The facts
|
||||||
module always collects a base set of facts from the device
|
module will always collect a base set of facts from the device
|
||||||
and can enable or disable collection of additional facts.
|
and can enable or disable collection of additional facts.
|
||||||
extends_documentation_fragment: dellos10
|
extends_documentation_fragment: dellos10
|
||||||
options:
|
options:
|
||||||
gather_subset:
|
gather_subset:
|
||||||
description:
|
description:
|
||||||
- When supplied, this argument restricts the facts collected
|
- When supplied, this argument will restrict the facts collected
|
||||||
to a given subset. Possible values for this argument include
|
to a given subset. Possible values for this argument include
|
||||||
all, hardware, config, and interfaces. You can specify a list of
|
all, hardware, config, and interfaces. Can specify a list of
|
||||||
values to include a larger subset. You can also use values with an initial M(!) to specify that a specific subset should
|
values to include a larger subset. Values can also be used
|
||||||
|
with an initial C(M(!)) to specify that a specific subset should
|
||||||
not be collected.
|
not be collected.
|
||||||
required: false
|
required: false
|
||||||
default: '!config'
|
default: '!config'
|
||||||
|
@ -56,8 +57,8 @@ EXAMPLES = """
|
||||||
|
|
||||||
RETURN = """
|
RETURN = """
|
||||||
ansible_net_gather_subset:
|
ansible_net_gather_subset:
|
||||||
description: The list of fact subsets collected from the device.
|
description: The list of fact subsets collected from the device
|
||||||
returned: Always.
|
returned: always
|
||||||
type: list
|
type: list
|
||||||
|
|
||||||
# default
|
# default
|
||||||
|
@ -66,58 +67,58 @@ ansible_net_name:
|
||||||
returned: Always.
|
returned: Always.
|
||||||
type: str
|
type: str
|
||||||
ansible_net_version:
|
ansible_net_version:
|
||||||
description: The operating system version running on the remote device.
|
description: The operating system version running on the remote device
|
||||||
returned: Always.
|
returned: always
|
||||||
type: str
|
type: str
|
||||||
ansible_net_servicetag:
|
ansible_net_servicetag:
|
||||||
description: The service tag number of the remote device.
|
description: The service tag number of the remote device.
|
||||||
returned: Always.
|
returned: always
|
||||||
type: str
|
type: str
|
||||||
ansible_net_model:
|
ansible_net_model:
|
||||||
description: The model name returned from the device.
|
description: The model name returned from the device.
|
||||||
returned: Always.
|
returned: always
|
||||||
type: str
|
type: str
|
||||||
ansible_net_hostname:
|
ansible_net_hostname:
|
||||||
description: The configured hostname of the device.
|
description: The configured hostname of the device
|
||||||
returned: Always.
|
returned: always
|
||||||
type: str
|
type: str
|
||||||
|
|
||||||
# hardware
|
# hardware
|
||||||
ansible_net_cpu_arch:
|
ansible_net_cpu_arch:
|
||||||
description: CPU Architecture of the remote device.
|
description: CPU Architecture of the remote device.
|
||||||
returned: When hardware is configured.
|
returned: when hardware is configured
|
||||||
type: str
|
type: str
|
||||||
ansible_net_memfree_mb:
|
ansible_net_memfree_mb:
|
||||||
description: The available free memory on the remote device in MB.
|
description: The available free memory on the remote device in Mb
|
||||||
returned: When hardware is configured.
|
returned: when hardware is configured
|
||||||
type: int
|
type: int
|
||||||
ansible_net_memtotal_mb:
|
ansible_net_memtotal_mb:
|
||||||
description: The total memory on the remote device in MB.
|
description: The total memory on the remote device in Mb
|
||||||
returned: When hardware is configured.
|
returned: when hardware is configured
|
||||||
type: int
|
type: int
|
||||||
|
|
||||||
# config
|
# config
|
||||||
ansible_net_config:
|
ansible_net_config:
|
||||||
description: The current active config from the device.
|
description: The current active config from the device
|
||||||
returned: When config is configured.
|
returned: when config is configured
|
||||||
type: str
|
type: str
|
||||||
|
|
||||||
# interfaces
|
# interfaces
|
||||||
ansible_net_all_ipv4_addresses:
|
ansible_net_all_ipv4_addresses:
|
||||||
description: All IPv4 addresses configured on the device.
|
description: All IPv4 addresses configured on the device
|
||||||
returned: When interfaces is configured
|
returned: when interfaces is configured
|
||||||
type: list
|
type: list
|
||||||
ansible_net_all_ipv6_addresses:
|
ansible_net_all_ipv6_addresses:
|
||||||
description: All IPv6 addresses configured on the device.
|
description: All IPv6 addresses configured on the device
|
||||||
returned: When interfaces is configured.
|
returned: when interfaces is configured
|
||||||
type: list
|
type: list
|
||||||
ansible_net_interfaces:
|
ansible_net_interfaces:
|
||||||
description: A hash of all interfaces running on the system.
|
description: A hash of all interfaces running on the system
|
||||||
returned: When interfaces is configured.
|
returned: when interfaces is configured
|
||||||
type: dict
|
type: dict
|
||||||
ansible_net_neighbors:
|
ansible_net_neighbors:
|
||||||
description: The list of LLDP neighbors from the remote device.
|
description: The list of LLDP neighbors from the remote device
|
||||||
returned: When interfaces is configured.
|
returned: when interfaces is configured
|
||||||
type: dict
|
type: dict
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
@ -212,7 +213,7 @@ class Hardware(FactsBase):
|
||||||
|
|
||||||
COMMANDS = [
|
COMMANDS = [
|
||||||
'show version | display-xml',
|
'show version | display-xml',
|
||||||
'show processes node-id 1 | grep "Mem:"'
|
'show processes node-id 1 | grep Mem:'
|
||||||
]
|
]
|
||||||
|
|
||||||
def populate(self):
|
def populate(self):
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
#
|
#
|
||||||
# (c) 2016 Red Hat Inc.
|
# (c) 2016 Red Hat Inc.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2017 Dell Inc.
|
# (c) 2017 Dell EMC.
|
||||||
#
|
#
|
||||||
# This file is part of Ansible
|
# This file is part of Ansible
|
||||||
#
|
#
|
||||||
|
@ -28,8 +28,8 @@ from ansible import constants as C
|
||||||
from ansible.module_utils._text import to_text
|
from ansible.module_utils._text import to_text
|
||||||
from ansible.module_utils.connection import Connection
|
from ansible.module_utils.connection import Connection
|
||||||
from ansible.plugins.action.normal import ActionModule as _ActionModule
|
from ansible.plugins.action.normal import ActionModule as _ActionModule
|
||||||
from ansible.module_utils.network.dellos10.dellos10 import dellos10_provider_spec
|
|
||||||
from ansible.module_utils.network.common.utils import load_provider
|
from ansible.module_utils.network.common.utils import load_provider
|
||||||
|
from ansible.module_utils.network.dellos10.dellos10 import dellos10_provider_spec
|
||||||
|
|
||||||
try:
|
try:
|
||||||
from __main__ import display
|
from __main__ import display
|
||||||
|
@ -41,16 +41,14 @@ except ImportError:
|
||||||
class ActionModule(_ActionModule):
|
class ActionModule(_ActionModule):
|
||||||
|
|
||||||
def run(self, tmp=None, task_vars=None):
|
def run(self, tmp=None, task_vars=None):
|
||||||
|
socket_path = None
|
||||||
|
|
||||||
if self._play_context.connection != 'local':
|
if self._play_context.connection == 'network_cli':
|
||||||
return dict(
|
provider = self._task.args.get('provider', {})
|
||||||
failed=True,
|
if any(provider.values()):
|
||||||
msg='invalid connection specified, expected connection=local, '
|
display.warning('provider is unnecessary when using network_cli and will be ignored')
|
||||||
'got %s' % self._play_context.connection
|
elif self._play_context.connection == 'local':
|
||||||
)
|
|
||||||
|
|
||||||
provider = load_provider(dellos10_provider_spec, self._task.args)
|
provider = load_provider(dellos10_provider_spec, self._task.args)
|
||||||
|
|
||||||
pc = copy.deepcopy(self._play_context)
|
pc = copy.deepcopy(self._play_context)
|
||||||
pc.connection = 'network_cli'
|
pc.connection = 'network_cli'
|
||||||
pc.network_os = 'dellos10'
|
pc.network_os = 'dellos10'
|
||||||
|
@ -61,9 +59,11 @@ class ActionModule(_ActionModule):
|
||||||
pc.private_key_file = provider['ssh_keyfile'] or self._play_context.private_key_file
|
pc.private_key_file = provider['ssh_keyfile'] or self._play_context.private_key_file
|
||||||
pc.timeout = int(provider['timeout'] or C.PERSISTENT_COMMAND_TIMEOUT)
|
pc.timeout = int(provider['timeout'] or C.PERSISTENT_COMMAND_TIMEOUT)
|
||||||
pc.become = provider['authorize'] or False
|
pc.become = provider['authorize'] or False
|
||||||
|
if pc.become:
|
||||||
|
pc.become_method = 'enable'
|
||||||
pc.become_pass = provider['auth_pass']
|
pc.become_pass = provider['auth_pass']
|
||||||
|
|
||||||
display.vvv('using connection plugin %s (was local)' % pc.connection, pc.remote_addr)
|
display.vvv('using connection plugin %s' % pc.connection, pc.remote_addr)
|
||||||
connection = self._shared_loader_obj.connection_loader.get('persistent', pc, sys.stdin)
|
connection = self._shared_loader_obj.connection_loader.get('persistent', pc, sys.stdin)
|
||||||
|
|
||||||
socket_path = connection.run()
|
socket_path = connection.run()
|
||||||
|
@ -73,8 +73,13 @@ class ActionModule(_ActionModule):
|
||||||
'msg': 'unable to open shell. Please see: ' +
|
'msg': 'unable to open shell. Please see: ' +
|
||||||
'https://docs.ansible.com/ansible/network_debug_troubleshooting.html#unable-to-open-shell'}
|
'https://docs.ansible.com/ansible/network_debug_troubleshooting.html#unable-to-open-shell'}
|
||||||
|
|
||||||
|
task_vars['ansible_socket'] = socket_path
|
||||||
|
|
||||||
# make sure we are in the right cli context which should be
|
# make sure we are in the right cli context which should be
|
||||||
# enable mode and not config module
|
# enable mode and not config module
|
||||||
|
if socket_path is None:
|
||||||
|
socket_path = self._connection.socket_path
|
||||||
|
|
||||||
conn = Connection(socket_path)
|
conn = Connection(socket_path)
|
||||||
out = conn.get_prompt()
|
out = conn.get_prompt()
|
||||||
while to_text(out, errors='surrogate_then_replace').strip().endswith(')#'):
|
while to_text(out, errors='surrogate_then_replace').strip().endswith(')#'):
|
||||||
|
@ -82,11 +87,5 @@ class ActionModule(_ActionModule):
|
||||||
conn.send_command('exit')
|
conn.send_command('exit')
|
||||||
out = conn.get_prompt()
|
out = conn.get_prompt()
|
||||||
|
|
||||||
task_vars['ansible_socket'] = socket_path
|
|
||||||
|
|
||||||
if self._play_context.become_method == 'enable':
|
|
||||||
self._play_context.become = False
|
|
||||||
self._play_context.become_method = None
|
|
||||||
|
|
||||||
result = super(ActionModule, self).run(tmp, task_vars)
|
result = super(ActionModule, self).run(tmp, task_vars)
|
||||||
return result
|
return result
|
||||||
|
|
82
lib/ansible/plugins/cliconf/dellos10.py
Normal file
82
lib/ansible/plugins/cliconf/dellos10.py
Normal file
|
@ -0,0 +1,82 @@
|
||||||
|
#
|
||||||
|
# (c) 2017 Red Hat Inc.
|
||||||
|
#
|
||||||
|
# (c) 2017 Dell EMC.
|
||||||
|
#
|
||||||
|
# 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/>.
|
||||||
|
#
|
||||||
|
from __future__ import (absolute_import, division, print_function)
|
||||||
|
__metaclass__ = type
|
||||||
|
|
||||||
|
import re
|
||||||
|
import json
|
||||||
|
|
||||||
|
from itertools import chain
|
||||||
|
|
||||||
|
from ansible.module_utils._text import to_bytes, to_text
|
||||||
|
from ansible.module_utils.network.common.utils import to_list
|
||||||
|
from ansible.plugins.cliconf import CliconfBase, enable_mode
|
||||||
|
|
||||||
|
|
||||||
|
class Cliconf(CliconfBase):
|
||||||
|
|
||||||
|
def get_device_info(self):
|
||||||
|
device_info = {}
|
||||||
|
|
||||||
|
device_info['network_os'] = 'dellos10'
|
||||||
|
reply = self.get(b'show version')
|
||||||
|
data = to_text(reply, errors='surrogate_or_strict').strip()
|
||||||
|
|
||||||
|
match = re.search(r'OS Version (\S+)', data)
|
||||||
|
if match:
|
||||||
|
device_info['network_os_version'] = match.group(1)
|
||||||
|
|
||||||
|
match = re.search(r'System Type (\S+)', data, re.M)
|
||||||
|
if match:
|
||||||
|
device_info['network_os_model'] = match.group(1)
|
||||||
|
|
||||||
|
reply = self.get(b'show running-configuration | grep hostname')
|
||||||
|
data = to_text(reply, errors='surrogate_or_strict').strip()
|
||||||
|
match = re.search(r'^hostname (.+)', data, re.M)
|
||||||
|
if match:
|
||||||
|
device_info['network_os_hostname'] = match.group(1)
|
||||||
|
|
||||||
|
return device_info
|
||||||
|
|
||||||
|
@enable_mode
|
||||||
|
def get_config(self, source='running'):
|
||||||
|
if source not in ('running', 'startup'):
|
||||||
|
return self.invalid_params("fetching configuration from %s is not supported" % source)
|
||||||
|
if source == 'running':
|
||||||
|
cmd = b'show running-config all'
|
||||||
|
else:
|
||||||
|
cmd = b'show startup-config'
|
||||||
|
return self.send_command(cmd)
|
||||||
|
|
||||||
|
@enable_mode
|
||||||
|
def edit_config(self, command):
|
||||||
|
for cmd in chain(['configure terminal'], to_list(command), ['end']):
|
||||||
|
self.send_command(to_bytes(cmd))
|
||||||
|
|
||||||
|
def get(self, command, prompt=None, answer=None, sendonly=False):
|
||||||
|
return self.send_command(command, prompt=prompt, answer=answer, sendonly=sendonly)
|
||||||
|
|
||||||
|
def get_capabilities(self):
|
||||||
|
result = {}
|
||||||
|
result['rpc'] = self.get_base_rpc()
|
||||||
|
result['network_api'] = 'cliconf'
|
||||||
|
result['device_info'] = self.get_device_info()
|
||||||
|
return json.dumps(result)
|
8
test/integration/dellos10.yaml
Normal file → Executable file
8
test/integration/dellos10.yaml
Normal file → Executable file
|
@ -5,9 +5,9 @@
|
||||||
|
|
||||||
vars:
|
vars:
|
||||||
limit_to: "*"
|
limit_to: "*"
|
||||||
debug: false
|
test_items: ""
|
||||||
|
|
||||||
roles:
|
roles:
|
||||||
- { role: dellos10_command, when: "limit_to in ['*', 'dellos10_command']" }
|
- { role: test_dellos10_command, when: "limit_to in ['*', 'dellos10_command']" }
|
||||||
- { role: dellos10_config, when: "limit_to in ['*', 'dellos10_config']" }
|
- { role: test_dellos10_config, when: "limit_to in ['*', 'dellos10_config']" }
|
||||||
- { role: dellos10_facts, when: "limit_to in ['*', 'dellos10_facts']" }
|
- { role: test_dellos10_facts, when: "limit_to in ['*', 'dellos10_facts']" }
|
||||||
|
|
6
test/integration/group_vars/dellos10.yaml
Executable file
6
test/integration/group_vars/dellos10.yaml
Executable file
|
@ -0,0 +1,6 @@
|
||||||
|
---
|
||||||
|
cli:
|
||||||
|
host: "{{ ansible_host }}"
|
||||||
|
username: "{{ dellos10_cli_user | default('admin') }}"
|
||||||
|
password: "{{ dellos10_cli_pass | default('admin') }}"
|
||||||
|
transport: cli
|
2
test/integration/roles/test_dellos10_command/defaults/main.yaml
Executable file
2
test/integration/roles/test_dellos10_command/defaults/main.yaml
Executable file
|
@ -0,0 +1,2 @@
|
||||||
|
---
|
||||||
|
testcase: "*"
|
14
test/integration/roles/test_dellos10_command/tasks/cli.yaml
Executable file
14
test/integration/roles/test_dellos10_command/tasks/cli.yaml
Executable file
|
@ -0,0 +1,14 @@
|
||||||
|
---
|
||||||
|
- name: collect all cli test cases
|
||||||
|
find:
|
||||||
|
paths: "{{ role_path }}/tests/cli"
|
||||||
|
patterns: "{{ testcase }}.yaml"
|
||||||
|
register: test_cases
|
||||||
|
|
||||||
|
- name: set test_items
|
||||||
|
set_fact:
|
||||||
|
test_items: "{{ test_cases.files | map(attribute='path') | list }}"
|
||||||
|
|
||||||
|
- name: run test case
|
||||||
|
include: "{{ item }}"
|
||||||
|
with_items: "{{ test_items }}"
|
2
test/integration/roles/test_dellos10_command/tasks/main.yaml
Executable file
2
test/integration/roles/test_dellos10_command/tasks/main.yaml
Executable file
|
@ -0,0 +1,2 @@
|
||||||
|
---
|
||||||
|
- { include: cli.yaml, tags: ['cli'] }
|
20
test/integration/roles/test_dellos10_command/tests/cli/bad_operator.yaml
Executable file
20
test/integration/roles/test_dellos10_command/tests/cli/bad_operator.yaml
Executable file
|
@ -0,0 +1,20 @@
|
||||||
|
---
|
||||||
|
- debug: msg="START cli/bad_operator.yaml"
|
||||||
|
|
||||||
|
- name: test bad operator
|
||||||
|
dellos10_command:
|
||||||
|
commands:
|
||||||
|
- show version
|
||||||
|
- show interface ethernet 1/1/1
|
||||||
|
wait_for:
|
||||||
|
- "result[0] contains 'Description : blah'"
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
register: result
|
||||||
|
ignore_errors: yes
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- "result.failed == true"
|
||||||
|
- "result.msg is defined"
|
||||||
|
|
||||||
|
- debug: msg="END cli/bad_operator.yaml"
|
20
test/integration/roles/test_dellos10_command/tests/cli/contains.yaml
Executable file
20
test/integration/roles/test_dellos10_command/tests/cli/contains.yaml
Executable file
|
@ -0,0 +1,20 @@
|
||||||
|
---
|
||||||
|
- debug: msg="START cli/contains.yaml"
|
||||||
|
|
||||||
|
- name: test contains operator
|
||||||
|
dellos10_command:
|
||||||
|
commands:
|
||||||
|
- show version
|
||||||
|
- show interface ethernet 1/1/1
|
||||||
|
wait_for:
|
||||||
|
- "result[0] contains OS10-Premium"
|
||||||
|
- "result[1] contains Ethernet "
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- "result.changed == false"
|
||||||
|
- "result.stdout is defined"
|
||||||
|
|
||||||
|
- debug: msg="END cli/contains.yaml"
|
28
test/integration/roles/test_dellos10_command/tests/cli/invalid.yaml
Executable file
28
test/integration/roles/test_dellos10_command/tests/cli/invalid.yaml
Executable file
|
@ -0,0 +1,28 @@
|
||||||
|
---
|
||||||
|
- debug: msg="START cli/invalid.yaml"
|
||||||
|
|
||||||
|
- name: run invalid command
|
||||||
|
dellos10_command:
|
||||||
|
commands: ['show foo']
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
register: result
|
||||||
|
ignore_errors: yes
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- "'Error: Unrecognized command' in result.stdout"
|
||||||
|
|
||||||
|
- name: run commands that include invalid command
|
||||||
|
dellos10_command:
|
||||||
|
commands:
|
||||||
|
- show version
|
||||||
|
- show foo
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
register: result
|
||||||
|
ignore_errors: yes
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- "'Error: Unrecognized command' in result.stdout"
|
||||||
|
|
||||||
|
- debug: msg="END cli/invalid.yaml"
|
29
test/integration/roles/test_dellos10_command/tests/cli/output.yaml
Executable file
29
test/integration/roles/test_dellos10_command/tests/cli/output.yaml
Executable file
|
@ -0,0 +1,29 @@
|
||||||
|
---
|
||||||
|
- debug: msg="START cli/output.yaml"
|
||||||
|
|
||||||
|
- name: get output for single command
|
||||||
|
dellos10_command:
|
||||||
|
commands: ['show version']
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- "result.changed == false"
|
||||||
|
- "result.stdout is defined"
|
||||||
|
|
||||||
|
- name: get output for multiple commands
|
||||||
|
dellos10_command:
|
||||||
|
commands:
|
||||||
|
- show version
|
||||||
|
- show interface Eth 1/1/1
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- "result.changed == false"
|
||||||
|
- "result.stdout is defined"
|
||||||
|
- "result.stdout | length == 2"
|
||||||
|
|
||||||
|
- debug: msg="END cli/output.yaml"
|
19
test/integration/roles/test_dellos10_command/tests/cli/timeout.yaml
Executable file
19
test/integration/roles/test_dellos10_command/tests/cli/timeout.yaml
Executable file
|
@ -0,0 +1,19 @@
|
||||||
|
---
|
||||||
|
- debug: msg="START cli/timeout.yaml"
|
||||||
|
|
||||||
|
- name: test bad condition
|
||||||
|
dellos10_command:
|
||||||
|
commands:
|
||||||
|
- show version
|
||||||
|
wait_for:
|
||||||
|
- "result[0] contains bad_value_string"
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
register: result
|
||||||
|
ignore_errors: yes
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- "result.failed == true"
|
||||||
|
- "result.msg is defined"
|
||||||
|
|
||||||
|
- debug: msg="END cli/timeout.yaml"
|
2
test/integration/roles/test_dellos10_config/defaults/main.yaml
Executable file
2
test/integration/roles/test_dellos10_config/defaults/main.yaml
Executable file
|
@ -0,0 +1,2 @@
|
||||||
|
---
|
||||||
|
testcase: "*"
|
13
test/integration/roles/test_dellos10_config/tasks/cli.yaml
Executable file
13
test/integration/roles/test_dellos10_config/tasks/cli.yaml
Executable file
|
@ -0,0 +1,13 @@
|
||||||
|
---
|
||||||
|
- name: collect all cli test cases
|
||||||
|
find:
|
||||||
|
paths: "{{ role_path }}/tests/cli"
|
||||||
|
patterns: "{{ testcase }}.yaml"
|
||||||
|
register: test_cases
|
||||||
|
|
||||||
|
- name: set test_items
|
||||||
|
set_fact: test_items="{{ test_cases.files | map(attribute='path') | list }}"
|
||||||
|
|
||||||
|
- name: run test case
|
||||||
|
include: "{{ item }}"
|
||||||
|
with_items: "{{ test_items }}"
|
2
test/integration/roles/test_dellos10_config/tasks/main.yaml
Executable file
2
test/integration/roles/test_dellos10_config/tasks/main.yaml
Executable file
|
@ -0,0 +1,2 @@
|
||||||
|
---
|
||||||
|
- { include: cli.yaml, tags: ['cli'] }
|
4
test/integration/roles/test_dellos10_config/templates/basic/config.j2
Executable file
4
test/integration/roles/test_dellos10_config/templates/basic/config.j2
Executable file
|
@ -0,0 +1,4 @@
|
||||||
|
interface loopback999
|
||||||
|
shutdown
|
||||||
|
description basic
|
||||||
|
|
3
test/integration/roles/test_dellos10_config/templates/defaults/config.j2
Executable file
3
test/integration/roles/test_dellos10_config/templates/defaults/config.j2
Executable file
|
@ -0,0 +1,3 @@
|
||||||
|
interface loopback999
|
||||||
|
no shutdown
|
||||||
|
description default
|
58
test/integration/roles/test_dellos10_config/tests/cli/backup.yaml
Executable file
58
test/integration/roles/test_dellos10_config/tests/cli/backup.yaml
Executable file
|
@ -0,0 +1,58 @@
|
||||||
|
---
|
||||||
|
- debug: msg="START cli/backup.yaml"
|
||||||
|
|
||||||
|
- name: setup
|
||||||
|
dellos10_config:
|
||||||
|
commands:
|
||||||
|
- interface loopback 999
|
||||||
|
- no interface loopback 999
|
||||||
|
match: none
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
ignore_errors: yes
|
||||||
|
|
||||||
|
- name: collect any backup files
|
||||||
|
find:
|
||||||
|
paths: "{{ role_path }}/backup"
|
||||||
|
pattern: "{{ inventory_hostname }}_config*"
|
||||||
|
register: backup_files
|
||||||
|
delegate_to: localhost
|
||||||
|
|
||||||
|
- name: delete backup files
|
||||||
|
file:
|
||||||
|
path: "{{ backupitem.path }}"
|
||||||
|
state: absent
|
||||||
|
with_items: "{{ backup_files.files }}"
|
||||||
|
loop_control:
|
||||||
|
loop_var: backupitem
|
||||||
|
|
||||||
|
- name: configure device with config
|
||||||
|
dellos10_config:
|
||||||
|
src: basic/config.j2
|
||||||
|
backup: yes
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- "result.changed == true"
|
||||||
|
- "result.updates is defined"
|
||||||
|
|
||||||
|
- name: collect any backup files
|
||||||
|
find:
|
||||||
|
paths: "{{ role_path }}/backup"
|
||||||
|
pattern: "{{ inventory_hostname }}_config*"
|
||||||
|
register: backup_files
|
||||||
|
delegate_to: localhost
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- "backup_files.files is defined"
|
||||||
|
|
||||||
|
- name: teardown
|
||||||
|
dellos10_config:
|
||||||
|
commands:
|
||||||
|
- no interface loopback999
|
||||||
|
match: none
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
|
||||||
|
- debug: msg="END cli/backup.yaml"
|
42
test/integration/roles/test_dellos10_config/tests/cli/basic.yaml
Executable file
42
test/integration/roles/test_dellos10_config/tests/cli/basic.yaml
Executable file
|
@ -0,0 +1,42 @@
|
||||||
|
---
|
||||||
|
- debug: msg="START cli/basic.yaml"
|
||||||
|
|
||||||
|
- name: setup
|
||||||
|
dellos10_config:
|
||||||
|
commands:
|
||||||
|
- interface loopback 999
|
||||||
|
- no interface loopback 999
|
||||||
|
match: none
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
ignore_errors: yes
|
||||||
|
|
||||||
|
- name: configure device with config
|
||||||
|
dellos10_config:
|
||||||
|
src: basic/config.j2
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- "result.changed == true"
|
||||||
|
- "result.updates is defined"
|
||||||
|
|
||||||
|
- name: check device with config
|
||||||
|
dellos10_config:
|
||||||
|
src: basic/config.j2
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- "result.changed == false"
|
||||||
|
- "result.updates is defined"
|
||||||
|
|
||||||
|
- name: teardown
|
||||||
|
dellos10_config:
|
||||||
|
commands:
|
||||||
|
- no interface loopback999
|
||||||
|
match: none
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
|
||||||
|
- debug: msg="END cli/basic.yaml"
|
46
test/integration/roles/test_dellos10_config/tests/cli/defaults.yaml
Executable file
46
test/integration/roles/test_dellos10_config/tests/cli/defaults.yaml
Executable file
|
@ -0,0 +1,46 @@
|
||||||
|
---
|
||||||
|
- debug: msg="START cli/defaults.yaml"
|
||||||
|
|
||||||
|
- name: setup
|
||||||
|
dellos10_config:
|
||||||
|
commands:
|
||||||
|
- interface loopback 999
|
||||||
|
- no interface loopback 999
|
||||||
|
match: none
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
ignore_errors: yes
|
||||||
|
|
||||||
|
- name: configure device with defaults included
|
||||||
|
dellos10_config:
|
||||||
|
src: defaults/config.j2
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- debug: var=result
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- "result.changed == true"
|
||||||
|
- "result.updates is defined"
|
||||||
|
|
||||||
|
- name: check device with defaults included
|
||||||
|
dellos10_config:
|
||||||
|
src: defaults/config.j2
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- debug: var=result
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- "result.changed == false"
|
||||||
|
- "result.updates is defined"
|
||||||
|
|
||||||
|
- name: teardown
|
||||||
|
dellos10_config:
|
||||||
|
commands:
|
||||||
|
- no interface loopback999
|
||||||
|
match: none
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
|
||||||
|
- debug: msg="END cli/defaults.yaml"
|
44
test/integration/roles/test_dellos10_config/tests/cli/force.yaml
Executable file
44
test/integration/roles/test_dellos10_config/tests/cli/force.yaml
Executable file
|
@ -0,0 +1,44 @@
|
||||||
|
---
|
||||||
|
- debug: msg="START cli/force.yaml"
|
||||||
|
|
||||||
|
- name: setup
|
||||||
|
dellos10_config:
|
||||||
|
commands:
|
||||||
|
- interface loopback 999
|
||||||
|
- no interface loopback 999
|
||||||
|
match: none
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
ignore_errors: yes
|
||||||
|
|
||||||
|
- name: configure device with config
|
||||||
|
dellos10_config:
|
||||||
|
src: basic/config.j2
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
match: none
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- "result.changed == true"
|
||||||
|
- "result.updates is defined"
|
||||||
|
|
||||||
|
- name: check device with config
|
||||||
|
dellos10_config:
|
||||||
|
src: basic/config.j2
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
match: none
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- "result.changed == true"
|
||||||
|
- "result.updates is defined"
|
||||||
|
|
||||||
|
- name: teardown
|
||||||
|
dellos10_config:
|
||||||
|
commands:
|
||||||
|
- no interface loopback999
|
||||||
|
match: none
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
|
||||||
|
- debug: msg="END cli/force.yaml"
|
42
test/integration/roles/test_dellos10_config/tests/cli/sublevel.yaml
Executable file
42
test/integration/roles/test_dellos10_config/tests/cli/sublevel.yaml
Executable file
|
@ -0,0 +1,42 @@
|
||||||
|
---
|
||||||
|
- debug: msg="START cli/sublevel.yaml"
|
||||||
|
|
||||||
|
- name: setup test
|
||||||
|
dellos10_config:
|
||||||
|
lines:
|
||||||
|
- 'no ip access-list test'
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
match: none
|
||||||
|
|
||||||
|
- name: configure sub level command
|
||||||
|
dellos10_config:
|
||||||
|
lines: ['seq 5 permit ip any any count byte']
|
||||||
|
parents: ['ip access-list test']
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- "result.changed == true"
|
||||||
|
- "'ip access-list test' in result.updates"
|
||||||
|
- "'seq 5 permit ip any any count byte' in result.updates"
|
||||||
|
|
||||||
|
- name: configure sub level command idempotent check
|
||||||
|
dellos10_config:
|
||||||
|
lines: ['seq 5 permit ip any any count byte']
|
||||||
|
parents: ['ip access-list test']
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- "result.changed == false"
|
||||||
|
|
||||||
|
- name: teardown
|
||||||
|
dellos10_config:
|
||||||
|
lines:
|
||||||
|
- 'no ip access-list test'
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
match: none
|
||||||
|
|
||||||
|
- debug: msg="END cli/sublevel.yaml"
|
62
test/integration/roles/test_dellos10_config/tests/cli/sublevel_block.yaml
Executable file
62
test/integration/roles/test_dellos10_config/tests/cli/sublevel_block.yaml
Executable file
|
@ -0,0 +1,62 @@
|
||||||
|
---
|
||||||
|
- debug: msg="START cli/sublevel_block.yaml"
|
||||||
|
|
||||||
|
- name: setup
|
||||||
|
dellos10_config:
|
||||||
|
lines:
|
||||||
|
- seq 5 permit ip host 1.1.1.1 any count byte
|
||||||
|
- seq 10 permit ip host 2.2.2.2 any count byte
|
||||||
|
- seq 15 permit ip host 3.3.3.3 any count byte
|
||||||
|
parents: ['ip access-list test']
|
||||||
|
before: ['no ip access-list test']
|
||||||
|
after: ['exit']
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
match: none
|
||||||
|
|
||||||
|
- name: configure sub level command using block resplace
|
||||||
|
dellos10_config:
|
||||||
|
lines:
|
||||||
|
- seq 5 permit ip host 1.1.1.1 any count byte
|
||||||
|
- seq 10 permit ip host 2.2.2.2 any count byte
|
||||||
|
- seq 15 permit ip host 3.3.3.3 any count byte
|
||||||
|
- seq 20 permit ip host 4.4.4.4 any count byte
|
||||||
|
parents: ['ip access-list test']
|
||||||
|
replace: block
|
||||||
|
after: ['exit']
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- "result.changed == true"
|
||||||
|
- "'ip access-list test' in result.updates"
|
||||||
|
- "'seq 5 permit ip host 1.1.1.1 any count byte' in result.updates"
|
||||||
|
- "'seq 10 permit ip host 2.2.2.2 any count byte' in result.updates"
|
||||||
|
- "'seq 15 permit ip host 3.3.3.3 any count byte' in result.updates"
|
||||||
|
- "'seq 20 permit ip host 4.4.4.4 any count byte' in result.updates"
|
||||||
|
|
||||||
|
- name: check sub level command using block replace
|
||||||
|
dellos10_config:
|
||||||
|
lines:
|
||||||
|
- seq 5 permit ip host 1.1.1.1 any count byte
|
||||||
|
- seq 10 permit ip host 2.2.2.2 any count byte
|
||||||
|
- seq 15 permit ip host 3.3.3.3 any count byte
|
||||||
|
- seq 20 permit ip host 4.4.4.4 any count byte
|
||||||
|
parents: ['ip access-list test']
|
||||||
|
replace: block
|
||||||
|
after: ['exit']
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- "result.changed == false"
|
||||||
|
|
||||||
|
- name: teardown
|
||||||
|
dellos10_config:
|
||||||
|
lines:
|
||||||
|
- no ip access-list test
|
||||||
|
match: none
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
|
||||||
|
- debug: msg="END cli/sublevel_block.yaml"
|
66
test/integration/roles/test_dellos10_config/tests/cli/sublevel_exact.yaml
Executable file
66
test/integration/roles/test_dellos10_config/tests/cli/sublevel_exact.yaml
Executable file
|
@ -0,0 +1,66 @@
|
||||||
|
---
|
||||||
|
- debug: msg="START cli/sublevel_exact.yaml"
|
||||||
|
|
||||||
|
- name: setup
|
||||||
|
dellos10_config:
|
||||||
|
lines:
|
||||||
|
- seq 5 permit ip host 1.1.1.1 any count byte
|
||||||
|
- seq 10 permit ip host 2.2.2.2 any count byte
|
||||||
|
- seq 15 permit ip host 3.3.3.3 any count byte
|
||||||
|
- seq 20 permit ip host 4.4.4.4 any count byte
|
||||||
|
- seq 25 permit ip host 5.5.5.5 any count byte
|
||||||
|
parents: ['ip access-list test']
|
||||||
|
before: ['no ip access-list test']
|
||||||
|
after: ['exit']
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
match: none
|
||||||
|
|
||||||
|
- name: configure sub level command using exact match
|
||||||
|
dellos10_config:
|
||||||
|
lines:
|
||||||
|
- seq 5 permit ip host 1.1.1.1 any count byte
|
||||||
|
- seq 10 permit ip host 2.2.2.2 any count byte
|
||||||
|
- seq 15 permit ip host 3.3.3.3 any count byte
|
||||||
|
- seq 20 permit ip host 4.4.4.4 any count byte
|
||||||
|
parents: ['ip access-list test']
|
||||||
|
after: ['exit']
|
||||||
|
match: exact
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- "result.changed == true"
|
||||||
|
- "'ip access-list test' in result.updates"
|
||||||
|
- "'seq 5 permit ip host 1.1.1.1 any count byte' in result.updates"
|
||||||
|
- "'seq 10 permit ip host 2.2.2.2 any count byte' in result.updates"
|
||||||
|
- "'seq 15 permit ip host 3.3.3.3 any count byte' in result.updates"
|
||||||
|
- "'seq 20 permit ip host 4.4.4.4 any count byte' in result.updates"
|
||||||
|
- "'seq 25 permit ip host 5.5.5.5 any count byte' not in result.updates"
|
||||||
|
|
||||||
|
- name: check sub level command using exact match
|
||||||
|
dellos10_config:
|
||||||
|
lines:
|
||||||
|
- seq 5 permit ip host 1.1.1.1 any count byte
|
||||||
|
- seq 10 permit ip host 2.2.2.2 any count byte
|
||||||
|
- seq 15 permit ip host 3.3.3.3 any count byte
|
||||||
|
- seq 20 permit ip host 4.4.4.4 any count byte
|
||||||
|
- seq 25 permit ip host 5.5.5.5 any count byte
|
||||||
|
parents: ['ip access-list test']
|
||||||
|
after: ['exit']
|
||||||
|
match: exact
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- "result.changed == false"
|
||||||
|
|
||||||
|
- name: teardown
|
||||||
|
dellos10_config:
|
||||||
|
lines:
|
||||||
|
- no ip access-list test
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
match: none
|
||||||
|
|
||||||
|
- debug: msg="END cli/sublevel_exact.yaml"
|
63
test/integration/roles/test_dellos10_config/tests/cli/sublevel_strict.yaml
Executable file
63
test/integration/roles/test_dellos10_config/tests/cli/sublevel_strict.yaml
Executable file
|
@ -0,0 +1,63 @@
|
||||||
|
---
|
||||||
|
- debug: msg="START cli/sublevel_strict.yaml"
|
||||||
|
|
||||||
|
- name: setup
|
||||||
|
dellos10_config:
|
||||||
|
lines:
|
||||||
|
- seq 5 permit ip host 1.1.1.1 any count byte
|
||||||
|
- seq 10 permit ip host 2.2.2.2 any count byte
|
||||||
|
- seq 15 permit ip host 3.3.3.3 any count byte
|
||||||
|
- seq 20 permit ip host 4.4.4.4 any count byte
|
||||||
|
- seq 25 permit ip host 5.5.5.5 any count byte
|
||||||
|
parents: ['ip access-list test']
|
||||||
|
before: ['no ip access-list test']
|
||||||
|
after: ['exit']
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
match: none
|
||||||
|
|
||||||
|
- name: configure sub level command using strict match
|
||||||
|
dellos10_config:
|
||||||
|
lines:
|
||||||
|
- seq 5 permit ip host 1.1.1.1 any count byte
|
||||||
|
- seq 10 permit ip host 2.2.2.2 any count byte
|
||||||
|
- seq 15 permit ip host 3.3.3.3 any count byte
|
||||||
|
- seq 20 permit ip host 4.4.4.4 any count byte
|
||||||
|
parents: ['ip access-list test']
|
||||||
|
match: strict
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- "result.changed == false"
|
||||||
|
|
||||||
|
- name: check sub level command using strict match
|
||||||
|
dellos10_config:
|
||||||
|
lines:
|
||||||
|
- seq 5 permit ip host 1.1.1.1 any count byte
|
||||||
|
- seq 15 permit ip host 3.3.3.3 any count byte
|
||||||
|
- seq 10 permit ip host 2.2.2.2 any count byte
|
||||||
|
parents: ['ip access-list test']
|
||||||
|
after: ['exit']
|
||||||
|
match: strict
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- "result.changed == true"
|
||||||
|
- "'ip access-list test' in result.updates"
|
||||||
|
- "'seq 5 permit ip host 1.1.1.1 any count byte' not in result.updates"
|
||||||
|
- "'seq 10 permit ip host 2.2.2.2 any count byte' in result.updates"
|
||||||
|
- "'seq 15 permit ip host 3.3.3.3 any count byte' in result.updates"
|
||||||
|
- "'seq 20 permit ip host 4.4.4.4 any count byte' not in result.updates"
|
||||||
|
- "'seq 25 permit ip host 5.5.5.5 any count byte' not in result.updates"
|
||||||
|
|
||||||
|
- name: teardown
|
||||||
|
dellos10_config:
|
||||||
|
lines:
|
||||||
|
- no ip access-list test
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
match: none
|
||||||
|
|
||||||
|
- debug: msg="END cli/sublevel_strict.yaml"
|
37
test/integration/roles/test_dellos10_config/tests/cli/toplevel.yaml
Executable file
37
test/integration/roles/test_dellos10_config/tests/cli/toplevel.yaml
Executable file
|
@ -0,0 +1,37 @@
|
||||||
|
---
|
||||||
|
- debug: msg="START cli/toplevel.yaml"
|
||||||
|
|
||||||
|
- name: setup
|
||||||
|
dellos10_config:
|
||||||
|
lines: ['hostname {{ inventory_hostname }}']
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
match: none
|
||||||
|
|
||||||
|
- name: configure top level command
|
||||||
|
dellos10_config:
|
||||||
|
lines: ['hostname foo']
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- "result.changed == true"
|
||||||
|
- "'hostname foo' in result.updates"
|
||||||
|
|
||||||
|
- name: configure top level command idempotent check
|
||||||
|
dellos10_config:
|
||||||
|
lines: ['hostname foo']
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- "result.changed == false"
|
||||||
|
|
||||||
|
- name: teardown
|
||||||
|
dellos10_config:
|
||||||
|
lines: ['hostname {{ inventory_hostname }}']
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
match: none
|
||||||
|
|
||||||
|
- debug: msg="END cli/toplevel.yaml"
|
44
test/integration/roles/test_dellos10_config/tests/cli/toplevel_after.yaml
Executable file
44
test/integration/roles/test_dellos10_config/tests/cli/toplevel_after.yaml
Executable file
|
@ -0,0 +1,44 @@
|
||||||
|
---
|
||||||
|
- debug: msg="START cli/toplevel_after.yaml"
|
||||||
|
|
||||||
|
- name: setup
|
||||||
|
dellos10_config:
|
||||||
|
lines:
|
||||||
|
- "snmp-server contact ansible"
|
||||||
|
- "hostname {{ inventory_hostname }}"
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
match: none
|
||||||
|
|
||||||
|
- name: configure top level command with before
|
||||||
|
dellos10_config:
|
||||||
|
lines: ['hostname foo']
|
||||||
|
after: ['snmp-server contact bar']
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- "result.changed == true"
|
||||||
|
- "'hostname foo' in result.updates"
|
||||||
|
- "'snmp-server contact bar' in result.updates"
|
||||||
|
|
||||||
|
- name: configure top level command with before idempotent check
|
||||||
|
dellos10_config:
|
||||||
|
lines: ['hostname foo']
|
||||||
|
after: ['snmp-server contact foo']
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- "result.changed == false"
|
||||||
|
|
||||||
|
- name: teardown
|
||||||
|
dellos10_config:
|
||||||
|
lines:
|
||||||
|
- "no snmp-server contact"
|
||||||
|
- "hostname {{ inventory_hostname }}"
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
match: none
|
||||||
|
|
||||||
|
- debug: msg="END cli/toplevel_after.yaml"
|
44
test/integration/roles/test_dellos10_config/tests/cli/toplevel_before.yaml
Executable file
44
test/integration/roles/test_dellos10_config/tests/cli/toplevel_before.yaml
Executable file
|
@ -0,0 +1,44 @@
|
||||||
|
---
|
||||||
|
- debug: msg="START cli/toplevel_before.yaml"
|
||||||
|
|
||||||
|
- name: setup
|
||||||
|
dellos10_config:
|
||||||
|
lines:
|
||||||
|
- "snmp-server contact ansible"
|
||||||
|
- "hostname {{ inventory_hostname }}"
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
match: none
|
||||||
|
|
||||||
|
- name: configure top level command with before
|
||||||
|
dellos10_config:
|
||||||
|
lines: ['hostname foo']
|
||||||
|
before: ['snmp-server contact bar']
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- "result.changed == true"
|
||||||
|
- "'hostname foo' in result.updates"
|
||||||
|
- "'snmp-server contact bar' in result.updates"
|
||||||
|
|
||||||
|
- name: configure top level command with before idempotent check
|
||||||
|
dellos10_config:
|
||||||
|
lines: ['hostname foo']
|
||||||
|
before: ['snmp-server contact foo']
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- "result.changed == false"
|
||||||
|
|
||||||
|
- name: teardown
|
||||||
|
dellos10_config:
|
||||||
|
lines:
|
||||||
|
- "no snmp-server contact"
|
||||||
|
- "hostname {{ inventory_hostname }}"
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
match: none
|
||||||
|
|
||||||
|
- debug: msg="END cli/toplevel_before.yaml"
|
|
@ -0,0 +1,39 @@
|
||||||
|
---
|
||||||
|
- debug: msg="START cli/toplevel_nonidempotent.yaml"
|
||||||
|
|
||||||
|
- name: setup
|
||||||
|
dellos10_config:
|
||||||
|
lines: ['hostname {{ inventory_hostname }}']
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
match: none
|
||||||
|
|
||||||
|
- name: configure top level command
|
||||||
|
dellos10_config:
|
||||||
|
lines: ['hostname foo']
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
match: strict
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- "result.changed == true"
|
||||||
|
- "'hostname foo' in result.updates"
|
||||||
|
|
||||||
|
- name: configure top level command idempotent check
|
||||||
|
dellos10_config:
|
||||||
|
lines: ['hostname foo']
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
match: strict
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- "result.changed == false"
|
||||||
|
|
||||||
|
- name: teardown
|
||||||
|
dellos10_config:
|
||||||
|
lines: ['hostname {{ inventory_hostname }}']
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
match: none
|
||||||
|
|
||||||
|
- debug: msg="END cli/toplevel_nonidempotent.yaml"
|
2
test/integration/roles/test_dellos10_facts/defaults/main.yaml
Executable file
2
test/integration/roles/test_dellos10_facts/defaults/main.yaml
Executable file
|
@ -0,0 +1,2 @@
|
||||||
|
---
|
||||||
|
testcase: "*"
|
14
test/integration/roles/test_dellos10_facts/tasks/cli.yaml
Executable file
14
test/integration/roles/test_dellos10_facts/tasks/cli.yaml
Executable file
|
@ -0,0 +1,14 @@
|
||||||
|
---
|
||||||
|
- name: collect all cli test cases
|
||||||
|
find:
|
||||||
|
paths: "{{ role_path }}/tests/cli"
|
||||||
|
patterns: "{{ testcase }}.yaml"
|
||||||
|
register: test_cases
|
||||||
|
|
||||||
|
- name: set test_items
|
||||||
|
set_fact:
|
||||||
|
test_items: "{{ test_cases.files | map(attribute='path') | list }}"
|
||||||
|
|
||||||
|
- name: run test case
|
||||||
|
include: "{{ item }}"
|
||||||
|
with_items: "{{ test_items }}"
|
2
test/integration/roles/test_dellos10_facts/tasks/main.yaml
Executable file
2
test/integration/roles/test_dellos10_facts/tasks/main.yaml
Executable file
|
@ -0,0 +1,2 @@
|
||||||
|
---
|
||||||
|
- { include: cli.yaml, tags: ['cli'] }
|
48
test/integration/roles/test_dellos10_facts/tests/cli/facts.yaml
Executable file
48
test/integration/roles/test_dellos10_facts/tests/cli/facts.yaml
Executable file
|
@ -0,0 +1,48 @@
|
||||||
|
---
|
||||||
|
- debug: msg="START cli/facts.yaml"
|
||||||
|
|
||||||
|
- name: test all facts
|
||||||
|
dellos10_facts:
|
||||||
|
gather_subset:
|
||||||
|
- all
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- "result.changed == false"
|
||||||
|
- "result.ansible_facts is defined"
|
||||||
|
- "result.ansible_facts.ansible_net_interfaces is defined"
|
||||||
|
- "result.ansible_facts.ansible_net_memfree_mb is defined"
|
||||||
|
- "result.ansible_facts.ansible_net_model is defined"
|
||||||
|
- "result.ansible_facts.ansible_net_servicetag is defined"
|
||||||
|
- "result.ansible_facts.ansible_net_version is defined"
|
||||||
|
|
||||||
|
- name: test all facts except hardware
|
||||||
|
dellos10_facts:
|
||||||
|
gather_subset:
|
||||||
|
- "!hardware"
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- "result.changed == false"
|
||||||
|
- "result.ansible_facts.ansible_net_interfaces is defined"
|
||||||
|
- "result.ansible_facts.ansible_net_memfree_mb is not defined"
|
||||||
|
|
||||||
|
- name: test interface facts
|
||||||
|
dellos10_facts:
|
||||||
|
gather_subset:
|
||||||
|
- interfaces
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- "result.changed == false"
|
||||||
|
- "result.ansible_facts.ansible_net_interfaces is defined"
|
||||||
|
- "result.ansible_facts.ansible_net_memfree_mb is not defined"
|
||||||
|
|
||||||
|
|
||||||
|
- debug: msg="END cli/facts.yaml"
|
0
test/units/modules/network/dellos10/__init__.py
Normal file
0
test/units/modules/network/dellos10/__init__.py
Normal file
90
test/units/modules/network/dellos10/dellos10_module.py
Normal file
90
test/units/modules/network/dellos10/dellos10_module.py
Normal file
|
@ -0,0 +1,90 @@
|
||||||
|
# (c) 2016 Red Hat Inc.
|
||||||
|
#
|
||||||
|
# (c) 2017 Dell EMC.
|
||||||
|
#
|
||||||
|
# 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
|
||||||
|
|
||||||
|
import os
|
||||||
|
import json
|
||||||
|
|
||||||
|
from units.modules.utils import AnsibleExitJson, AnsibleFailJson, ModuleTestCase
|
||||||
|
|
||||||
|
|
||||||
|
fixture_path = os.path.join(os.path.dirname(__file__), 'fixtures')
|
||||||
|
fixture_data = {}
|
||||||
|
|
||||||
|
|
||||||
|
def load_fixture(name):
|
||||||
|
path = os.path.join(fixture_path, name)
|
||||||
|
|
||||||
|
if path in fixture_data:
|
||||||
|
return fixture_data[path]
|
||||||
|
|
||||||
|
with open(path) as f:
|
||||||
|
data = f.read()
|
||||||
|
|
||||||
|
try:
|
||||||
|
data = json.loads(data)
|
||||||
|
except:
|
||||||
|
pass
|
||||||
|
|
||||||
|
fixture_data[path] = data
|
||||||
|
return data
|
||||||
|
|
||||||
|
|
||||||
|
class TestDellos10Module(ModuleTestCase):
|
||||||
|
|
||||||
|
def execute_module(self, failed=False, changed=False, commands=None, sort=True, defaults=False):
|
||||||
|
|
||||||
|
self.load_fixtures(commands)
|
||||||
|
|
||||||
|
if failed:
|
||||||
|
result = self.failed()
|
||||||
|
self.assertTrue(result['failed'], result)
|
||||||
|
else:
|
||||||
|
result = self.changed(changed)
|
||||||
|
self.assertEqual(result['changed'], changed, result)
|
||||||
|
|
||||||
|
if commands is not None:
|
||||||
|
if sort:
|
||||||
|
self.assertEqual(sorted(commands), sorted(result['updates']), result['updates'])
|
||||||
|
else:
|
||||||
|
self.assertEqual(commands, result['updates'], result['updates'])
|
||||||
|
|
||||||
|
return result
|
||||||
|
|
||||||
|
def failed(self):
|
||||||
|
with self.assertRaises(AnsibleFailJson) as exc:
|
||||||
|
self.module.main()
|
||||||
|
|
||||||
|
result = exc.exception.args[0]
|
||||||
|
self.assertTrue(result['failed'], result)
|
||||||
|
return result
|
||||||
|
|
||||||
|
def changed(self, changed=False):
|
||||||
|
with self.assertRaises(AnsibleExitJson) as exc:
|
||||||
|
self.module.main()
|
||||||
|
|
||||||
|
result = exc.exception.args[0]
|
||||||
|
self.assertEqual(result['changed'], changed, result)
|
||||||
|
return result
|
||||||
|
|
||||||
|
def load_fixtures(self, commands=None):
|
||||||
|
pass
|
|
@ -0,0 +1,13 @@
|
||||||
|
!
|
||||||
|
hostname router
|
||||||
|
!
|
||||||
|
interface ethernet1/1/2
|
||||||
|
ip address 1.2.3.4/24
|
||||||
|
description test string
|
||||||
|
!
|
||||||
|
interface ethernet1/1/3
|
||||||
|
ip address 6.7.8.9/24
|
||||||
|
description test string
|
||||||
|
shutdown
|
||||||
|
!
|
||||||
|
|
|
@ -0,0 +1,12 @@
|
||||||
|
!
|
||||||
|
hostname foo
|
||||||
|
!
|
||||||
|
interface ethernet1/1/2
|
||||||
|
no ip address
|
||||||
|
!
|
||||||
|
interface ethernet1/1/3
|
||||||
|
ip address 6.7.8.9/24
|
||||||
|
description test string
|
||||||
|
shutdown
|
||||||
|
!
|
||||||
|
|
19467
test/units/modules/network/dellos10/fixtures/show_interface__display-xml
Normal file
19467
test/units/modules/network/dellos10/fixtures/show_interface__display-xml
Normal file
File diff suppressed because it is too large
Load diff
|
@ -0,0 +1,855 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<rpc-reply>
|
||||||
|
<bulk>
|
||||||
|
<data>
|
||||||
|
<interface>
|
||||||
|
<name>ethernet1/1/1</name>
|
||||||
|
<type>ianaift:ethernetCsmacd</type>
|
||||||
|
<admin-status>up</admin-status>
|
||||||
|
<oper-status>up</oper-status>
|
||||||
|
<if-index>17305068</if-index>
|
||||||
|
<phys-address>14:18:77:09:ae:01</phys-address>
|
||||||
|
<speed>40000000000</speed>
|
||||||
|
<auto-negotiation>true</auto-negotiation>
|
||||||
|
<supported-speed>40GIGE</supported-speed>
|
||||||
|
<supported-autoneg>BOTH_SUPPORTED</supported-autoneg>
|
||||||
|
<fec>not-supported</fec>
|
||||||
|
<npu-speed>0MBPS</npu-speed>
|
||||||
|
<current-phys-address>14:18:77:09:ae:01</current-phys-address>
|
||||||
|
<last-change-time>44</last-change-time>
|
||||||
|
<last-counter-clear>17570800</last-counter-clear>
|
||||||
|
<load-interval>30</load-interval>
|
||||||
|
<mtu>1532</mtu>
|
||||||
|
<eee-state>n/a</eee-state>
|
||||||
|
<lldp-rem-neighbor-info>
|
||||||
|
<info>
|
||||||
|
<rem-lldp-time-mark>330300</rem-lldp-time-mark>
|
||||||
|
<rem-lldp-index>4</rem-lldp-index>
|
||||||
|
<dest-mac-addr-index>1</dest-mac-addr-index>
|
||||||
|
<rem-if-index>17305068</rem-if-index>
|
||||||
|
<rem-local-port-num>260</rem-local-port-num>
|
||||||
|
<rem-lldp-chassis-id>FBh3Ca4A
|
||||||
|
</rem-lldp-chassis-id>
|
||||||
|
<rem-lldp-port-id>ZXRoZXJuZXQxLzEvMw==
|
||||||
|
</rem-lldp-port-id>
|
||||||
|
<rem-lldp-chassis-id-subtype>mac-address</rem-lldp-chassis-id-subtype>
|
||||||
|
<rem-lldp-port-subtype>interface-alias</rem-lldp-port-subtype>
|
||||||
|
<rem-ttl>120</rem-ttl>
|
||||||
|
<rem-last-update-time>172395</rem-last-update-time>
|
||||||
|
<rem-info-valid-time>107</rem-info-valid-time>
|
||||||
|
<rem-system-desc>OS10</rem-system-desc>
|
||||||
|
<rem-port-desc>ethernet1/1/3</rem-port-desc>
|
||||||
|
<rem-system-name>os10</rem-system-name>
|
||||||
|
<rem-port-vlan-id>1</rem-port-vlan-id>
|
||||||
|
<rem-max-frame-size>1532</rem-max-frame-size>
|
||||||
|
<rem-agg-link-status>false</rem-agg-link-status>
|
||||||
|
<rem-sys-cap-supported>router bridge repeater</rem-sys-cap-supported>
|
||||||
|
<rem-sys-cap-enabled>router bridge repeater</rem-sys-cap-enabled>
|
||||||
|
<rem-remote-changes>true</rem-remote-changes>
|
||||||
|
<rem-too-many-neighbors>false</rem-too-many-neighbors>
|
||||||
|
<rem-dot3-auto-neg-supported>true</rem-dot3-auto-neg-supported>
|
||||||
|
<rem-dot3-auto-neg-enabled>true</rem-dot3-auto-neg-enabled>
|
||||||
|
<rem-dot3-auto-neg-adv-cap>b-1000base-t</rem-dot3-auto-neg-adv-cap>
|
||||||
|
</info>
|
||||||
|
</lldp-rem-neighbor-info>
|
||||||
|
</interface>
|
||||||
|
<interface>
|
||||||
|
<name>ethernet1/1/2</name>
|
||||||
|
<type>ianaift:ethernetCsmacd</type>
|
||||||
|
<admin-status>up</admin-status>
|
||||||
|
<oper-status>up</oper-status>
|
||||||
|
<if-index>17305094</if-index>
|
||||||
|
<phys-address>14:18:77:09:ae:05</phys-address>
|
||||||
|
<speed>40000000000</speed>
|
||||||
|
<auto-negotiation>true</auto-negotiation>
|
||||||
|
<supported-speed>40GIGE</supported-speed>
|
||||||
|
<supported-autoneg>BOTH_SUPPORTED</supported-autoneg>
|
||||||
|
<fec>not-supported</fec>
|
||||||
|
<npu-speed>0MBPS</npu-speed>
|
||||||
|
<current-phys-address>14:18:77:09:ae:05</current-phys-address>
|
||||||
|
<last-change-time>44</last-change-time>
|
||||||
|
<last-counter-clear>17570700</last-counter-clear>
|
||||||
|
<load-interval>30</load-interval>
|
||||||
|
<mtu>1532</mtu>
|
||||||
|
<eee-state>n/a</eee-state>
|
||||||
|
<lldp-rem-neighbor-info>
|
||||||
|
<info>
|
||||||
|
<rem-lldp-time-mark>330300</rem-lldp-time-mark>
|
||||||
|
<rem-lldp-index>5</rem-lldp-index>
|
||||||
|
<dest-mac-addr-index>1</dest-mac-addr-index>
|
||||||
|
<rem-if-index>17305094</rem-if-index>
|
||||||
|
<rem-local-port-num>264</rem-local-port-num>
|
||||||
|
<rem-lldp-chassis-id>FBh3Ca4A
|
||||||
|
</rem-lldp-chassis-id>
|
||||||
|
<rem-lldp-port-id>ZXRoZXJuZXQxLzEvNA==
|
||||||
|
</rem-lldp-port-id>
|
||||||
|
<rem-lldp-chassis-id-subtype>mac-address</rem-lldp-chassis-id-subtype>
|
||||||
|
<rem-lldp-port-subtype>interface-alias</rem-lldp-port-subtype>
|
||||||
|
<rem-ttl>120</rem-ttl>
|
||||||
|
<rem-last-update-time>172395</rem-last-update-time>
|
||||||
|
<rem-info-valid-time>107</rem-info-valid-time>
|
||||||
|
<rem-system-desc>OS10</rem-system-desc>
|
||||||
|
<rem-port-desc>ethernet1/1/4</rem-port-desc>
|
||||||
|
<rem-system-name>os10</rem-system-name>
|
||||||
|
<rem-port-vlan-id>1</rem-port-vlan-id>
|
||||||
|
<rem-max-frame-size>1532</rem-max-frame-size>
|
||||||
|
<rem-agg-link-status>false</rem-agg-link-status>
|
||||||
|
<rem-sys-cap-supported>router bridge repeater</rem-sys-cap-supported>
|
||||||
|
<rem-sys-cap-enabled>router bridge repeater</rem-sys-cap-enabled>
|
||||||
|
<rem-remote-changes>true</rem-remote-changes>
|
||||||
|
<rem-too-many-neighbors>false</rem-too-many-neighbors>
|
||||||
|
<rem-dot3-auto-neg-supported>true</rem-dot3-auto-neg-supported>
|
||||||
|
<rem-dot3-auto-neg-enabled>true</rem-dot3-auto-neg-enabled>
|
||||||
|
<rem-dot3-auto-neg-adv-cap>b-1000base-t</rem-dot3-auto-neg-adv-cap>
|
||||||
|
</info>
|
||||||
|
</lldp-rem-neighbor-info>
|
||||||
|
</interface>
|
||||||
|
<interface>
|
||||||
|
<name>ethernet1/1/3</name>
|
||||||
|
<type>ianaift:ethernetCsmacd</type>
|
||||||
|
<admin-status>up</admin-status>
|
||||||
|
<oper-status>up</oper-status>
|
||||||
|
<if-index>17305120</if-index>
|
||||||
|
<phys-address>14:18:77:09:ae:09</phys-address>
|
||||||
|
<speed>40000000000</speed>
|
||||||
|
<auto-negotiation>true</auto-negotiation>
|
||||||
|
<supported-speed>40GIGE</supported-speed>
|
||||||
|
<supported-autoneg>BOTH_SUPPORTED</supported-autoneg>
|
||||||
|
<fec>not-supported</fec>
|
||||||
|
<npu-speed>0MBPS</npu-speed>
|
||||||
|
<current-phys-address>14:18:77:09:ae:09</current-phys-address>
|
||||||
|
<last-change-time>44</last-change-time>
|
||||||
|
<last-counter-clear>17570700</last-counter-clear>
|
||||||
|
<load-interval>30</load-interval>
|
||||||
|
<mtu>1532</mtu>
|
||||||
|
<eee-state>n/a</eee-state>
|
||||||
|
<lldp-rem-neighbor-info>
|
||||||
|
<info>
|
||||||
|
<rem-lldp-time-mark>330300</rem-lldp-time-mark>
|
||||||
|
<rem-lldp-index>2</rem-lldp-index>
|
||||||
|
<dest-mac-addr-index>1</dest-mac-addr-index>
|
||||||
|
<rem-if-index>17305120</rem-if-index>
|
||||||
|
<rem-local-port-num>268</rem-local-port-num>
|
||||||
|
<rem-lldp-chassis-id>FBh3Ca4A
|
||||||
|
</rem-lldp-chassis-id>
|
||||||
|
<rem-lldp-port-id>ZXRoZXJuZXQxLzEvMQ==
|
||||||
|
</rem-lldp-port-id>
|
||||||
|
<rem-lldp-chassis-id-subtype>mac-address</rem-lldp-chassis-id-subtype>
|
||||||
|
<rem-lldp-port-subtype>interface-alias</rem-lldp-port-subtype>
|
||||||
|
<rem-ttl>120</rem-ttl>
|
||||||
|
<rem-last-update-time>172395</rem-last-update-time>
|
||||||
|
<rem-info-valid-time>107</rem-info-valid-time>
|
||||||
|
<rem-system-desc>OS10</rem-system-desc>
|
||||||
|
<rem-port-desc>ethernet1/1/1</rem-port-desc>
|
||||||
|
<rem-system-name>os10</rem-system-name>
|
||||||
|
<rem-port-vlan-id>1</rem-port-vlan-id>
|
||||||
|
<rem-max-frame-size>1532</rem-max-frame-size>
|
||||||
|
<rem-agg-link-status>false</rem-agg-link-status>
|
||||||
|
<rem-sys-cap-supported>router bridge repeater</rem-sys-cap-supported>
|
||||||
|
<rem-sys-cap-enabled>router bridge repeater</rem-sys-cap-enabled>
|
||||||
|
<rem-remote-changes>true</rem-remote-changes>
|
||||||
|
<rem-too-many-neighbors>false</rem-too-many-neighbors>
|
||||||
|
<rem-dot3-auto-neg-supported>true</rem-dot3-auto-neg-supported>
|
||||||
|
<rem-dot3-auto-neg-enabled>true</rem-dot3-auto-neg-enabled>
|
||||||
|
<rem-dot3-auto-neg-adv-cap>b-1000base-t</rem-dot3-auto-neg-adv-cap>
|
||||||
|
</info>
|
||||||
|
</lldp-rem-neighbor-info>
|
||||||
|
</interface>
|
||||||
|
<interface>
|
||||||
|
<name>ethernet1/1/4</name>
|
||||||
|
<type>ianaift:ethernetCsmacd</type>
|
||||||
|
<admin-status>up</admin-status>
|
||||||
|
<oper-status>up</oper-status>
|
||||||
|
<if-index>17305146</if-index>
|
||||||
|
<phys-address>14:18:77:09:ae:0d</phys-address>
|
||||||
|
<speed>40000000000</speed>
|
||||||
|
<auto-negotiation>true</auto-negotiation>
|
||||||
|
<supported-speed>40GIGE</supported-speed>
|
||||||
|
<supported-autoneg>BOTH_SUPPORTED</supported-autoneg>
|
||||||
|
<fec>not-supported</fec>
|
||||||
|
<npu-speed>0MBPS</npu-speed>
|
||||||
|
<current-phys-address>14:18:77:09:ae:0d</current-phys-address>
|
||||||
|
<last-change-time>44</last-change-time>
|
||||||
|
<last-counter-clear>17570700</last-counter-clear>
|
||||||
|
<load-interval>30</load-interval>
|
||||||
|
<mtu>1532</mtu>
|
||||||
|
<eee-state>n/a</eee-state>
|
||||||
|
<lldp-rem-neighbor-info>
|
||||||
|
<info>
|
||||||
|
<rem-lldp-time-mark>330300</rem-lldp-time-mark>
|
||||||
|
<rem-lldp-index>3</rem-lldp-index>
|
||||||
|
<dest-mac-addr-index>1</dest-mac-addr-index>
|
||||||
|
<rem-if-index>17305146</rem-if-index>
|
||||||
|
<rem-local-port-num>272</rem-local-port-num>
|
||||||
|
<rem-lldp-chassis-id>FBh3Ca4A
|
||||||
|
</rem-lldp-chassis-id>
|
||||||
|
<rem-lldp-port-id>ZXRoZXJuZXQxLzEvMg==
|
||||||
|
</rem-lldp-port-id>
|
||||||
|
<rem-lldp-chassis-id-subtype>mac-address</rem-lldp-chassis-id-subtype>
|
||||||
|
<rem-lldp-port-subtype>interface-alias</rem-lldp-port-subtype>
|
||||||
|
<rem-ttl>120</rem-ttl>
|
||||||
|
<rem-last-update-time>172395</rem-last-update-time>
|
||||||
|
<rem-info-valid-time>107</rem-info-valid-time>
|
||||||
|
<rem-system-desc>OS10</rem-system-desc>
|
||||||
|
<rem-port-desc>ethernet1/1/2</rem-port-desc>
|
||||||
|
<rem-system-name>os10</rem-system-name>
|
||||||
|
<rem-port-vlan-id>1</rem-port-vlan-id>
|
||||||
|
<rem-max-frame-size>1532</rem-max-frame-size>
|
||||||
|
<rem-agg-link-status>false</rem-agg-link-status>
|
||||||
|
<rem-sys-cap-supported>router bridge repeater</rem-sys-cap-supported>
|
||||||
|
<rem-sys-cap-enabled>router bridge repeater</rem-sys-cap-enabled>
|
||||||
|
<rem-remote-changes>true</rem-remote-changes>
|
||||||
|
<rem-too-many-neighbors>false</rem-too-many-neighbors>
|
||||||
|
<rem-dot3-auto-neg-supported>true</rem-dot3-auto-neg-supported>
|
||||||
|
<rem-dot3-auto-neg-enabled>true</rem-dot3-auto-neg-enabled>
|
||||||
|
<rem-dot3-auto-neg-adv-cap>b-1000base-t</rem-dot3-auto-neg-adv-cap>
|
||||||
|
</info>
|
||||||
|
</lldp-rem-neighbor-info>
|
||||||
|
</interface>
|
||||||
|
<interface>
|
||||||
|
<name>ethernet1/1/5</name>
|
||||||
|
<type>ianaift:ethernetCsmacd</type>
|
||||||
|
<admin-status>up</admin-status>
|
||||||
|
<oper-status>down</oper-status>
|
||||||
|
<if-index>17305172</if-index>
|
||||||
|
<phys-address>14:18:77:09:ae:11</phys-address>
|
||||||
|
<speed>0</speed>
|
||||||
|
<auto-negotiation>false</auto-negotiation>
|
||||||
|
<supported-speed>40GIGE</supported-speed>
|
||||||
|
<supported-autoneg>BOTH_SUPPORTED</supported-autoneg>
|
||||||
|
<fec>not-supported</fec>
|
||||||
|
<npu-speed>0MBPS</npu-speed>
|
||||||
|
<current-phys-address>14:18:77:09:ae:11</current-phys-address>
|
||||||
|
<last-change-time>36</last-change-time>
|
||||||
|
<last-counter-clear>17570700</last-counter-clear>
|
||||||
|
<load-interval>30</load-interval>
|
||||||
|
<mtu>1532</mtu>
|
||||||
|
<eee-state>n/a</eee-state>
|
||||||
|
<lldp-rem-neighbor-info/>
|
||||||
|
</interface>
|
||||||
|
<interface>
|
||||||
|
<name>ethernet1/1/6</name>
|
||||||
|
<type>ianaift:ethernetCsmacd</type>
|
||||||
|
<admin-status>up</admin-status>
|
||||||
|
<oper-status>down</oper-status>
|
||||||
|
<if-index>17305198</if-index>
|
||||||
|
<phys-address>14:18:77:09:ae:15</phys-address>
|
||||||
|
<speed>0</speed>
|
||||||
|
<auto-negotiation>false</auto-negotiation>
|
||||||
|
<supported-speed>40GIGE</supported-speed>
|
||||||
|
<supported-autoneg>BOTH_SUPPORTED</supported-autoneg>
|
||||||
|
<fec>not-supported</fec>
|
||||||
|
<npu-speed>0MBPS</npu-speed>
|
||||||
|
<current-phys-address>14:18:77:09:ae:15</current-phys-address>
|
||||||
|
<last-change-time>36</last-change-time>
|
||||||
|
<last-counter-clear>17570700</last-counter-clear>
|
||||||
|
<load-interval>30</load-interval>
|
||||||
|
<mtu>1532</mtu>
|
||||||
|
<eee-state>n/a</eee-state>
|
||||||
|
<lldp-rem-neighbor-info/>
|
||||||
|
</interface>
|
||||||
|
<interface>
|
||||||
|
<name>ethernet1/1/7</name>
|
||||||
|
<type>ianaift:ethernetCsmacd</type>
|
||||||
|
<admin-status>up</admin-status>
|
||||||
|
<oper-status>down</oper-status>
|
||||||
|
<if-index>17305224</if-index>
|
||||||
|
<phys-address>14:18:77:09:ae:19</phys-address>
|
||||||
|
<speed>0</speed>
|
||||||
|
<auto-negotiation>false</auto-negotiation>
|
||||||
|
<supported-speed>40GIGE</supported-speed>
|
||||||
|
<supported-autoneg>BOTH_SUPPORTED</supported-autoneg>
|
||||||
|
<fec>not-supported</fec>
|
||||||
|
<npu-speed>0MBPS</npu-speed>
|
||||||
|
<current-phys-address>14:18:77:09:ae:19</current-phys-address>
|
||||||
|
<last-change-time>36</last-change-time>
|
||||||
|
<last-counter-clear>17570700</last-counter-clear>
|
||||||
|
<load-interval>30</load-interval>
|
||||||
|
<mtu>1532</mtu>
|
||||||
|
<eee-state>n/a</eee-state>
|
||||||
|
<lldp-rem-neighbor-info/>
|
||||||
|
</interface>
|
||||||
|
<interface>
|
||||||
|
<name>ethernet1/1/8</name>
|
||||||
|
<type>ianaift:ethernetCsmacd</type>
|
||||||
|
<admin-status>up</admin-status>
|
||||||
|
<oper-status>down</oper-status>
|
||||||
|
<if-index>17305250</if-index>
|
||||||
|
<phys-address>14:18:77:09:ae:1d</phys-address>
|
||||||
|
<speed>0</speed>
|
||||||
|
<auto-negotiation>false</auto-negotiation>
|
||||||
|
<supported-speed>40GIGE</supported-speed>
|
||||||
|
<supported-autoneg>BOTH_SUPPORTED</supported-autoneg>
|
||||||
|
<fec>not-supported</fec>
|
||||||
|
<npu-speed>0MBPS</npu-speed>
|
||||||
|
<current-phys-address>14:18:77:09:ae:1d</current-phys-address>
|
||||||
|
<last-change-time>36</last-change-time>
|
||||||
|
<last-counter-clear>17570700</last-counter-clear>
|
||||||
|
<load-interval>30</load-interval>
|
||||||
|
<mtu>1532</mtu>
|
||||||
|
<eee-state>n/a</eee-state>
|
||||||
|
<lldp-rem-neighbor-info/>
|
||||||
|
</interface>
|
||||||
|
<interface>
|
||||||
|
<name>ethernet1/1/9</name>
|
||||||
|
<type>ianaift:ethernetCsmacd</type>
|
||||||
|
<admin-status>up</admin-status>
|
||||||
|
<oper-status>down</oper-status>
|
||||||
|
<if-index>17305276</if-index>
|
||||||
|
<phys-address>14:18:77:09:ae:21</phys-address>
|
||||||
|
<speed>0</speed>
|
||||||
|
<auto-negotiation>false</auto-negotiation>
|
||||||
|
<supported-speed>40GIGE</supported-speed>
|
||||||
|
<supported-autoneg>BOTH_SUPPORTED</supported-autoneg>
|
||||||
|
<fec>not-supported</fec>
|
||||||
|
<npu-speed>0MBPS</npu-speed>
|
||||||
|
<current-phys-address>14:18:77:09:ae:21</current-phys-address>
|
||||||
|
<last-change-time>36</last-change-time>
|
||||||
|
<last-counter-clear>17570700</last-counter-clear>
|
||||||
|
<load-interval>30</load-interval>
|
||||||
|
<mtu>1532</mtu>
|
||||||
|
<eee-state>n/a</eee-state>
|
||||||
|
<lldp-rem-neighbor-info/>
|
||||||
|
</interface>
|
||||||
|
<interface>
|
||||||
|
<name>ethernet1/1/10</name>
|
||||||
|
<type>ianaift:ethernetCsmacd</type>
|
||||||
|
<admin-status>up</admin-status>
|
||||||
|
<oper-status>down</oper-status>
|
||||||
|
<if-index>17305302</if-index>
|
||||||
|
<phys-address>14:18:77:09:ae:25</phys-address>
|
||||||
|
<speed>0</speed>
|
||||||
|
<auto-negotiation>false</auto-negotiation>
|
||||||
|
<supported-speed>40GIGE</supported-speed>
|
||||||
|
<supported-autoneg>BOTH_SUPPORTED</supported-autoneg>
|
||||||
|
<fec>not-supported</fec>
|
||||||
|
<npu-speed>0MBPS</npu-speed>
|
||||||
|
<current-phys-address>14:18:77:09:ae:25</current-phys-address>
|
||||||
|
<last-change-time>36</last-change-time>
|
||||||
|
<last-counter-clear>17570700</last-counter-clear>
|
||||||
|
<load-interval>30</load-interval>
|
||||||
|
<mtu>1532</mtu>
|
||||||
|
<eee-state>n/a</eee-state>
|
||||||
|
<lldp-rem-neighbor-info/>
|
||||||
|
</interface>
|
||||||
|
<interface>
|
||||||
|
<name>ethernet1/1/11</name>
|
||||||
|
<type>ianaift:ethernetCsmacd</type>
|
||||||
|
<admin-status>up</admin-status>
|
||||||
|
<oper-status>down</oper-status>
|
||||||
|
<if-index>17305328</if-index>
|
||||||
|
<phys-address>14:18:77:09:ae:29</phys-address>
|
||||||
|
<speed>0</speed>
|
||||||
|
<auto-negotiation>false</auto-negotiation>
|
||||||
|
<supported-speed>40GIGE</supported-speed>
|
||||||
|
<supported-autoneg>BOTH_SUPPORTED</supported-autoneg>
|
||||||
|
<fec>not-supported</fec>
|
||||||
|
<npu-speed>0MBPS</npu-speed>
|
||||||
|
<current-phys-address>14:18:77:09:ae:29</current-phys-address>
|
||||||
|
<last-change-time>37</last-change-time>
|
||||||
|
<last-counter-clear>17570600</last-counter-clear>
|
||||||
|
<load-interval>30</load-interval>
|
||||||
|
<mtu>1532</mtu>
|
||||||
|
<eee-state>n/a</eee-state>
|
||||||
|
<lldp-rem-neighbor-info/>
|
||||||
|
</interface>
|
||||||
|
<interface>
|
||||||
|
<name>ethernet1/1/12</name>
|
||||||
|
<type>ianaift:ethernetCsmacd</type>
|
||||||
|
<admin-status>up</admin-status>
|
||||||
|
<oper-status>down</oper-status>
|
||||||
|
<if-index>17305354</if-index>
|
||||||
|
<phys-address>14:18:77:09:ae:2d</phys-address>
|
||||||
|
<speed>0</speed>
|
||||||
|
<auto-negotiation>false</auto-negotiation>
|
||||||
|
<supported-speed>40GIGE</supported-speed>
|
||||||
|
<supported-autoneg>BOTH_SUPPORTED</supported-autoneg>
|
||||||
|
<fec>not-supported</fec>
|
||||||
|
<npu-speed>0MBPS</npu-speed>
|
||||||
|
<current-phys-address>14:18:77:09:ae:2d</current-phys-address>
|
||||||
|
<last-change-time>37</last-change-time>
|
||||||
|
<last-counter-clear>17570600</last-counter-clear>
|
||||||
|
<load-interval>30</load-interval>
|
||||||
|
<mtu>1532</mtu>
|
||||||
|
<eee-state>n/a</eee-state>
|
||||||
|
<lldp-rem-neighbor-info/>
|
||||||
|
</interface>
|
||||||
|
<interface>
|
||||||
|
<name>ethernet1/1/13</name>
|
||||||
|
<type>ianaift:ethernetCsmacd</type>
|
||||||
|
<admin-status>up</admin-status>
|
||||||
|
<oper-status>down</oper-status>
|
||||||
|
<if-index>17305380</if-index>
|
||||||
|
<phys-address>14:18:77:09:ae:31</phys-address>
|
||||||
|
<speed>0</speed>
|
||||||
|
<auto-negotiation>false</auto-negotiation>
|
||||||
|
<supported-speed>40GIGE</supported-speed>
|
||||||
|
<supported-autoneg>BOTH_SUPPORTED</supported-autoneg>
|
||||||
|
<fec>not-supported</fec>
|
||||||
|
<npu-speed>0MBPS</npu-speed>
|
||||||
|
<current-phys-address>14:18:77:09:ae:31</current-phys-address>
|
||||||
|
<last-change-time>37</last-change-time>
|
||||||
|
<last-counter-clear>17570600</last-counter-clear>
|
||||||
|
<load-interval>30</load-interval>
|
||||||
|
<mtu>1532</mtu>
|
||||||
|
<eee-state>n/a</eee-state>
|
||||||
|
<lldp-rem-neighbor-info/>
|
||||||
|
</interface>
|
||||||
|
<interface>
|
||||||
|
<name>ethernet1/1/14</name>
|
||||||
|
<type>ianaift:ethernetCsmacd</type>
|
||||||
|
<admin-status>up</admin-status>
|
||||||
|
<oper-status>down</oper-status>
|
||||||
|
<if-index>17305406</if-index>
|
||||||
|
<phys-address>14:18:77:09:ae:32</phys-address>
|
||||||
|
<speed>0</speed>
|
||||||
|
<auto-negotiation>false</auto-negotiation>
|
||||||
|
<supported-speed>40GIGE</supported-speed>
|
||||||
|
<supported-autoneg>BOTH_SUPPORTED</supported-autoneg>
|
||||||
|
<fec>not-supported</fec>
|
||||||
|
<npu-speed>0MBPS</npu-speed>
|
||||||
|
<current-phys-address>14:18:77:09:ae:32</current-phys-address>
|
||||||
|
<last-change-time>37</last-change-time>
|
||||||
|
<last-counter-clear>17570600</last-counter-clear>
|
||||||
|
<load-interval>30</load-interval>
|
||||||
|
<mtu>1532</mtu>
|
||||||
|
<eee-state>n/a</eee-state>
|
||||||
|
<lldp-rem-neighbor-info/>
|
||||||
|
</interface>
|
||||||
|
<interface>
|
||||||
|
<name>ethernet1/1/15</name>
|
||||||
|
<type>ianaift:ethernetCsmacd</type>
|
||||||
|
<admin-status>up</admin-status>
|
||||||
|
<oper-status>down</oper-status>
|
||||||
|
<if-index>17305432</if-index>
|
||||||
|
<phys-address>14:18:77:09:ae:33</phys-address>
|
||||||
|
<speed>0</speed>
|
||||||
|
<auto-negotiation>false</auto-negotiation>
|
||||||
|
<supported-speed>40GIGE</supported-speed>
|
||||||
|
<supported-autoneg>BOTH_SUPPORTED</supported-autoneg>
|
||||||
|
<fec>not-supported</fec>
|
||||||
|
<npu-speed>0MBPS</npu-speed>
|
||||||
|
<current-phys-address>14:18:77:09:ae:33</current-phys-address>
|
||||||
|
<last-change-time>37</last-change-time>
|
||||||
|
<last-counter-clear>17570600</last-counter-clear>
|
||||||
|
<load-interval>30</load-interval>
|
||||||
|
<mtu>1532</mtu>
|
||||||
|
<eee-state>n/a</eee-state>
|
||||||
|
<lldp-rem-neighbor-info/>
|
||||||
|
</interface>
|
||||||
|
<interface>
|
||||||
|
<name>ethernet1/1/16</name>
|
||||||
|
<type>ianaift:ethernetCsmacd</type>
|
||||||
|
<admin-status>up</admin-status>
|
||||||
|
<oper-status>down</oper-status>
|
||||||
|
<if-index>17305458</if-index>
|
||||||
|
<phys-address>14:18:77:09:ae:34</phys-address>
|
||||||
|
<speed>0</speed>
|
||||||
|
<auto-negotiation>false</auto-negotiation>
|
||||||
|
<supported-speed>40GIGE</supported-speed>
|
||||||
|
<supported-autoneg>BOTH_SUPPORTED</supported-autoneg>
|
||||||
|
<fec>not-supported</fec>
|
||||||
|
<npu-speed>0MBPS</npu-speed>
|
||||||
|
<current-phys-address>14:18:77:09:ae:34</current-phys-address>
|
||||||
|
<last-change-time>37</last-change-time>
|
||||||
|
<last-counter-clear>17570600</last-counter-clear>
|
||||||
|
<load-interval>30</load-interval>
|
||||||
|
<mtu>1532</mtu>
|
||||||
|
<eee-state>n/a</eee-state>
|
||||||
|
<lldp-rem-neighbor-info/>
|
||||||
|
</interface>
|
||||||
|
<interface>
|
||||||
|
<name>ethernet1/1/17</name>
|
||||||
|
<type>ianaift:ethernetCsmacd</type>
|
||||||
|
<admin-status>up</admin-status>
|
||||||
|
<oper-status>down</oper-status>
|
||||||
|
<if-index>17305484</if-index>
|
||||||
|
<phys-address>14:18:77:09:ae:35</phys-address>
|
||||||
|
<speed>0</speed>
|
||||||
|
<auto-negotiation>false</auto-negotiation>
|
||||||
|
<supported-speed>40GIGE</supported-speed>
|
||||||
|
<supported-autoneg>BOTH_SUPPORTED</supported-autoneg>
|
||||||
|
<fec>not-supported</fec>
|
||||||
|
<npu-speed>0MBPS</npu-speed>
|
||||||
|
<current-phys-address>14:18:77:09:ae:35</current-phys-address>
|
||||||
|
<last-change-time>37</last-change-time>
|
||||||
|
<last-counter-clear>17570600</last-counter-clear>
|
||||||
|
<load-interval>30</load-interval>
|
||||||
|
<mtu>1532</mtu>
|
||||||
|
<eee-state>n/a</eee-state>
|
||||||
|
<lldp-rem-neighbor-info/>
|
||||||
|
</interface>
|
||||||
|
<interface>
|
||||||
|
<name>ethernet1/1/18</name>
|
||||||
|
<type>ianaift:ethernetCsmacd</type>
|
||||||
|
<admin-status>up</admin-status>
|
||||||
|
<oper-status>down</oper-status>
|
||||||
|
<if-index>17305510</if-index>
|
||||||
|
<phys-address>14:18:77:09:ae:39</phys-address>
|
||||||
|
<speed>0</speed>
|
||||||
|
<auto-negotiation>false</auto-negotiation>
|
||||||
|
<supported-speed>40GIGE</supported-speed>
|
||||||
|
<supported-autoneg>BOTH_SUPPORTED</supported-autoneg>
|
||||||
|
<fec>not-supported</fec>
|
||||||
|
<npu-speed>0MBPS</npu-speed>
|
||||||
|
<current-phys-address>14:18:77:09:ae:39</current-phys-address>
|
||||||
|
<last-change-time>37</last-change-time>
|
||||||
|
<last-counter-clear>17570600</last-counter-clear>
|
||||||
|
<load-interval>30</load-interval>
|
||||||
|
<mtu>1532</mtu>
|
||||||
|
<eee-state>n/a</eee-state>
|
||||||
|
<lldp-rem-neighbor-info/>
|
||||||
|
</interface>
|
||||||
|
<interface>
|
||||||
|
<name>ethernet1/1/19</name>
|
||||||
|
<type>ianaift:ethernetCsmacd</type>
|
||||||
|
<admin-status>up</admin-status>
|
||||||
|
<oper-status>down</oper-status>
|
||||||
|
<if-index>17305536</if-index>
|
||||||
|
<phys-address>14:18:77:09:ae:3d</phys-address>
|
||||||
|
<speed>0</speed>
|
||||||
|
<auto-negotiation>false</auto-negotiation>
|
||||||
|
<supported-speed>40GIGE</supported-speed>
|
||||||
|
<supported-autoneg>BOTH_SUPPORTED</supported-autoneg>
|
||||||
|
<fec>not-supported</fec>
|
||||||
|
<npu-speed>0MBPS</npu-speed>
|
||||||
|
<current-phys-address>14:18:77:09:ae:3d</current-phys-address>
|
||||||
|
<last-change-time>37</last-change-time>
|
||||||
|
<last-counter-clear>17570600</last-counter-clear>
|
||||||
|
<load-interval>30</load-interval>
|
||||||
|
<mtu>1532</mtu>
|
||||||
|
<eee-state>n/a</eee-state>
|
||||||
|
<lldp-rem-neighbor-info/>
|
||||||
|
</interface>
|
||||||
|
<interface>
|
||||||
|
<name>ethernet1/1/20</name>
|
||||||
|
<type>ianaift:ethernetCsmacd</type>
|
||||||
|
<admin-status>up</admin-status>
|
||||||
|
<oper-status>down</oper-status>
|
||||||
|
<if-index>17305562</if-index>
|
||||||
|
<phys-address>14:18:77:09:ae:41</phys-address>
|
||||||
|
<speed>0</speed>
|
||||||
|
<auto-negotiation>false</auto-negotiation>
|
||||||
|
<supported-speed>40GIGE</supported-speed>
|
||||||
|
<supported-autoneg>BOTH_SUPPORTED</supported-autoneg>
|
||||||
|
<fec>not-supported</fec>
|
||||||
|
<npu-speed>0MBPS</npu-speed>
|
||||||
|
<current-phys-address>14:18:77:09:ae:41</current-phys-address>
|
||||||
|
<last-change-time>37</last-change-time>
|
||||||
|
<last-counter-clear>17570600</last-counter-clear>
|
||||||
|
<load-interval>30</load-interval>
|
||||||
|
<mtu>1532</mtu>
|
||||||
|
<eee-state>n/a</eee-state>
|
||||||
|
<lldp-rem-neighbor-info/>
|
||||||
|
</interface>
|
||||||
|
<interface>
|
||||||
|
<name>ethernet1/1/21</name>
|
||||||
|
<type>ianaift:ethernetCsmacd</type>
|
||||||
|
<admin-status>up</admin-status>
|
||||||
|
<oper-status>down</oper-status>
|
||||||
|
<if-index>17305588</if-index>
|
||||||
|
<phys-address>14:18:77:09:ae:45</phys-address>
|
||||||
|
<speed>0</speed>
|
||||||
|
<auto-negotiation>false</auto-negotiation>
|
||||||
|
<supported-speed>40GIGE</supported-speed>
|
||||||
|
<supported-autoneg>BOTH_SUPPORTED</supported-autoneg>
|
||||||
|
<fec>not-supported</fec>
|
||||||
|
<npu-speed>0MBPS</npu-speed>
|
||||||
|
<current-phys-address>14:18:77:09:ae:45</current-phys-address>
|
||||||
|
<last-change-time>37</last-change-time>
|
||||||
|
<last-counter-clear>17570600</last-counter-clear>
|
||||||
|
<load-interval>30</load-interval>
|
||||||
|
<mtu>1532</mtu>
|
||||||
|
<eee-state>n/a</eee-state>
|
||||||
|
<lldp-rem-neighbor-info/>
|
||||||
|
</interface>
|
||||||
|
<interface>
|
||||||
|
<name>ethernet1/1/22</name>
|
||||||
|
<type>ianaift:ethernetCsmacd</type>
|
||||||
|
<admin-status>up</admin-status>
|
||||||
|
<oper-status>down</oper-status>
|
||||||
|
<if-index>17305614</if-index>
|
||||||
|
<phys-address>14:18:77:09:ae:49</phys-address>
|
||||||
|
<speed>0</speed>
|
||||||
|
<auto-negotiation>false</auto-negotiation>
|
||||||
|
<supported-speed>40GIGE</supported-speed>
|
||||||
|
<supported-autoneg>BOTH_SUPPORTED</supported-autoneg>
|
||||||
|
<fec>not-supported</fec>
|
||||||
|
<npu-speed>0MBPS</npu-speed>
|
||||||
|
<current-phys-address>14:18:77:09:ae:49</current-phys-address>
|
||||||
|
<last-change-time>37</last-change-time>
|
||||||
|
<last-counter-clear>17570600</last-counter-clear>
|
||||||
|
<load-interval>30</load-interval>
|
||||||
|
<mtu>1532</mtu>
|
||||||
|
<eee-state>n/a</eee-state>
|
||||||
|
<lldp-rem-neighbor-info/>
|
||||||
|
</interface>
|
||||||
|
<interface>
|
||||||
|
<name>ethernet1/1/23</name>
|
||||||
|
<type>ianaift:ethernetCsmacd</type>
|
||||||
|
<admin-status>up</admin-status>
|
||||||
|
<oper-status>down</oper-status>
|
||||||
|
<if-index>17305640</if-index>
|
||||||
|
<phys-address>14:18:77:09:ae:4d</phys-address>
|
||||||
|
<speed>0</speed>
|
||||||
|
<auto-negotiation>false</auto-negotiation>
|
||||||
|
<supported-speed>40GIGE</supported-speed>
|
||||||
|
<supported-autoneg>BOTH_SUPPORTED</supported-autoneg>
|
||||||
|
<fec>not-supported</fec>
|
||||||
|
<npu-speed>0MBPS</npu-speed>
|
||||||
|
<current-phys-address>14:18:77:09:ae:4d</current-phys-address>
|
||||||
|
<last-change-time>37</last-change-time>
|
||||||
|
<last-counter-clear>17570500</last-counter-clear>
|
||||||
|
<load-interval>30</load-interval>
|
||||||
|
<mtu>1532</mtu>
|
||||||
|
<eee-state>n/a</eee-state>
|
||||||
|
<lldp-rem-neighbor-info/>
|
||||||
|
</interface>
|
||||||
|
<interface>
|
||||||
|
<name>ethernet1/1/24</name>
|
||||||
|
<type>ianaift:ethernetCsmacd</type>
|
||||||
|
<admin-status>up</admin-status>
|
||||||
|
<oper-status>down</oper-status>
|
||||||
|
<if-index>17305666</if-index>
|
||||||
|
<phys-address>14:18:77:09:ae:51</phys-address>
|
||||||
|
<speed>0</speed>
|
||||||
|
<auto-negotiation>false</auto-negotiation>
|
||||||
|
<supported-speed>40GIGE</supported-speed>
|
||||||
|
<supported-autoneg>BOTH_SUPPORTED</supported-autoneg>
|
||||||
|
<fec>not-supported</fec>
|
||||||
|
<npu-speed>0MBPS</npu-speed>
|
||||||
|
<current-phys-address>14:18:77:09:ae:51</current-phys-address>
|
||||||
|
<last-change-time>38</last-change-time>
|
||||||
|
<last-counter-clear>17570500</last-counter-clear>
|
||||||
|
<load-interval>30</load-interval>
|
||||||
|
<mtu>1532</mtu>
|
||||||
|
<eee-state>n/a</eee-state>
|
||||||
|
<lldp-rem-neighbor-info/>
|
||||||
|
</interface>
|
||||||
|
<interface>
|
||||||
|
<name>ethernet1/1/25</name>
|
||||||
|
<type>ianaift:ethernetCsmacd</type>
|
||||||
|
<admin-status>up</admin-status>
|
||||||
|
<oper-status>down</oper-status>
|
||||||
|
<if-index>17305692</if-index>
|
||||||
|
<phys-address>14:18:77:09:ae:55</phys-address>
|
||||||
|
<speed>0</speed>
|
||||||
|
<auto-negotiation>false</auto-negotiation>
|
||||||
|
<supported-speed>40GIGE</supported-speed>
|
||||||
|
<supported-autoneg>BOTH_SUPPORTED</supported-autoneg>
|
||||||
|
<fec>not-supported</fec>
|
||||||
|
<npu-speed>0MBPS</npu-speed>
|
||||||
|
<current-phys-address>14:18:77:09:ae:55</current-phys-address>
|
||||||
|
<last-change-time>38</last-change-time>
|
||||||
|
<last-counter-clear>17570500</last-counter-clear>
|
||||||
|
<load-interval>30</load-interval>
|
||||||
|
<mtu>1532</mtu>
|
||||||
|
<eee-state>n/a</eee-state>
|
||||||
|
<lldp-rem-neighbor-info/>
|
||||||
|
</interface>
|
||||||
|
<interface>
|
||||||
|
<name>ethernet1/1/26</name>
|
||||||
|
<type>ianaift:ethernetCsmacd</type>
|
||||||
|
<admin-status>up</admin-status>
|
||||||
|
<oper-status>down</oper-status>
|
||||||
|
<if-index>17305718</if-index>
|
||||||
|
<phys-address>14:18:77:09:ae:59</phys-address>
|
||||||
|
<speed>0</speed>
|
||||||
|
<auto-negotiation>false</auto-negotiation>
|
||||||
|
<supported-speed>40GIGE</supported-speed>
|
||||||
|
<supported-autoneg>BOTH_SUPPORTED</supported-autoneg>
|
||||||
|
<fec>not-supported</fec>
|
||||||
|
<npu-speed>0MBPS</npu-speed>
|
||||||
|
<current-phys-address>14:18:77:09:ae:59</current-phys-address>
|
||||||
|
<last-change-time>38</last-change-time>
|
||||||
|
<last-counter-clear>17570500</last-counter-clear>
|
||||||
|
<load-interval>30</load-interval>
|
||||||
|
<mtu>1532</mtu>
|
||||||
|
<eee-state>n/a</eee-state>
|
||||||
|
<lldp-rem-neighbor-info/>
|
||||||
|
</interface>
|
||||||
|
<interface>
|
||||||
|
<name>ethernet1/1/27</name>
|
||||||
|
<type>ianaift:ethernetCsmacd</type>
|
||||||
|
<admin-status>up</admin-status>
|
||||||
|
<oper-status>down</oper-status>
|
||||||
|
<if-index>17305744</if-index>
|
||||||
|
<phys-address>14:18:77:09:ae:5d</phys-address>
|
||||||
|
<speed>0</speed>
|
||||||
|
<auto-negotiation>false</auto-negotiation>
|
||||||
|
<supported-speed>40GIGE</supported-speed>
|
||||||
|
<supported-autoneg>BOTH_SUPPORTED</supported-autoneg>
|
||||||
|
<fec>not-supported</fec>
|
||||||
|
<npu-speed>0MBPS</npu-speed>
|
||||||
|
<current-phys-address>14:18:77:09:ae:5d</current-phys-address>
|
||||||
|
<last-change-time>38</last-change-time>
|
||||||
|
<last-counter-clear>17570500</last-counter-clear>
|
||||||
|
<load-interval>30</load-interval>
|
||||||
|
<mtu>1532</mtu>
|
||||||
|
<eee-state>n/a</eee-state>
|
||||||
|
<lldp-rem-neighbor-info/>
|
||||||
|
</interface>
|
||||||
|
<interface>
|
||||||
|
<name>ethernet1/1/28</name>
|
||||||
|
<type>ianaift:ethernetCsmacd</type>
|
||||||
|
<admin-status>up</admin-status>
|
||||||
|
<oper-status>down</oper-status>
|
||||||
|
<if-index>17305770</if-index>
|
||||||
|
<phys-address>14:18:77:09:ae:61</phys-address>
|
||||||
|
<speed>0</speed>
|
||||||
|
<auto-negotiation>false</auto-negotiation>
|
||||||
|
<supported-speed>40GIGE</supported-speed>
|
||||||
|
<supported-autoneg>BOTH_SUPPORTED</supported-autoneg>
|
||||||
|
<fec>not-supported</fec>
|
||||||
|
<npu-speed>0MBPS</npu-speed>
|
||||||
|
<current-phys-address>14:18:77:09:ae:61</current-phys-address>
|
||||||
|
<last-change-time>38</last-change-time>
|
||||||
|
<last-counter-clear>17570500</last-counter-clear>
|
||||||
|
<load-interval>30</load-interval>
|
||||||
|
<mtu>1532</mtu>
|
||||||
|
<eee-state>n/a</eee-state>
|
||||||
|
<lldp-rem-neighbor-info/>
|
||||||
|
</interface>
|
||||||
|
<interface>
|
||||||
|
<name>ethernet1/1/29</name>
|
||||||
|
<type>ianaift:ethernetCsmacd</type>
|
||||||
|
<admin-status>up</admin-status>
|
||||||
|
<oper-status>down</oper-status>
|
||||||
|
<if-index>17305796</if-index>
|
||||||
|
<phys-address>14:18:77:09:ae:65</phys-address>
|
||||||
|
<speed>0</speed>
|
||||||
|
<auto-negotiation>false</auto-negotiation>
|
||||||
|
<supported-speed>40GIGE</supported-speed>
|
||||||
|
<supported-autoneg>BOTH_SUPPORTED</supported-autoneg>
|
||||||
|
<fec>not-supported</fec>
|
||||||
|
<npu-speed>0MBPS</npu-speed>
|
||||||
|
<current-phys-address>14:18:77:09:ae:65</current-phys-address>
|
||||||
|
<last-change-time>38</last-change-time>
|
||||||
|
<last-counter-clear>17570500</last-counter-clear>
|
||||||
|
<load-interval>30</load-interval>
|
||||||
|
<mtu>1532</mtu>
|
||||||
|
<eee-state>n/a</eee-state>
|
||||||
|
<lldp-rem-neighbor-info/>
|
||||||
|
</interface>
|
||||||
|
<interface>
|
||||||
|
<name>ethernet1/1/30</name>
|
||||||
|
<type>ianaift:ethernetCsmacd</type>
|
||||||
|
<admin-status>up</admin-status>
|
||||||
|
<oper-status>down</oper-status>
|
||||||
|
<if-index>17305822</if-index>
|
||||||
|
<phys-address>14:18:77:09:ae:66</phys-address>
|
||||||
|
<speed>0</speed>
|
||||||
|
<auto-negotiation>false</auto-negotiation>
|
||||||
|
<supported-speed>40GIGE</supported-speed>
|
||||||
|
<supported-autoneg>BOTH_SUPPORTED</supported-autoneg>
|
||||||
|
<fec>not-supported</fec>
|
||||||
|
<npu-speed>0MBPS</npu-speed>
|
||||||
|
<current-phys-address>14:18:77:09:ae:66</current-phys-address>
|
||||||
|
<last-change-time>38</last-change-time>
|
||||||
|
<last-counter-clear>17570500</last-counter-clear>
|
||||||
|
<load-interval>30</load-interval>
|
||||||
|
<mtu>1532</mtu>
|
||||||
|
<eee-state>n/a</eee-state>
|
||||||
|
<lldp-rem-neighbor-info/>
|
||||||
|
</interface>
|
||||||
|
<interface>
|
||||||
|
<name>ethernet1/1/31</name>
|
||||||
|
<type>ianaift:ethernetCsmacd</type>
|
||||||
|
<admin-status>up</admin-status>
|
||||||
|
<oper-status>down</oper-status>
|
||||||
|
<if-index>17305848</if-index>
|
||||||
|
<phys-address>14:18:77:09:ae:67</phys-address>
|
||||||
|
<speed>0</speed>
|
||||||
|
<auto-negotiation>false</auto-negotiation>
|
||||||
|
<supported-speed>40GIGE</supported-speed>
|
||||||
|
<supported-autoneg>BOTH_SUPPORTED</supported-autoneg>
|
||||||
|
<fec>not-supported</fec>
|
||||||
|
<npu-speed>0MBPS</npu-speed>
|
||||||
|
<current-phys-address>14:18:77:09:ae:67</current-phys-address>
|
||||||
|
<last-change-time>38</last-change-time>
|
||||||
|
<last-counter-clear>17570500</last-counter-clear>
|
||||||
|
<load-interval>30</load-interval>
|
||||||
|
<mtu>1532</mtu>
|
||||||
|
<eee-state>n/a</eee-state>
|
||||||
|
<lldp-rem-neighbor-info/>
|
||||||
|
</interface>
|
||||||
|
<interface>
|
||||||
|
<name>ethernet1/1/32</name>
|
||||||
|
<type>ianaift:ethernetCsmacd</type>
|
||||||
|
<admin-status>up</admin-status>
|
||||||
|
<oper-status>down</oper-status>
|
||||||
|
<if-index>17305874</if-index>
|
||||||
|
<phys-address>14:18:77:09:ae:68</phys-address>
|
||||||
|
<speed>0</speed>
|
||||||
|
<auto-negotiation>false</auto-negotiation>
|
||||||
|
<supported-speed>40GIGE</supported-speed>
|
||||||
|
<supported-autoneg>BOTH_SUPPORTED</supported-autoneg>
|
||||||
|
<fec>not-supported</fec>
|
||||||
|
<npu-speed>0MBPS</npu-speed>
|
||||||
|
<current-phys-address>14:18:77:09:ae:68</current-phys-address>
|
||||||
|
<last-change-time>38</last-change-time>
|
||||||
|
<last-counter-clear>17570500</last-counter-clear>
|
||||||
|
<load-interval>30</load-interval>
|
||||||
|
<mtu>1532</mtu>
|
||||||
|
<eee-state>n/a</eee-state>
|
||||||
|
<lldp-rem-neighbor-info/>
|
||||||
|
</interface>
|
||||||
|
<interface>
|
||||||
|
<name>mgmt1/1/1</name>
|
||||||
|
<type>base-if:management</type>
|
||||||
|
<admin-status>up</admin-status>
|
||||||
|
<oper-status>up</oper-status>
|
||||||
|
<if-index>35454736</if-index>
|
||||||
|
<phys-address>00:a0:c9:00:00:00</phys-address>
|
||||||
|
<speed>1000000000</speed>
|
||||||
|
<auto-negotiation>false</auto-negotiation>
|
||||||
|
<supported-speed>10MBPS</supported-speed>
|
||||||
|
<supported-speed>100MBPS</supported-speed>
|
||||||
|
<supported-speed>1GIGE</supported-speed>
|
||||||
|
<supported-autoneg>NOT_SUPPORTED</supported-autoneg>
|
||||||
|
<fec>not-supported</fec>
|
||||||
|
<bind-ni-name>default</bind-ni-name>
|
||||||
|
<current-phys-address>00:a0:c9:00:00:00</current-phys-address>
|
||||||
|
<last-change-time>38</last-change-time>
|
||||||
|
<last-counter-clear>17570400</last-counter-clear>
|
||||||
|
<load-interval>30</load-interval>
|
||||||
|
<mtu>1532</mtu>
|
||||||
|
<lldp-rem-neighbor-info>
|
||||||
|
<info>
|
||||||
|
<rem-lldp-time-mark>3100</rem-lldp-time-mark>
|
||||||
|
<rem-lldp-index>1</rem-lldp-index>
|
||||||
|
<dest-mac-addr-index>1</dest-mac-addr-index>
|
||||||
|
<rem-if-index>35454736</rem-if-index>
|
||||||
|
<rem-local-port-num>4</rem-local-port-num>
|
||||||
|
<rem-lldp-chassis-id>kLEc9C9t
|
||||||
|
</rem-lldp-chassis-id>
|
||||||
|
<rem-lldp-port-id>VGVuR2lnYWJpdEV0aGVybmV0IDAvMA==
|
||||||
|
</rem-lldp-port-id>
|
||||||
|
<rem-lldp-chassis-id-subtype>mac-address</rem-lldp-chassis-id-subtype>
|
||||||
|
<rem-lldp-port-subtype>interface-name</rem-lldp-port-subtype>
|
||||||
|
<rem-ttl>20</rem-ttl>
|
||||||
|
<rem-last-update-time>175667</rem-last-update-time>
|
||||||
|
<rem-info-valid-time>15</rem-info-valid-time>
|
||||||
|
<rem-system-desc>Dell Real Time Operating System Software. Dell Operating System Version: 2.0. Dell Application Software Version: 9.11(2.0) Copyright (c) 1999-2017Dell Inc. All Rights Reserved.Build Time: Tue Apr 25 21:22:59 2017</rem-system-desc>
|
||||||
|
<rem-port-desc>TenGigabitEthernet 0/0</rem-port-desc>
|
||||||
|
<rem-system-name>swlab1-maa-tor-A2</rem-system-name>
|
||||||
|
<rem-port-vlan-id>148</rem-port-vlan-id>
|
||||||
|
<rem-max-frame-size>0</rem-max-frame-size>
|
||||||
|
<rem-agg-link-status>false</rem-agg-link-status>
|
||||||
|
<rem-sys-cap-supported>router bridge repeater</rem-sys-cap-supported>
|
||||||
|
<rem-sys-cap-enabled>router bridge repeater</rem-sys-cap-enabled>
|
||||||
|
<rem-remote-changes>false</rem-remote-changes>
|
||||||
|
<rem-too-many-neighbors>false</rem-too-many-neighbors>
|
||||||
|
<rem-dot3-auto-neg-supported>false</rem-dot3-auto-neg-supported>
|
||||||
|
<rem-dot3-auto-neg-enabled>false</rem-dot3-auto-neg-enabled>
|
||||||
|
<rem-dot3-auto-neg-adv-cap/>
|
||||||
|
</info>
|
||||||
|
</lldp-rem-neighbor-info>
|
||||||
|
</interface>
|
||||||
|
</data>
|
||||||
|
<last-keys>
|
||||||
|
<name>mgmt1/1/1</name>
|
||||||
|
</last-keys>
|
||||||
|
</bulk>
|
||||||
|
</rpc-reply>
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
KiB Mem: 8127144 total, 2297272 used, 5829872 free, 137360 buffers
|
252
test/units/modules/network/dellos10/fixtures/show_running-config
Normal file
252
test/units/modules/network/dellos10/fixtures/show_running-config
Normal file
|
@ -0,0 +1,252 @@
|
||||||
|
! Version 10.4.0E(R1)
|
||||||
|
! Last configuration change at Jan 11 12:26:08 2018
|
||||||
|
!
|
||||||
|
snmp-server contact http://www.dell.com/support
|
||||||
|
snmp-server host 1.1.1.1 traps version 1 c4 udp-port 5
|
||||||
|
snmp-server host 1.1.1.1 traps version 2c c1 udp-port 4
|
||||||
|
snmp-server host 2.2.2.2 traps version 1 c3 udp-port 162
|
||||||
|
ip community-list expanded commex deny aaa
|
||||||
|
ip community-list standard commstd deny internet
|
||||||
|
ip community-list standard commstd permit no-advertise
|
||||||
|
ip as-path access-list accesslist deny abc
|
||||||
|
ip as-path access-list accesslist deny www
|
||||||
|
ip extcommunity-list expanded extcommex deny aaa
|
||||||
|
ip extcommunity-list standard extcommstd deny rt 22:33
|
||||||
|
ip extcommunity-list standard extcommstd permit soo 22:33
|
||||||
|
hostname os10
|
||||||
|
interface breakout 1/1/1 map 40g-1x
|
||||||
|
interface breakout 1/1/2 map 40g-1x
|
||||||
|
interface breakout 1/1/3 map 40g-1x
|
||||||
|
interface breakout 1/1/4 map 40g-1x
|
||||||
|
interface breakout 1/1/5 map 40g-1x
|
||||||
|
interface breakout 1/1/6 map 40g-1x
|
||||||
|
interface breakout 1/1/7 map 40g-1x
|
||||||
|
interface breakout 1/1/8 map 40g-1x
|
||||||
|
interface breakout 1/1/9 map 40g-1x
|
||||||
|
interface breakout 1/1/10 map 40g-1x
|
||||||
|
interface breakout 1/1/11 map 40g-1x
|
||||||
|
interface breakout 1/1/12 map 40g-1x
|
||||||
|
interface breakout 1/1/13 map 40g-1x
|
||||||
|
interface breakout 1/1/14 map 40g-1x
|
||||||
|
interface breakout 1/1/15 map 40g-1x
|
||||||
|
interface breakout 1/1/16 map 40g-1x
|
||||||
|
interface breakout 1/1/17 map 40g-1x
|
||||||
|
interface breakout 1/1/18 map 40g-1x
|
||||||
|
interface breakout 1/1/19 map 40g-1x
|
||||||
|
interface breakout 1/1/20 map 40g-1x
|
||||||
|
interface breakout 1/1/21 map 40g-1x
|
||||||
|
interface breakout 1/1/22 map 40g-1x
|
||||||
|
interface breakout 1/1/23 map 40g-1x
|
||||||
|
interface breakout 1/1/24 map 40g-1x
|
||||||
|
interface breakout 1/1/25 map 40g-1x
|
||||||
|
interface breakout 1/1/26 map 40g-1x
|
||||||
|
interface breakout 1/1/27 map 40g-1x
|
||||||
|
interface breakout 1/1/28 map 40g-1x
|
||||||
|
interface breakout 1/1/29 map 40g-1x
|
||||||
|
interface breakout 1/1/30 map 40g-1x
|
||||||
|
interface breakout 1/1/31 map 40g-1x
|
||||||
|
interface breakout 1/1/32 map 40g-1x
|
||||||
|
username admin password $6$q9QBeYjZ$jfxzVqGhkxX3smxJSH9DDz7/3OJc6m5wjF8nnLD7/VKx8SloIhp4NoGZs0I/UNwh8WVuxwfd9q4pWIgNs5BKH. role sysadmin
|
||||||
|
aaa authentication local
|
||||||
|
iscsi target port 860
|
||||||
|
iscsi target port 3260
|
||||||
|
hash-algorithm ecmp xor
|
||||||
|
logging console disable
|
||||||
|
vrrp delay reload 5
|
||||||
|
vrrp version 3
|
||||||
|
spanning-tree mode rstp
|
||||||
|
!
|
||||||
|
interface vlan1
|
||||||
|
no shutdown
|
||||||
|
!
|
||||||
|
interface vlan100
|
||||||
|
no shutdown
|
||||||
|
!
|
||||||
|
interface port-channel12
|
||||||
|
no shutdown
|
||||||
|
switchport access vlan 1
|
||||||
|
vlt-port-channel 13
|
||||||
|
!
|
||||||
|
interface ethernet1/1/1
|
||||||
|
no shutdown
|
||||||
|
switchport access vlan 1
|
||||||
|
!
|
||||||
|
interface ethernet1/1/2
|
||||||
|
no shutdown
|
||||||
|
no switchport
|
||||||
|
!
|
||||||
|
interface ethernet1/1/3
|
||||||
|
no shutdown
|
||||||
|
switchport access vlan 1
|
||||||
|
!
|
||||||
|
interface ethernet1/1/4
|
||||||
|
no shutdown
|
||||||
|
switchport access vlan 1
|
||||||
|
!
|
||||||
|
interface ethernet1/1/5
|
||||||
|
no shutdown
|
||||||
|
switchport access vlan 1
|
||||||
|
!
|
||||||
|
interface ethernet1/1/6
|
||||||
|
no shutdown
|
||||||
|
switchport access vlan 1
|
||||||
|
!
|
||||||
|
interface ethernet1/1/7
|
||||||
|
no shutdown
|
||||||
|
switchport access vlan 1
|
||||||
|
!
|
||||||
|
interface ethernet1/1/8
|
||||||
|
no shutdown
|
||||||
|
no switchport
|
||||||
|
!
|
||||||
|
interface ethernet1/1/9
|
||||||
|
no shutdown
|
||||||
|
switchport access vlan 1
|
||||||
|
!
|
||||||
|
interface ethernet1/1/10
|
||||||
|
no shutdown
|
||||||
|
switchport access vlan 1
|
||||||
|
!
|
||||||
|
interface ethernet1/1/11
|
||||||
|
no shutdown
|
||||||
|
switchport access vlan 1
|
||||||
|
!
|
||||||
|
interface ethernet1/1/12
|
||||||
|
no shutdown
|
||||||
|
no switchport
|
||||||
|
!
|
||||||
|
interface ethernet1/1/13
|
||||||
|
no shutdown
|
||||||
|
no switchport
|
||||||
|
!
|
||||||
|
vrrp-group 4
|
||||||
|
priority 120
|
||||||
|
track 3 priority-cost 25
|
||||||
|
virtual-address 4.1.1.1
|
||||||
|
virtual-address 4.1.1.2
|
||||||
|
advertise-interval centisecs 200
|
||||||
|
no preempt
|
||||||
|
!
|
||||||
|
vrrp-ipv6-group 2
|
||||||
|
priority 120
|
||||||
|
track 3 priority-cost 25
|
||||||
|
virtual-address 3001:4828:5808:ffa3::9
|
||||||
|
virtual-address fe80::10
|
||||||
|
advertise-interval centisecs 200
|
||||||
|
no preempt
|
||||||
|
!
|
||||||
|
interface ethernet1/1/14
|
||||||
|
no shutdown
|
||||||
|
no switchport
|
||||||
|
!
|
||||||
|
interface ethernet1/1/15
|
||||||
|
no shutdown
|
||||||
|
no switchport
|
||||||
|
!
|
||||||
|
interface ethernet1/1/16
|
||||||
|
no shutdown
|
||||||
|
no switchport
|
||||||
|
!
|
||||||
|
interface ethernet1/1/17
|
||||||
|
no shutdown
|
||||||
|
no switchport
|
||||||
|
!
|
||||||
|
interface ethernet1/1/18
|
||||||
|
no shutdown
|
||||||
|
no switchport
|
||||||
|
!
|
||||||
|
interface ethernet1/1/19
|
||||||
|
no shutdown
|
||||||
|
no switchport
|
||||||
|
!
|
||||||
|
interface ethernet1/1/20
|
||||||
|
no shutdown
|
||||||
|
switchport access vlan 1
|
||||||
|
!
|
||||||
|
interface ethernet1/1/21
|
||||||
|
no shutdown
|
||||||
|
switchport access vlan 1
|
||||||
|
!
|
||||||
|
interface ethernet1/1/22
|
||||||
|
no shutdown
|
||||||
|
switchport access vlan 1
|
||||||
|
!
|
||||||
|
interface ethernet1/1/23
|
||||||
|
no shutdown
|
||||||
|
switchport access vlan 1
|
||||||
|
!
|
||||||
|
interface ethernet1/1/24
|
||||||
|
no shutdown
|
||||||
|
switchport access vlan 1
|
||||||
|
!
|
||||||
|
interface ethernet1/1/25
|
||||||
|
no shutdown
|
||||||
|
switchport access vlan 1
|
||||||
|
!
|
||||||
|
interface ethernet1/1/26
|
||||||
|
no shutdown
|
||||||
|
switchport access vlan 1
|
||||||
|
!
|
||||||
|
interface ethernet1/1/27
|
||||||
|
no shutdown
|
||||||
|
switchport access vlan 1
|
||||||
|
!
|
||||||
|
interface ethernet1/1/28
|
||||||
|
no shutdown
|
||||||
|
switchport access vlan 1
|
||||||
|
!
|
||||||
|
interface ethernet1/1/29
|
||||||
|
no shutdown
|
||||||
|
switchport access vlan 1
|
||||||
|
!
|
||||||
|
interface ethernet1/1/30
|
||||||
|
no shutdown
|
||||||
|
switchport access vlan 1
|
||||||
|
!
|
||||||
|
interface ethernet1/1/31
|
||||||
|
no shutdown
|
||||||
|
switchport access vlan 1
|
||||||
|
!
|
||||||
|
interface ethernet1/1/32
|
||||||
|
no shutdown
|
||||||
|
switchport access vlan 1
|
||||||
|
!
|
||||||
|
interface mgmt1/1/1
|
||||||
|
no shutdown
|
||||||
|
ip address 10.16.148.144/16
|
||||||
|
ipv6 address autoconfig
|
||||||
|
!
|
||||||
|
route-map test permit 1
|
||||||
|
match ip address prefix-list testprefix
|
||||||
|
match ip address testaccess
|
||||||
|
continue 20
|
||||||
|
set comm-list commstd delete
|
||||||
|
set comm-list commex add
|
||||||
|
set community internet
|
||||||
|
set extcommunity rt 22:33
|
||||||
|
set extcomm-list extcommstd delete
|
||||||
|
set extcomm-list extcommex add
|
||||||
|
set ip next-hop 10.1.1.1 track-id 3
|
||||||
|
set local-preference 1200
|
||||||
|
set metric + 30
|
||||||
|
set metric-type internal
|
||||||
|
set origin igp
|
||||||
|
set weight 50
|
||||||
|
!
|
||||||
|
route-map test deny 10
|
||||||
|
match ip address prefix-list testprefix
|
||||||
|
match ip address testaccess
|
||||||
|
set ip next-hop 10.1.1.1 track-id 3
|
||||||
|
!
|
||||||
|
support-assist
|
||||||
|
!
|
||||||
|
policy-map type application policy-iscsi
|
||||||
|
!
|
||||||
|
class-map type application class-iscsi
|
||||||
|
!
|
||||||
|
class-map type qos class-trust
|
||||||
|
!
|
||||||
|
vlt-domain 1
|
||||||
|
discovery-interface ethernet1/1/12
|
||||||
|
vlt-mac aa:aa:aa:aa:aa:aa
|
||||||
|
|
|
@ -0,0 +1,194 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<rpc-reply>
|
||||||
|
<data>
|
||||||
|
<system>
|
||||||
|
<node>
|
||||||
|
<node-id>1</node-id>
|
||||||
|
<node-mac>14:18:77:09:ae:00</node-mac>
|
||||||
|
<number-of-mac-addresses>384</number-of-mac-addresses>
|
||||||
|
<mfg-info>
|
||||||
|
<vendor-name>DELL</vendor-name>
|
||||||
|
<product-name>S6010-ON</product-name>
|
||||||
|
<hw-version>X01</hw-version>
|
||||||
|
<platform-name>x86_64-dell_s6010_c2538-r0</platform-name>
|
||||||
|
<ppid>0088</ppid>
|
||||||
|
<service-tag/>
|
||||||
|
<service-code/>
|
||||||
|
</mfg-info>
|
||||||
|
<unit>
|
||||||
|
<unit-id>1</unit-id>
|
||||||
|
<current-unit-model>S6010</current-unit-model>
|
||||||
|
<provisioned-unit-model>S6010</provisioned-unit-model>
|
||||||
|
<unit-state>up</unit-state>
|
||||||
|
<software-version>10.4.0E(R1)</software-version>
|
||||||
|
<port-info>32x40GbE</port-info>
|
||||||
|
<mfg-info>
|
||||||
|
<vendor-name>DELL</vendor-name>
|
||||||
|
<product-name>S6010-ON</product-name>
|
||||||
|
<hw-version>X01</hw-version>
|
||||||
|
<platform-name>x86_64-dell_s6010_c2538-r0</platform-name>
|
||||||
|
<ppid>0088</ppid>
|
||||||
|
<part-number>083R0P</part-number>
|
||||||
|
<service-tag/>
|
||||||
|
<service-code/>
|
||||||
|
</mfg-info>
|
||||||
|
<down-reason>user-triggered</down-reason>
|
||||||
|
<descr>S6010-ON 32x40GbE QSFP+ Interface Module</descr>
|
||||||
|
<beacon_led_state>false</beacon_led_state>
|
||||||
|
<system-identifier-id>1</system-identifier-id>
|
||||||
|
<firmware>
|
||||||
|
<firmware-name>BIOS</firmware-name>
|
||||||
|
<firmware-version>3.26.0.1</firmware-version>
|
||||||
|
</firmware>
|
||||||
|
<firmware>
|
||||||
|
<firmware-name>System CPLD</firmware-name>
|
||||||
|
<firmware-version>10</firmware-version>
|
||||||
|
</firmware>
|
||||||
|
<firmware>
|
||||||
|
<firmware-name>Master CPLD</firmware-name>
|
||||||
|
<firmware-version>9</firmware-version>
|
||||||
|
</firmware>
|
||||||
|
<firmware>
|
||||||
|
<firmware-name>Slave CPLD</firmware-name>
|
||||||
|
<firmware-version>4</firmware-version>
|
||||||
|
</firmware>
|
||||||
|
</unit>
|
||||||
|
<power-supply>
|
||||||
|
<psu-id>1</psu-id>
|
||||||
|
<status>fail</status>
|
||||||
|
<mfg-info/>
|
||||||
|
</power-supply>
|
||||||
|
<power-supply>
|
||||||
|
<psu-id>2</psu-id>
|
||||||
|
<status>up</status>
|
||||||
|
<power-type>UNKNOWN</power-type>
|
||||||
|
<fan-info>
|
||||||
|
<fan-id>1</fan-id>
|
||||||
|
<fan-status>fail</fan-status>
|
||||||
|
<fan-speed-rpm>1920</fan-speed-rpm>
|
||||||
|
</fan-info>
|
||||||
|
<air-flow>NORMAL</air-flow>
|
||||||
|
<mfg-info>
|
||||||
|
<vendor-name/>
|
||||||
|
<product-name/>
|
||||||
|
<hw-version/>
|
||||||
|
<platform-name/>
|
||||||
|
<ppid/>
|
||||||
|
<part-number/>
|
||||||
|
<service-tag/>
|
||||||
|
<service-code/>
|
||||||
|
</mfg-info>
|
||||||
|
</power-supply>
|
||||||
|
<fan-tray>
|
||||||
|
<fan-tray-id>1</fan-tray-id>
|
||||||
|
<status>up</status>
|
||||||
|
<fan-info>
|
||||||
|
<fan-id>1</fan-id>
|
||||||
|
<fan-status>up</fan-status>
|
||||||
|
<fan-speed-rpm>22090</fan-speed-rpm>
|
||||||
|
</fan-info>
|
||||||
|
<air-flow>NORMAL</air-flow>
|
||||||
|
<mfg-info>
|
||||||
|
<vendor-name/>
|
||||||
|
<product-name/>
|
||||||
|
<hw-version>F01</hw-version>
|
||||||
|
<platform-name/>
|
||||||
|
<ppid>CN123456FAN100589021</ppid>
|
||||||
|
<part-number>P1FAN1</part-number>
|
||||||
|
<service-tag/>
|
||||||
|
<service-code/>
|
||||||
|
</mfg-info>
|
||||||
|
</fan-tray>
|
||||||
|
<fan-tray>
|
||||||
|
<fan-tray-id>2</fan-tray-id>
|
||||||
|
<status>up</status>
|
||||||
|
<fan-info>
|
||||||
|
<fan-id>1</fan-id>
|
||||||
|
<fan-status>up</fan-status>
|
||||||
|
<fan-speed-rpm>22215</fan-speed-rpm>
|
||||||
|
</fan-info>
|
||||||
|
<air-flow>NORMAL</air-flow>
|
||||||
|
<mfg-info>
|
||||||
|
<vendor-name/>
|
||||||
|
<product-name/>
|
||||||
|
<hw-version>F02</hw-version>
|
||||||
|
<platform-name/>
|
||||||
|
<ppid>CN123456FAN200589031</ppid>
|
||||||
|
<part-number>P2FAN2</part-number>
|
||||||
|
<service-tag/>
|
||||||
|
<service-code/>
|
||||||
|
</mfg-info>
|
||||||
|
</fan-tray>
|
||||||
|
<fan-tray>
|
||||||
|
<fan-tray-id>3</fan-tray-id>
|
||||||
|
<status>up</status>
|
||||||
|
<fan-info>
|
||||||
|
<fan-id>1</fan-id>
|
||||||
|
<fan-status>up</fan-status>
|
||||||
|
<fan-speed-rpm>22215</fan-speed-rpm>
|
||||||
|
</fan-info>
|
||||||
|
<air-flow>NORMAL</air-flow>
|
||||||
|
<mfg-info>
|
||||||
|
<vendor-name/>
|
||||||
|
<product-name/>
|
||||||
|
<hw-version>F03</hw-version>
|
||||||
|
<platform-name/>
|
||||||
|
<ppid>CN123456FAN300589041</ppid>
|
||||||
|
<part-number>P3FAN3</part-number>
|
||||||
|
<service-tag/>
|
||||||
|
<service-code/>
|
||||||
|
</mfg-info>
|
||||||
|
</fan-tray>
|
||||||
|
<fan-tray>
|
||||||
|
<fan-tray-id>4</fan-tray-id>
|
||||||
|
<status>up</status>
|
||||||
|
<fan-info>
|
||||||
|
<fan-id>1</fan-id>
|
||||||
|
<fan-status>up</fan-status>
|
||||||
|
<fan-speed-rpm>22215</fan-speed-rpm>
|
||||||
|
</fan-info>
|
||||||
|
<air-flow>NORMAL</air-flow>
|
||||||
|
<mfg-info>
|
||||||
|
<vendor-name/>
|
||||||
|
<product-name/>
|
||||||
|
<hw-version>F04</hw-version>
|
||||||
|
<platform-name/>
|
||||||
|
<ppid>CN123456FAN400589051</ppid>
|
||||||
|
<part-number>P4FAN4</part-number>
|
||||||
|
<service-tag/>
|
||||||
|
<service-code/>
|
||||||
|
</mfg-info>
|
||||||
|
</fan-tray>
|
||||||
|
<fan-tray>
|
||||||
|
<fan-tray-id>5</fan-tray-id>
|
||||||
|
<status>up</status>
|
||||||
|
<fan-info>
|
||||||
|
<fan-id>1</fan-id>
|
||||||
|
<fan-status>up</fan-status>
|
||||||
|
<fan-speed-rpm>21724</fan-speed-rpm>
|
||||||
|
</fan-info>
|
||||||
|
<air-flow>NORMAL</air-flow>
|
||||||
|
<mfg-info>
|
||||||
|
<vendor-name/>
|
||||||
|
<product-name/>
|
||||||
|
<hw-version>F05</hw-version>
|
||||||
|
<platform-name/>
|
||||||
|
<ppid>CN123456FAN500589061</ppid>
|
||||||
|
<part-number>P5FAN5</part-number>
|
||||||
|
<service-tag/>
|
||||||
|
<service-code/>
|
||||||
|
</mfg-info>
|
||||||
|
</fan-tray>
|
||||||
|
</node>
|
||||||
|
</system>
|
||||||
|
<system-state>
|
||||||
|
<system-status>
|
||||||
|
<hostname>os10</hostname>
|
||||||
|
<uptime>161826</uptime>
|
||||||
|
<date-time>2018-01-12T13:42:36.20+00:00</date-time>
|
||||||
|
<boot-datetime>2018-01-10T16:45:30+00:00</boot-datetime>
|
||||||
|
</system-status>
|
||||||
|
</system-state>
|
||||||
|
</data>
|
||||||
|
</rpc-reply>
|
||||||
|
|
|
@ -0,0 +1,9 @@
|
||||||
|
Dell EMC Networking OS10 Enterprise
|
||||||
|
Copyright (c) 1999-2017 by Dell Inc. All Rights Reserved.
|
||||||
|
OS Version: 10.4.0E(R1)
|
||||||
|
Build Version: 10.4.0E(R1.56)
|
||||||
|
Build Time: 2017-12-19T22:11:00-0800
|
||||||
|
System Type: S6000-VM
|
||||||
|
Architecture: x86_64
|
||||||
|
Up Time: 6 days 00:33:35
|
||||||
|
|
|
@ -0,0 +1,27 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<rpc-reply>
|
||||||
|
<data>
|
||||||
|
<system-state>
|
||||||
|
<system-status>
|
||||||
|
<hostname>os10</hostname>
|
||||||
|
<uptime>162698</uptime>
|
||||||
|
<date-time>2018-01-12T13:57:08.58+00:00</date-time>
|
||||||
|
<boot-datetime>2018-01-10T16:45:30+00:00</boot-datetime>
|
||||||
|
</system-status>
|
||||||
|
</system-state>
|
||||||
|
<system-sw-state>
|
||||||
|
<sw-version>
|
||||||
|
<sw-version>10.4.0E(R1)</sw-version>
|
||||||
|
<sw-name>Enterprise</sw-name>
|
||||||
|
<sw-name-long>Dell EMC Networking OS10 Enterprise</sw-name-long>
|
||||||
|
<sw-platform>S6010-ON</sw-platform>
|
||||||
|
<sw-platform-long>Dell EMC OS10 Enterprise Edition Blueprint 1.0.0</sw-platform-long>
|
||||||
|
<cpu-arch>x86_64</cpu-arch>
|
||||||
|
<sw-build-date>2017-12-14T23:39:27-0800</sw-build-date>
|
||||||
|
<sw-build-version>10.4.0E(R1.55)</sw-build-version>
|
||||||
|
<copyright>Copyright (c) 1999-2017 by Dell Inc. All Rights Reserved.</copyright>
|
||||||
|
</sw-version>
|
||||||
|
</system-sw-state>
|
||||||
|
</data>
|
||||||
|
</rpc-reply>
|
||||||
|
|
110
test/units/modules/network/dellos10/test_dellos10_command.py
Normal file
110
test/units/modules/network/dellos10/test_dellos10_command.py
Normal file
|
@ -0,0 +1,110 @@
|
||||||
|
# (c) 2016 Red Hat Inc.
|
||||||
|
#
|
||||||
|
# (c) 2017 Dell EMC.
|
||||||
|
#
|
||||||
|
# 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
|
||||||
|
|
||||||
|
import json
|
||||||
|
|
||||||
|
from ansible.compat.tests.mock import patch
|
||||||
|
from ansible.modules.network.dellos10 import dellos10_command
|
||||||
|
from units.modules.utils import set_module_args
|
||||||
|
from .dellos10_module import TestDellos10Module, load_fixture
|
||||||
|
|
||||||
|
|
||||||
|
class TestDellos10CommandModule(TestDellos10Module):
|
||||||
|
|
||||||
|
module = dellos10_command
|
||||||
|
|
||||||
|
def setUp(self):
|
||||||
|
super(TestDellos10CommandModule, self).setUp()
|
||||||
|
|
||||||
|
self.mock_run_commands = patch('ansible.modules.network.dellos10.dellos10_command.run_commands')
|
||||||
|
self.run_commands = self.mock_run_commands.start()
|
||||||
|
|
||||||
|
def tearDown(self):
|
||||||
|
super(TestDellos10CommandModule, self).tearDown()
|
||||||
|
self.mock_run_commands.stop()
|
||||||
|
|
||||||
|
def load_fixtures(self, commands=None):
|
||||||
|
|
||||||
|
def load_from_file(*args, **kwargs):
|
||||||
|
module, commands = args
|
||||||
|
output = list()
|
||||||
|
|
||||||
|
for item in commands:
|
||||||
|
try:
|
||||||
|
obj = json.loads(item['command'])
|
||||||
|
command = obj['command']
|
||||||
|
except ValueError:
|
||||||
|
command = item['command']
|
||||||
|
filename = str(command).replace(' ', '_')
|
||||||
|
output.append(load_fixture(filename))
|
||||||
|
return output
|
||||||
|
|
||||||
|
self.run_commands.side_effect = load_from_file
|
||||||
|
|
||||||
|
def test_dellos10_command_simple(self):
|
||||||
|
set_module_args(dict(commands=['show version']))
|
||||||
|
result = self.execute_module()
|
||||||
|
self.assertEqual(len(result['stdout']), 1)
|
||||||
|
self.assertTrue(result['stdout'][0].startswith('Dell EMC Networking'))
|
||||||
|
|
||||||
|
def test_dellos10_command_multiple(self):
|
||||||
|
set_module_args(dict(commands=['show version', 'show version']))
|
||||||
|
result = self.execute_module()
|
||||||
|
self.assertEqual(len(result['stdout']), 2)
|
||||||
|
self.assertTrue(result['stdout'][0].startswith('Dell EMC Networking'))
|
||||||
|
|
||||||
|
def test_dellos10_command_wait_for(self):
|
||||||
|
wait_for = 'result[0] contains "Dell EMC"'
|
||||||
|
set_module_args(dict(commands=['show version'], wait_for=wait_for))
|
||||||
|
self.execute_module()
|
||||||
|
|
||||||
|
def test_dellos10_command_wait_for_fails(self):
|
||||||
|
wait_for = 'result[0] contains "test string"'
|
||||||
|
set_module_args(dict(commands=['show version'], wait_for=wait_for))
|
||||||
|
self.execute_module(failed=True)
|
||||||
|
self.assertEqual(self.run_commands.call_count, 10)
|
||||||
|
|
||||||
|
def test_dellos10_command_retries(self):
|
||||||
|
wait_for = 'result[0] contains "test string"'
|
||||||
|
set_module_args(dict(commands=['show version'], wait_for=wait_for, retries=2))
|
||||||
|
self.execute_module(failed=True)
|
||||||
|
self.assertEqual(self.run_commands.call_count, 2)
|
||||||
|
|
||||||
|
def test_dellos10_command_match_any(self):
|
||||||
|
wait_for = ['result[0] contains "Dell EMC"',
|
||||||
|
'result[0] contains "test string"']
|
||||||
|
set_module_args(dict(commands=['show version'], wait_for=wait_for, match='any'))
|
||||||
|
self.execute_module()
|
||||||
|
|
||||||
|
def test_dellos10_command_match_all(self):
|
||||||
|
wait_for = ['result[0] contains "Dell EMC"',
|
||||||
|
'result[0] contains "OS10 Enterprise"']
|
||||||
|
set_module_args(dict(commands=['show version'], wait_for=wait_for, match='all'))
|
||||||
|
self.execute_module()
|
||||||
|
|
||||||
|
def test_dellos10_command_match_all_failure(self):
|
||||||
|
wait_for = ['result[0] contains "Dell EMC"',
|
||||||
|
'result[0] contains "test string"']
|
||||||
|
commands = ['show version', 'show version']
|
||||||
|
set_module_args(dict(commands=commands, wait_for=wait_for, match='all'))
|
||||||
|
self.execute_module(failed=True)
|
150
test/units/modules/network/dellos10/test_dellos10_config.py
Normal file
150
test/units/modules/network/dellos10/test_dellos10_config.py
Normal file
|
@ -0,0 +1,150 @@
|
||||||
|
#
|
||||||
|
# (c) 2016 Red Hat Inc.
|
||||||
|
#
|
||||||
|
# (c) 2017 Dell EMC.
|
||||||
|
#
|
||||||
|
# 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.compat.tests.mock import patch
|
||||||
|
from ansible.modules.network.dellos10 import dellos10_config
|
||||||
|
from units.modules.utils import set_module_args
|
||||||
|
from .dellos10_module import TestDellos10Module, load_fixture
|
||||||
|
|
||||||
|
|
||||||
|
class TestDellos10ConfigModule(TestDellos10Module):
|
||||||
|
|
||||||
|
module = dellos10_config
|
||||||
|
|
||||||
|
def setUp(self):
|
||||||
|
super(TestDellos10ConfigModule, self).setUp()
|
||||||
|
|
||||||
|
self.mock_get_config = patch('ansible.modules.network.dellos10.dellos10_config.get_config')
|
||||||
|
self.get_config = self.mock_get_config.start()
|
||||||
|
|
||||||
|
self.mock_load_config = patch('ansible.modules.network.dellos10.dellos10_config.load_config')
|
||||||
|
self.load_config = self.mock_load_config.start()
|
||||||
|
|
||||||
|
self.mock_run_commands = patch('ansible.modules.network.dellos10.dellos10_config.run_commands')
|
||||||
|
self.run_commands = self.mock_run_commands.start()
|
||||||
|
|
||||||
|
def tearDown(self):
|
||||||
|
super(TestDellos10ConfigModule, self).tearDown()
|
||||||
|
self.mock_get_config.stop()
|
||||||
|
self.mock_load_config.stop()
|
||||||
|
self.mock_run_commands.stop()
|
||||||
|
|
||||||
|
def load_fixtures(self, commands=None):
|
||||||
|
config_file = 'dellos10_config_config.cfg'
|
||||||
|
self.get_config.return_value = load_fixture(config_file)
|
||||||
|
self.load_config.return_value = None
|
||||||
|
|
||||||
|
def test_dellos10_config_unchanged(self):
|
||||||
|
src = load_fixture('dellos10_config_config.cfg')
|
||||||
|
set_module_args(dict(src=src))
|
||||||
|
self.execute_module()
|
||||||
|
|
||||||
|
def test_dellos10_config_src(self):
|
||||||
|
src = load_fixture('dellos10_config_src.cfg')
|
||||||
|
set_module_args(dict(src=src))
|
||||||
|
commands = ['hostname foo', 'interface ethernet1/1/2',
|
||||||
|
'no ip address']
|
||||||
|
self.execute_module(changed=True, commands=commands)
|
||||||
|
|
||||||
|
def test_dellos10_config_backup(self):
|
||||||
|
set_module_args(dict(backup=True))
|
||||||
|
result = self.execute_module()
|
||||||
|
self.assertIn('__backup__', result)
|
||||||
|
|
||||||
|
def test_dellos10_config_save(self):
|
||||||
|
set_module_args(dict(save=True))
|
||||||
|
self.execute_module(changed=True)
|
||||||
|
self.assertEqual(self.run_commands.call_count, 1)
|
||||||
|
self.assertEqual(self.get_config.call_count, 0)
|
||||||
|
self.assertEqual(self.load_config.call_count, 0)
|
||||||
|
args = self.run_commands.call_args[0][1]
|
||||||
|
self.assertDictContainsSubset({'command': 'copy running-config startup-config'}, args[0])
|
||||||
|
# self.assertIn('copy running-config startup-config\r', args)
|
||||||
|
|
||||||
|
def test_dellos10_config_lines_wo_parents(self):
|
||||||
|
set_module_args(dict(lines=['hostname foo']))
|
||||||
|
commands = ['hostname foo']
|
||||||
|
self.execute_module(changed=True, commands=commands)
|
||||||
|
|
||||||
|
def test_dellos10_config_lines_w_parents(self):
|
||||||
|
set_module_args(dict(lines=['shutdown'], parents=['interface ethernet1/1/2']))
|
||||||
|
commands = ['interface ethernet1/1/2', 'shutdown']
|
||||||
|
self.execute_module(changed=True, commands=commands)
|
||||||
|
|
||||||
|
def test_dellos10_config_before(self):
|
||||||
|
set_module_args(dict(lines=['hostname foo'], before=['snmp-server contact bar']))
|
||||||
|
commands = ['snmp-server contact bar', 'hostname foo']
|
||||||
|
self.execute_module(changed=True, commands=commands, sort=False)
|
||||||
|
|
||||||
|
def test_dellos10_config_after(self):
|
||||||
|
set_module_args(dict(lines=['hostname foo'], after=['snmp-server contact bar']))
|
||||||
|
commands = ['hostname foo', 'snmp-server contact bar']
|
||||||
|
self.execute_module(changed=True, commands=commands, sort=False)
|
||||||
|
|
||||||
|
def test_dellos10_config_before_after_no_change(self):
|
||||||
|
set_module_args(dict(lines=['hostname router'],
|
||||||
|
before=['snmp-server contact bar'],
|
||||||
|
after=['snmp-server location chennai']))
|
||||||
|
self.execute_module()
|
||||||
|
|
||||||
|
def test_dellos10_config_config(self):
|
||||||
|
config = 'hostname localhost'
|
||||||
|
set_module_args(dict(lines=['hostname router'], config=config))
|
||||||
|
commands = ['hostname router']
|
||||||
|
self.execute_module(changed=True, commands=commands)
|
||||||
|
|
||||||
|
def test_dellos10_config_replace_block(self):
|
||||||
|
lines = ['description test string', 'test string']
|
||||||
|
parents = ['interface ethernet1/1/2']
|
||||||
|
set_module_args(dict(lines=lines, replace='block', parents=parents))
|
||||||
|
commands = parents + lines
|
||||||
|
self.execute_module(changed=True, commands=commands)
|
||||||
|
|
||||||
|
def test_dellos10_config_match_none(self):
|
||||||
|
lines = ['hostname router']
|
||||||
|
set_module_args(dict(lines=lines, match='none'))
|
||||||
|
self.execute_module(changed=True, commands=lines)
|
||||||
|
|
||||||
|
def test_dellos10_config_match_none(self):
|
||||||
|
lines = ['ip address 1.2.3.4/24', 'description test string']
|
||||||
|
parents = ['interface ethernet1/1/2']
|
||||||
|
set_module_args(dict(lines=lines, parents=parents, match='none'))
|
||||||
|
commands = parents + lines
|
||||||
|
self.execute_module(changed=True, commands=commands, sort=False)
|
||||||
|
|
||||||
|
def test_dellos10_config_match_strict(self):
|
||||||
|
lines = ['ip address 1.2.3.4/24', 'description test string',
|
||||||
|
'shutdown']
|
||||||
|
parents = ['interface ethernet1/1/2']
|
||||||
|
set_module_args(dict(lines=lines, parents=parents, match='strict'))
|
||||||
|
commands = parents + ['shutdown']
|
||||||
|
self.execute_module(changed=True, commands=commands, sort=False)
|
||||||
|
|
||||||
|
def test_dellos10_config_match_exact(self):
|
||||||
|
lines = ['ip address 1.2.3.4/24', 'description test string',
|
||||||
|
'shutdown']
|
||||||
|
parents = ['interface ethernet1/1/2']
|
||||||
|
set_module_args(dict(lines=lines, parents=parents, match='exact'))
|
||||||
|
commands = parents + lines
|
||||||
|
self.execute_module(changed=True, commands=commands, sort=False)
|
109
test/units/modules/network/dellos10/test_dellos10_facts.py
Normal file
109
test/units/modules/network/dellos10/test_dellos10_facts.py
Normal file
|
@ -0,0 +1,109 @@
|
||||||
|
# (c) 2016 Red Hat Inc.
|
||||||
|
#
|
||||||
|
# (c) 2017 Dell EMC.
|
||||||
|
#
|
||||||
|
# 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
|
||||||
|
|
||||||
|
import json
|
||||||
|
|
||||||
|
from ansible.compat.tests.mock import patch
|
||||||
|
from units.modules.utils import set_module_args
|
||||||
|
from .dellos10_module import TestDellos10Module, load_fixture
|
||||||
|
from ansible.modules.network.dellos10 import dellos10_facts
|
||||||
|
|
||||||
|
|
||||||
|
class TestDellos10Facts(TestDellos10Module):
|
||||||
|
|
||||||
|
module = dellos10_facts
|
||||||
|
|
||||||
|
def setUp(self):
|
||||||
|
super(TestDellos10Facts, self).setUp()
|
||||||
|
|
||||||
|
self.mock_run_command = patch(
|
||||||
|
'ansible.modules.network.dellos10.dellos10_facts.run_commands')
|
||||||
|
self.run_command = self.mock_run_command.start()
|
||||||
|
|
||||||
|
def tearDown(self):
|
||||||
|
super(TestDellos10Facts, self).tearDown()
|
||||||
|
|
||||||
|
self.mock_run_command.stop()
|
||||||
|
|
||||||
|
def load_fixtures(self, commands=None):
|
||||||
|
|
||||||
|
def load_from_file(*args, **kwargs):
|
||||||
|
module, commands = args
|
||||||
|
output = list()
|
||||||
|
|
||||||
|
for item in commands:
|
||||||
|
try:
|
||||||
|
obj = json.loads(item)
|
||||||
|
command = obj['command']
|
||||||
|
except ValueError:
|
||||||
|
command = item
|
||||||
|
if '|' in command:
|
||||||
|
command = str(command).replace('|', '')
|
||||||
|
filename = str(command).replace(' ', '_')
|
||||||
|
filename = filename.replace('/', '7')
|
||||||
|
output.append(load_fixture(filename))
|
||||||
|
return output
|
||||||
|
|
||||||
|
self.run_command.side_effect = load_from_file
|
||||||
|
|
||||||
|
def test_dellos10_facts_gather_subset_default(self):
|
||||||
|
set_module_args(dict())
|
||||||
|
result = self.execute_module()
|
||||||
|
ansible_facts = result['ansible_facts']
|
||||||
|
self.assertIn('hardware', ansible_facts['ansible_net_gather_subset'])
|
||||||
|
self.assertIn('default', ansible_facts['ansible_net_gather_subset'])
|
||||||
|
self.assertIn('interfaces', ansible_facts['ansible_net_gather_subset'])
|
||||||
|
self.assertEquals('os10', ansible_facts['ansible_net_hostname'])
|
||||||
|
self.assertIn('ethernet1/1/8', ansible_facts['ansible_net_interfaces'].keys())
|
||||||
|
self.assertEquals(7936, ansible_facts['ansible_net_memtotal_mb'])
|
||||||
|
self.assertEquals(5693, ansible_facts['ansible_net_memfree_mb'])
|
||||||
|
|
||||||
|
def test_dellos10_facts_gather_subset_config(self):
|
||||||
|
set_module_args({'gather_subset': 'config'})
|
||||||
|
result = self.execute_module()
|
||||||
|
ansible_facts = result['ansible_facts']
|
||||||
|
self.assertIn('default', ansible_facts['ansible_net_gather_subset'])
|
||||||
|
self.assertIn('config', ansible_facts['ansible_net_gather_subset'])
|
||||||
|
self.assertEquals('os10', ansible_facts['ansible_net_hostname'])
|
||||||
|
self.assertIn('ansible_net_config', ansible_facts)
|
||||||
|
|
||||||
|
def test_dellos10_facts_gather_subset_hardware(self):
|
||||||
|
set_module_args({'gather_subset': 'hardware'})
|
||||||
|
result = self.execute_module()
|
||||||
|
ansible_facts = result['ansible_facts']
|
||||||
|
self.assertIn('default', ansible_facts['ansible_net_gather_subset'])
|
||||||
|
self.assertIn('hardware', ansible_facts['ansible_net_gather_subset'])
|
||||||
|
self.assertEquals('x86_64', ansible_facts['ansible_net_cpu_arch'])
|
||||||
|
self.assertEquals(7936, ansible_facts['ansible_net_memtotal_mb'])
|
||||||
|
self.assertEquals(5693, ansible_facts['ansible_net_memfree_mb'])
|
||||||
|
|
||||||
|
def test_dellos10_facts_gather_subset_interfaces(self):
|
||||||
|
set_module_args({'gather_subset': 'interfaces'})
|
||||||
|
result = self.execute_module()
|
||||||
|
ansible_facts = result['ansible_facts']
|
||||||
|
self.assertIn('default', ansible_facts['ansible_net_gather_subset'])
|
||||||
|
self.assertIn('interfaces', ansible_facts['ansible_net_gather_subset'])
|
||||||
|
self.assertIn('ethernet1/1/8', ansible_facts['ansible_net_interfaces'].keys())
|
||||||
|
self.assertEquals(sorted(['mgmt1/1/1', 'ethernet1/1/4', 'ethernet1/1/2', 'ethernet1/1/3', 'ethernet1/1/1']),
|
||||||
|
sorted(list(ansible_facts['ansible_net_neighbors'].keys())))
|
||||||
|
self.assertIn('ansible_net_interfaces', ansible_facts)
|
Loading…
Reference in a new issue