4fe08441be
* Warn on tests used as filters * Update docs, add aliases for tests that fit more gramatically with test syntax * Fix rst formatting * Add successful filter, alias of success * Remove renamed_deprecation, it was overkill * Make directory alias for is_dir * Update tests to use proper jinja test syntax * Update additional documentation, living outside of YAML files, to reflect proper jinja test syntax * Add conversion script, porting guide updates, and changelog updates * Update newly added uses of tests as filters * No underscore variable * Convert recent tests as filter changes to win_stat * Fix some changes related to rebasing a few integration tests * Make tests_as_filters_warning explicitly accept the name of the test, instead of inferring the name * Add test for tests_as_filters_warning * Update tests as filters in newly added/modified tests * Address recent changes to several integration tests * Address recent changes in cs_vpc
255 lines
7 KiB
YAML
255 lines
7 KiB
YAML
---
|
|
- debug: msg="START junos_l3_interface netconf/basic.yaml"
|
|
|
|
- name: setup - remove interface address
|
|
junos_l3_interface:
|
|
name: ge-0/0/1
|
|
ipv4: 1.1.1.1
|
|
ipv6: fd5d:12c9:2201:1::1
|
|
state: absent
|
|
provider: "{{ netconf }}"
|
|
|
|
- name: Configure interface address
|
|
junos_l3_interface:
|
|
name: ge-0/0/1
|
|
ipv4: 1.1.1.1
|
|
ipv6: fd5d:12c9:2201:1::1
|
|
state: present
|
|
provider: "{{ netconf }}"
|
|
register: result
|
|
|
|
- name: Get running configuration
|
|
junos_rpc:
|
|
rpc: get-configuration
|
|
provider: "{{ netconf }}"
|
|
register: config
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == true"
|
|
- "'<name>1.1.1.1/32</name>' in config.xml"
|
|
- "'<name>fd5d:12c9:2201:1::1/128</name>' in config.xml"
|
|
- result.diff.prepared is search("\+ *address 1.1.1.1/32")
|
|
- result.diff.prepared is search("\+ *address fd5d:12c9:2201:1::1/128")
|
|
|
|
- name: Configure interface address (idempotent)
|
|
junos_l3_interface:
|
|
name: ge-0/0/1
|
|
ipv4: 1.1.1.1
|
|
ipv6: fd5d:12c9:2201:1::1
|
|
state: present
|
|
provider: "{{ netconf }}"
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == false"
|
|
|
|
- name: Deactivate interface address
|
|
junos_l3_interface:
|
|
name: ge-0/0/1
|
|
ipv4: 1.1.1.1
|
|
ipv6: fd5d:12c9:2201:1::1
|
|
state: present
|
|
active: False
|
|
provider: "{{ netconf }}"
|
|
register: result
|
|
|
|
- name: Get running configuration
|
|
junos_rpc:
|
|
rpc: get-configuration
|
|
provider: "{{ netconf }}"
|
|
register: config
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == true"
|
|
- "'<address inactive=\"inactive\">' in config.xml"
|
|
- result.diff.prepared is search("! *inactive[:] address 1.1.1.1/32")
|
|
- result.diff.prepared is search("! *inactive[:] address fd5d:12c9:2201:1::1/128")
|
|
|
|
- name: Activate interface address
|
|
junos_l3_interface:
|
|
name: ge-0/0/1
|
|
ipv4: 1.1.1.1
|
|
ipv6: fd5d:12c9:2201:1::1
|
|
state: present
|
|
active: True
|
|
provider: "{{ netconf }}"
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == true"
|
|
- result.diff.prepared is search("! *active[:] address 1.1.1.1/32")
|
|
- result.diff.prepared is search("! *active[:] address fd5d:12c9:2201:1::1/128")
|
|
|
|
- name: Delete interface address
|
|
junos_l3_interface:
|
|
name: ge-0/0/1
|
|
ipv4: 1.1.1.1
|
|
ipv6: fd5d:12c9:2201:1::1
|
|
state: absent
|
|
provider: "{{ netconf }}"
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- result.diff.prepared is search("\- *address 1.1.1.1/32")
|
|
- result.diff.prepared is search("\- *address fd5d:12c9:2201:1::1/128")
|
|
|
|
- name: Delete interface address (idempotent)
|
|
junos_l3_interface:
|
|
name: ge-0/0/1
|
|
ipv4: 1.1.1.1
|
|
ipv6: fd5d:12c9:2201:1::1
|
|
state: absent
|
|
provider: "{{ netconf }}"
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == false"
|
|
|
|
- name: Aggregate setup- delete interface ge-0/0/1
|
|
junos_l3_interface:
|
|
name: ge-0/0/1
|
|
ipv4: 1.1.1.1
|
|
ipv6: fd5d:12c9:2201:1::1
|
|
state: absent
|
|
provider: "{{ netconf }}"
|
|
register: result
|
|
|
|
- name: Aggregate setup- delete interface ge-0/0/2
|
|
junos_l3_interface:
|
|
name: ge-0/0/2
|
|
ipv4: 2.2.2.2
|
|
ipv6: fd5d:12c9:2201:2::2
|
|
state: absent
|
|
provider: "{{ netconf }}"
|
|
register: result
|
|
|
|
- name: Configure l3 interface in aggregate
|
|
junos_l3_interface:
|
|
aggregate:
|
|
- name: ge-0/0/1
|
|
ipv4: 1.1.1.1
|
|
ipv6: fd5d:12c9:2201:1::1
|
|
- name: ge-0/0/2
|
|
ipv4: 2.2.2.2
|
|
ipv6: fd5d:12c9:2201:2::2
|
|
provider: "{{ netconf }}"
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- 'result.changed == true'
|
|
- "'edit interfaces ge-0/0/1 unit 0 family inet' in result.diff.prepared"
|
|
- result.diff.prepared is search("\+ *address 1.1.1.1/32")
|
|
- "'edit interfaces ge-0/0/1 unit 0 family inet6' in result.diff.prepared"
|
|
- result.diff.prepared is search("\+ *address fd5d:12c9:2201:1::1/128")
|
|
- "'edit interfaces ge-0/0/2 unit 0 family inet' in result.diff.prepared"
|
|
- result.diff.prepared is search("\+ *address 2.2.2.2/32")
|
|
- "'edit interfaces ge-0/0/2 unit 0 family inet6' in result.diff.prepared"
|
|
- result.diff.prepared is search("\+ *address fd5d:12c9:2201:2::2/128")
|
|
|
|
- name: Configure l3 interface in aggregate (idempotent)
|
|
junos_l3_interface:
|
|
aggregate:
|
|
- name: ge-0/0/1
|
|
ipv4: 1.1.1.1
|
|
ipv6: fd5d:12c9:2201:1::1
|
|
- name: ge-0/0/2
|
|
ipv4: 2.2.2.2
|
|
ipv6: fd5d:12c9:2201:2::2
|
|
active: True
|
|
provider: "{{ netconf }}"
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- 'result.changed == false'
|
|
|
|
- name: Deactivate l3 interface configuration
|
|
junos_l3_interface:
|
|
aggregate:
|
|
- name: ge-0/0/1
|
|
ipv4: 1.1.1.1
|
|
ipv6: fd5d:12c9:2201:1::1
|
|
- name: ge-0/0/2
|
|
ipv4: 2.2.2.2
|
|
ipv6: fd5d:12c9:2201:2::2
|
|
active: False
|
|
provider: "{{ netconf }}"
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- 'result.changed == true'
|
|
- result.diff.prepared is search("! *inactive[:] address 1.1.1.1/32")
|
|
- result.diff.prepared is search("! *inactive[:] address fd5d:12c9:2201:1::1/128")
|
|
- result.diff.prepared is search("! *inactive[:] address 2.2.2.2/32")
|
|
- result.diff.prepared is search("! *inactive[:] address fd5d:12c9:2201:2::2/128")
|
|
|
|
- name: Activate l3 interface configuration
|
|
junos_l3_interface:
|
|
aggregate:
|
|
- name: ge-0/0/1
|
|
ipv4: 1.1.1.1
|
|
ipv6: fd5d:12c9:2201:1::1
|
|
- name: ge-0/0/2
|
|
ipv4: 2.2.2.2
|
|
ipv6: fd5d:12c9:2201:2::2
|
|
active: True
|
|
provider: "{{ netconf }}"
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- 'result.changed == true'
|
|
- result.diff.prepared is search("! *active[:] address 1.1.1.1/32")
|
|
- result.diff.prepared is search("! *active[:] address fd5d:12c9:2201:1::1/128")
|
|
- result.diff.prepared is search("! *active[:] address 2.2.2.2/32")
|
|
- result.diff.prepared is search("! *active[:] address fd5d:12c9:2201:2::2/128")
|
|
|
|
- name: Delete l3 interface configuration
|
|
junos_l3_interface:
|
|
aggregate:
|
|
- name: ge-0/0/1
|
|
ipv4: 1.1.1.1
|
|
ipv6: fd5d:12c9:2201:1::1
|
|
- name: ge-0/0/2
|
|
ipv4: 2.2.2.2
|
|
ipv6: fd5d:12c9:2201:2::2
|
|
state: absent
|
|
provider: "{{ netconf }}"
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- 'result.changed == true'
|
|
- "'edit interfaces ge-0/0/1 unit 0 family inet' in result.diff.prepared"
|
|
- result.diff.prepared is search("\- *address 1.1.1.1/32")
|
|
- "'edit interfaces ge-0/0/1 unit 0 family inet6' in result.diff.prepared"
|
|
- result.diff.prepared is search("\- *address fd5d:12c9:2201:1::1/128")
|
|
- "'edit interfaces ge-0/0/2 unit 0 family inet' in result.diff.prepared"
|
|
- result.diff.prepared is search("\- *address 2.2.2.2/32")
|
|
- "'edit interfaces ge-0/0/2 unit 0 family inet6' in result.diff.prepared"
|
|
- result.diff.prepared is search("\- *address fd5d:12c9:2201:2::2/128")
|
|
|
|
- name: Delete l3 interface configuration (idempotent)
|
|
junos_l3_interface:
|
|
aggregate:
|
|
- name: ge-0/0/1
|
|
ipv4: 1.1.1.1
|
|
ipv6: fd5d:12c9:2201:1::1
|
|
- name: ge-0/0/2
|
|
ipv4: 2.2.2.2
|
|
ipv6: fd5d:12c9:2201:2::2
|
|
state: absent
|
|
provider: "{{ netconf }}"
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- 'result.changed == false'
|