730fa78ca4
Signed-off-by: NilashishC <nilashishchakraborty8@gmail.com>
52 lines
1.6 KiB
YAML
52 lines
1.6 KiB
YAML
---
|
|
- debug:
|
|
msg: "START vyos_interfaces overridden integration tests on connection={{ ansible_connection }}"
|
|
|
|
- include_tasks: _remove_config.yaml
|
|
|
|
- include_tasks: _populate.yaml
|
|
|
|
- block:
|
|
- name: Overrides all device configuration with provided configuration
|
|
vyos_interfaces: &overridden
|
|
config:
|
|
- name: eth0
|
|
speed: "auto"
|
|
duplex: "auto"
|
|
- name: eth2
|
|
description: "Overridden by Ansible"
|
|
mtu: 1200
|
|
state: overridden
|
|
register: result
|
|
|
|
- name: Assert that before dicts were correctly generated
|
|
assert:
|
|
that:
|
|
- "{{ populate | symmetric_difference(result['before']) |length == 0 }}"
|
|
|
|
- name: Assert that correct commands were generated
|
|
assert:
|
|
that:
|
|
- "{{ overridden['commands'] | symmetric_difference(result['commands']) |length == 0 }}"
|
|
|
|
- name: Assert that after dicts were correctly generated
|
|
assert:
|
|
that:
|
|
- "{{ overridden['after'] | symmetric_difference(result['after']) |length == 0 }}"
|
|
|
|
- name: Overrides all device configuration with provided configurations (IDEMPOTENT)
|
|
vyos_interfaces: *overridden
|
|
register: result
|
|
|
|
- name: Assert that the previous task was idempotent
|
|
assert:
|
|
that:
|
|
- "result['changed'] == false"
|
|
|
|
- name: Assert that before dicts were correctly generated
|
|
assert:
|
|
that:
|
|
- "{{ overridden['after'] | symmetric_difference(result['before']) |length == 0 }}"
|
|
|
|
always:
|
|
- include_tasks: _remove_config.yaml
|