7f5d1ab2b7
* Eh, 2.10 is close enough * drop top-level authorize * Remove from documentation * Remove load_params * Centralize this junos thing * Fixup user modules * I'm 95% sure this did not do what it was supposed to * nxos_hsrp: I don't think this is an actual module parameter * Try to fix junos_package tests * Move local params to provider * Promote 'timeout' to a real parameter for eos_eapi * Don't assume provider exists? * move another timeout * Provider now always has auth_pass * Fix junos tests to avoid NameErrors
66 lines
1.5 KiB
YAML
66 lines
1.5 KiB
YAML
---
|
|
# eos_static_route -> remove_default_spec, validate_ip_address, validate_prefix
|
|
# eos_interface -> conditional
|
|
# eos_command -> ComplexList
|
|
|
|
- debug: msg="START cli/common_utils.yaml on connection={{ ansible_connection }}"
|
|
|
|
# hit remove_default_spec() validate_ip_address() validate_prefix() ComplexList
|
|
- name: setup - remove config used in test
|
|
eos_config:
|
|
lines:
|
|
- no ip route 192.168.3.0/24 192.168.0.1
|
|
provider: "{{ eapi }}"
|
|
become: yes
|
|
|
|
- name: configure static route
|
|
eos_static_route:
|
|
address: 192.168.3.0/24
|
|
next_hop: 192.168.0.1
|
|
admin_distance: 2
|
|
provider: "{{ eapi }}"
|
|
become: yes
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == true"
|
|
- "'ip route 192.168.3.0/24 192.168.0.1 2' in result.commands"
|
|
|
|
- name: configure static route
|
|
eos_static_route:
|
|
address: 192.168.3.0/250
|
|
next_hop: 192.168.0.1
|
|
admin_distance: 2
|
|
provider: "{{ eapi }}"
|
|
become: yes
|
|
register: result
|
|
ignore_errors: yes
|
|
|
|
- assert:
|
|
that:
|
|
- "result.failed == true"
|
|
|
|
- name: teardown
|
|
eos_config:
|
|
lines:
|
|
- no ip route 192.168.3.0/24 192.168.0.1
|
|
provider: "{{ eapi }}"
|
|
become: yes
|
|
|
|
- debug: msg="END cli/common_utils.yaml on connection={{ ansible_connection }}"
|
|
|
|
# hit conditional()
|
|
- name: Set test interface
|
|
set_fact:
|
|
test_interface_1: ethernet1
|
|
|
|
- name: Check intent arguments
|
|
eos_interface:
|
|
name: "{{ test_interface_1 }}"
|
|
state: up
|
|
tx_rate: ge(0)
|
|
rx_rate: ge(0)
|
|
provider: "{{ eapi }}"
|
|
become: yes
|
|
register: result
|