ansible/test/integration/targets/junos_interfaces/tests/netconf/deleted.yaml
Ganesh Nalawade a9a5f4e40d
Change enable to enabled for junos_interfaces module (#62321)
Fixes #62319

Change `enable` option to `enabled` in junos_interfaces
and junos_lldp_interfaces
data model to be in sync with other network platform
resource modules added in 2.9 version.
2019-09-16 12:17:27 +05:30

85 lines
2.4 KiB
YAML

---
- debug:
msg: "START junos_interfaces deleted integration tests on connection={{ ansible_connection }}"
- include_tasks: _remove_config.yaml
- set_fact:
expected_deleted_output:
- name: fxp0
enabled: true
- block:
- name: Configure initial state for interface
junos_interfaces: &initial
config:
- name: ge-0/0/1
description: "Configured by Ansible - Interface 1"
mtu: 1024
speed: 100m
enabled: False
duplex: full-duplex
hold_time:
up: 2000
down: 2200
- name: ge-0/0/2
description: "Configured by Ansible - Interface 2"
mtu: 2048
speed: 10m
hold_time:
up: 3000
down: 3200
state: merged
register: result
- name: Delete the provided interface configuration from running configuration
junos_interfaces: &deleted
config:
- name: ge-0/0/1
- name: ge-0/0/2
state: deleted
register: result
- name: Assert the configuration is reflected on host
assert:
that:
- "{{ expected_deleted_output | symmetric_difference(result['after']) |length == 0 }}"
- name: Delete the provided interface configuration from running configuration (IDEMPOTENT)
junos_interfaces: *deleted
register: result
- name: Assert that the previous task was idempotent
assert:
that:
- "result['changed'] == false"
- name: Configure initial state for interface
junos_interfaces: *initial
register: result
- name: Delete the all interface configuration from running configuration
junos_interfaces:
state: deleted
register: result
- name: Assert the configuration is reflected on host
assert:
that:
- "{{ expected_deleted_output | symmetric_difference(result['after']) |length == 0 }}"
- name: Delete the all interface configuration from running configuration (IDEMPOTENT)
junos_interfaces:
state: deleted
register: result
- name: Assert that the previous task was idempotent
assert:
that:
- "result['changed'] == false"
always:
- include_tasks: _remove_config.yaml
- debug:
msg: "END junos_interfaces deleted integration tests on connection={{ ansible_connection }}"