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
38 lines
940 B
YAML
38 lines
940 B
YAML
---
|
|
- debug: msg="START eos cli/net_vrf.yaml on connection={{ ansible_connection }}"
|
|
|
|
# Add minimal testcase to check args are passed correctly to
|
|
# implementation module and module run is successful.
|
|
|
|
- name: setup - remove vrf
|
|
net_vrf:
|
|
name: test
|
|
state: absent
|
|
provider: "{{ cli }}"
|
|
become: yes
|
|
|
|
- name: Create vrf using platform agnostic vrf module
|
|
net_vrf:
|
|
name: test
|
|
rd: 1:200
|
|
state: present
|
|
provider: "{{ cli }}"
|
|
become: yes
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == true"
|
|
- "'vrf definition test' in result.commands"
|
|
- "'rd 1:200' in result.commands"
|
|
# Ensure sessions contains epoc. Will fail after 18th May 2033
|
|
- "'ansible_1' in result.session_name"
|
|
|
|
- name: teardown - remove vrf
|
|
net_vrf:
|
|
name: test
|
|
state: absent
|
|
provider: "{{ cli }}"
|
|
become: yes
|
|
|
|
- debug: msg="END eos cli/net_vrf.yaml on connection={{ ansible_connection }}"
|