summaryrefslogtreecommitdiff
path: root/test/integration/targets/junos_interfaces/tests/netconf/overridden.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/junos_interfaces/tests/netconf/overridden.yaml')
-rw-r--r--test/integration/targets/junos_interfaces/tests/netconf/overridden.yaml64
1 files changed, 0 insertions, 64 deletions
diff --git a/test/integration/targets/junos_interfaces/tests/netconf/overridden.yaml b/test/integration/targets/junos_interfaces/tests/netconf/overridden.yaml
deleted file mode 100644
index 150561d1ff..0000000000
--- a/test/integration/targets/junos_interfaces/tests/netconf/overridden.yaml
+++ /dev/null
@@ -1,64 +0,0 @@
----
-- debug:
- msg: "START junos_interfaces overridden integration tests on connection={{ ansible_connection }}"
-
-- include_tasks: _remove_config.yaml
-
-- set_fact:
- expected_overridden_output:
- - name: ge-0/0/1
- description: "Overridden by Ansible - Interface 1"
- enabled: true
- - name: fxp0
- enabled: true
-
-- block:
- - name: Configure initial state for interface
- junos_interfaces:
- 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: Override the provided configuration with the exisiting running configuration
- junos_interfaces: &overridden
- config:
- - name: ge-0/0/1
- description: "Overridden by Ansible - Interface 1"
- state: overridden
- register: result
-
- - name: Assert the configuration is reflected on host
- assert:
- that:
- - "{{ expected_overridden_output | symmetric_difference(result['after']) |length == 0 }}"
-
- - name: Override the provided configuration with the existing running configuration (IDEMPOTENT)
- junos_interfaces: *overridden
- 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 overridden integration tests on connection={{ ansible_connection }}"