38 lines
1 KiB
YAML
38 lines
1 KiB
YAML
|
---
|
||
|
- debug:
|
||
|
msg: "START junos_static_routes deleted integration tests on connection={{ ansible_connection }}"
|
||
|
|
||
|
- include_tasks: _remove_config.yaml
|
||
|
- include_tasks: _base_config.yaml
|
||
|
|
||
|
- block:
|
||
|
- name: Delete the provided configuration with the exisiting running configuration
|
||
|
junos_static_routes: &deleted
|
||
|
config:
|
||
|
- address_families:
|
||
|
- afi: 'ipv4'
|
||
|
- afi: 'ipv6'
|
||
|
state: deleted
|
||
|
register: result
|
||
|
|
||
|
- name: Assert the configuration is reflected on host
|
||
|
assert:
|
||
|
that:
|
||
|
- not result.after
|
||
|
debugger: on_failed
|
||
|
|
||
|
- name: Delete the provided configuration with the existing running configuration (IDEMPOTENT)
|
||
|
junos_static_routes: *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_static_routes deleted integration tests on connection={{ ansible_connection }}"
|