9eb7709c61
* Vyos static route module added Signed-off-by: rohitthakur2590 <rohitthakur2590@outlook.com> * sanity fixes Signed-off-by: rohitthakur2590 <rohitthakur2590@outlook.com> * empty config traceback fix Signed-off-by: rohitthakur2590 <rohitthakur2590@outlook.com> * sanity check fix * model specific changes and SI test cases updated Signed-off-by: rohitthakur2590 <rohitthakur2590@outlook.com> * new state changes and SI test cases updated Signed-off-by: rohitthakur2590 <rohitthakur2590@outlook.com> * sanity fixes Signed-off-by: rohitthakur2590 <rohitthakur2590@outlook.com> * UT cases added Signed-off-by: rohitthakur2590 <rohitthakur2590@outlook.com> * replaced operation fix Signed-off-by: rohitthakur2590 <rohitthakur2590@outlook.com> * review comments incorporated Signed-off-by: rohitthakur2590 <rohitthakur2590@outlook.com> * shippable fix Signed-off-by: rohitthakur2590 <rohitthakur2590@outlook.com> * sanity fix Signed-off-by: rohitthakur2590 <rohitthakur2590@outlook.com> * delete opr updated Signed-off-by: rohitthakur2590 <rohitthakur2590@outlook.com> * comments incorporated Signed-off-by: rohitthakur2590 <rohitthakur2590@outlook.com>
39 lines
1.1 KiB
YAML
39 lines
1.1 KiB
YAML
---
|
|
- debug:
|
|
msg: "START vyos_static_routes parsed integration tests on connection={{ ansible_connection }}"
|
|
|
|
- include_tasks: _remove_config.yaml
|
|
|
|
- include_tasks: _populate.yaml
|
|
|
|
- block:
|
|
- name: Gather static_routes facts
|
|
vyos_facts:
|
|
gather_subset:
|
|
- default
|
|
gather_network_resources:
|
|
- static_routes
|
|
register: static_routes_facts
|
|
|
|
- name: Provide the running configuration for parsing (config to be parsed)
|
|
vyos_static_routes: &parsed
|
|
running_config:
|
|
"{{ lookup('file', '_parsed_config.cfg') }}"
|
|
state: parsed
|
|
register: result
|
|
|
|
- name: Assert that correct parsing done
|
|
assert:
|
|
that: "{{ ansible_facts['network_resources']['static_routes'] | symmetric_difference(result['parsed']) |length == 0 }}"
|
|
|
|
- name: Gather the existing running configuration (IDEMPOTENT)
|
|
vyos_static_routes: *parsed
|
|
register: result
|
|
|
|
- name: Assert that the previous task was idempotent
|
|
assert:
|
|
that:
|
|
- "result['changed'] == false"
|
|
|
|
always:
|
|
- include_tasks: _remove_config.yaml
|