summaryrefslogtreecommitdiff
path: root/test/integration/targets/junos_lldp_interfaces/tests/netconf
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/junos_lldp_interfaces/tests/netconf')
-rw-r--r--test/integration/targets/junos_lldp_interfaces/tests/netconf/_remove_config.yaml11
-rw-r--r--test/integration/targets/junos_lldp_interfaces/tests/netconf/deleted.yaml87
-rw-r--r--test/integration/targets/junos_lldp_interfaces/tests/netconf/merged.yaml58
-rw-r--r--test/integration/targets/junos_lldp_interfaces/tests/netconf/overridden.yaml63
-rw-r--r--test/integration/targets/junos_lldp_interfaces/tests/netconf/replaced.yaml66
-rw-r--r--test/integration/targets/junos_lldp_interfaces/tests/netconf/rtt.yaml72
6 files changed, 0 insertions, 357 deletions
diff --git a/test/integration/targets/junos_lldp_interfaces/tests/netconf/_remove_config.yaml b/test/integration/targets/junos_lldp_interfaces/tests/netconf/_remove_config.yaml
deleted file mode 100644
index 3ab8d02f21..0000000000
--- a/test/integration/targets/junos_lldp_interfaces/tests/netconf/_remove_config.yaml
+++ /dev/null
@@ -1,11 +0,0 @@
----
-- debug:
- msg: "Start junos_lldp_interfaces deleted remove interface config ansible_connection={{ ansible_connection }}"
-
-- name: "Setup - remove lldp interfaces config"
- junos_config:
- lines:
- - delete protocols lldp
-
-- debug:
- msg: "End junos_lldp_interfaces deleted remove interface config ansible_connection={{ ansible_connection }}"
diff --git a/test/integration/targets/junos_lldp_interfaces/tests/netconf/deleted.yaml b/test/integration/targets/junos_lldp_interfaces/tests/netconf/deleted.yaml
deleted file mode 100644
index a9468bf9f4..0000000000
--- a/test/integration/targets/junos_lldp_interfaces/tests/netconf/deleted.yaml
+++ /dev/null
@@ -1,87 +0,0 @@
----
-- debug:
- msg: "START junos_lldp_interfaces deleted integration tests on connection={{ ansible_connection }}"
-
-- name: get supported protocols
- junos_command:
- commands: show lldp
- register: result
- ignore_errors: yes
-
-- name: lldp supported
- set_fact:
- lldp_supported: True
- when: not result.failed
-
-- name: lldp not supported
- set_fact:
- lldp_supported: False
- when: result.failed
-
-- block:
- - include_tasks: _remove_config.yaml
-
- - set_fact:
- expected_deleted_output:
- - name: ge-0/0/1
-
- - name: Configure initial state for lldp interfaces
- junos_lldp_interfaces: &initial
- config:
- - name: ge-0/0/1
- - name: ge-0/0/2
- enabled: False
- state: merged
- register: result
-
- - name: Delete the provided lldp interface configuration from running configuration
- junos_lldp_interfaces: &deleted
- config:
- - 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 lldp interface configuration from running configuration (IDEMPOTENT)
- junos_lldp_interfaces: *deleted
- register: result
-
- - name: Assert that the previous task was idempotent
- assert:
- that:
- - "result['changed'] == false"
-
- - name: Configure initial state for interface
- junos_lldp_interfaces: *initial
- register: result
-
- - name: Delete the all lldp interface configuration from running configuration
- junos_lldp_interfaces:
- state: deleted
- register: result
-
- - name: Assert the configuration is reflected on host
- assert:
- that:
- - "{{ result['after'] == []}}"
-
- - name: Delete the all lldp interface configuration from running configuration (IDEMPOTENT)
- junos_lldp_interfaces:
- state: deleted
- register: result
-
- - name: Assert that the previous task was idempotent
- assert:
- that:
- - "result['changed'] == false"
-
- always:
- - include_tasks: _remove_config.yaml
- when: lldp_supported
-
-- debug:
- msg: "END junos_lldp_interfaces deleted integration tests on connection={{ ansible_connection }}"
diff --git a/test/integration/targets/junos_lldp_interfaces/tests/netconf/merged.yaml b/test/integration/targets/junos_lldp_interfaces/tests/netconf/merged.yaml
deleted file mode 100644
index 125e2a30ec..0000000000
--- a/test/integration/targets/junos_lldp_interfaces/tests/netconf/merged.yaml
+++ /dev/null
@@ -1,58 +0,0 @@
----
-- debug:
- msg: "START junos_lldp_interfaces merged integration tests on connection={{ ansible_connection }}"
-
-- name: get supported protocols
- junos_command:
- commands: show lldp
- register: result
- ignore_errors: yes
-
-- name: lldp supported
- set_fact:
- lldp_supported: True
- when: not result.failed
-
-- name: lldp not supported
- set_fact:
- lldp_supported: False
- when: result.failed
-
-- block:
- - include_tasks: _remove_config.yaml
-
- - set_fact:
- expected_merged_output:
- - name: ge-0/0/1
- - name: ge-0/0/2
- enabled: False
-
- - name: Merge the provided configuration with the exisiting running configuration
- junos_lldp_interfaces: &merged
- config:
- - name: ge-0/0/1
- - name: ge-0/0/2
- enabled: False
- state: merged
- register: result
-
- - name: Assert the configuration is reflected on host
- assert:
- that:
- - "{{ expected_merged_output | symmetric_difference(result['after']) |length == 0 }}"
-
- - name: Merge the provided configuration with the existing running configuration (IDEMPOTENT)
- junos_lldp_interfaces: *merged
- register: result
-
- - name: Assert that the previous task was idempotent
- assert:
- that:
- - "result['changed'] == false"
-
- always:
- - include_tasks: _remove_config.yaml
- when: lldp_supported
-
-- debug:
- msg: "END junos_lldp_interfaces merged integration tests on connection={{ ansible_connection }}"
diff --git a/test/integration/targets/junos_lldp_interfaces/tests/netconf/overridden.yaml b/test/integration/targets/junos_lldp_interfaces/tests/netconf/overridden.yaml
deleted file mode 100644
index bbe06d4c92..0000000000
--- a/test/integration/targets/junos_lldp_interfaces/tests/netconf/overridden.yaml
+++ /dev/null
@@ -1,63 +0,0 @@
----
-- debug:
- msg: "START junos_lldp_interfaces overridden integration tests on connection={{ ansible_connection }}"
-
-- name: get supported protocols
- junos_command:
- commands: show lldp
- register: result
- ignore_errors: yes
-
-- name: lldp supported
- set_fact:
- lldp_supported: True
- when: not result.failed
-
-- name: lldp not supported
- set_fact:
- lldp_supported: False
- when: result.failed
-
-- block:
- - include_tasks: _remove_config.yaml
-
- - set_fact:
- expected_overridden_output:
- - name: ge-0/0/2
-
- - name: Configure initial state for interface
- junos_lldp_interfaces:
- config:
- - name: ge-0/0/1
- - name: ge-0/0/2
- enabled: False
- state: merged
- register: result
-
- - name: Override the provided configuration with the exisiting running configuration
- junos_lldp_interfaces: &overridden
- config:
- - name: ge-0/0/2
- 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_lldp_interfaces: *overridden
- register: result
-
- - name: Assert that the previous task was idempotent
- assert:
- that:
- - "result['changed'] == false"
-
- always:
- - include_tasks: _remove_config.yaml
- when: lldp_supported
-
-- debug:
- msg: "END junos_lldp_interfaces overridden integration tests on connection={{ ansible_connection }}"
diff --git a/test/integration/targets/junos_lldp_interfaces/tests/netconf/replaced.yaml b/test/integration/targets/junos_lldp_interfaces/tests/netconf/replaced.yaml
deleted file mode 100644
index 4c87a563c3..0000000000
--- a/test/integration/targets/junos_lldp_interfaces/tests/netconf/replaced.yaml
+++ /dev/null
@@ -1,66 +0,0 @@
----
-- debug:
- msg: "START junos_lldp_interfaces replaced integration tests on connection={{ ansible_connection }}"
-
-- name: get supported protocols
- junos_command:
- commands: show lldp
- register: result
- ignore_errors: yes
-
-- name: lldp supported
- set_fact:
- lldp_supported: True
- when: not result.failed
-
-- name: lldp not supported
- set_fact:
- lldp_supported: False
- when: result.failed
-
-- block:
- - include_tasks: _remove_config.yaml
-
- - set_fact:
- expected_replaced_output:
- - name: ge-0/0/1
- enabled: False
- - name: ge-0/0/2
- enabled: False
-
- - name: Configure initial state for interface
- junos_lldp_interfaces:
- config:
- - name: ge-0/0/1
- - name: ge-0/0/2
- enabled: False
- register: result
-
- - name: Replace the provided configuration with the exisiting running configuration
- junos_lldp_interfaces: &replaced
- config:
- - name: ge-0/0/1
- enabled: False
- state: replaced
- register: result
-
- - name: Assert the configuration is reflected on host
- assert:
- that:
- - "{{ expected_replaced_output | symmetric_difference(result['after']) |length == 0 }}"
-
- - name: Replace the provided configuration with the existing running configuration (IDEMPOTENT)
- junos_lldp_interfaces: *replaced
- register: result
-
- - name: Assert that the previous task was idempotent
- assert:
- that:
- - "result['changed'] == false"
-
- always:
- - include_tasks: _remove_config.yaml
- when: lldp_supported
-
-- debug:
- msg: "END junos_lldp_interfaces replaced integration tests on connection={{ ansible_connection }}"
diff --git a/test/integration/targets/junos_lldp_interfaces/tests/netconf/rtt.yaml b/test/integration/targets/junos_lldp_interfaces/tests/netconf/rtt.yaml
deleted file mode 100644
index 9752693163..0000000000
--- a/test/integration/targets/junos_lldp_interfaces/tests/netconf/rtt.yaml
+++ /dev/null
@@ -1,72 +0,0 @@
----
-- debug:
- msg: "START junos_lldp_interfaces round trip integration tests on connection={{ ansible_connection }}"
-
-- name: get supported protocols
- junos_command:
- commands: show lldp
- register: result
- ignore_errors: yes
-
-- name: lldp supported
- set_fact:
- lldp_supported: True
- when: not result.failed
-
-- name: lldp not supported
- set_fact:
- lldp_supported: False
- when: result.failed
-
-- block:
- - include_tasks: _remove_config.yaml
-
- - set_fact:
- expected_revert_output:
- - name: ge-0/0/1
- - name: ge-0/0/2
- enabled: False
-
- - name: Apply the provided configuration (base config)
- junos_lldp_interfaces:
- config:
- - name: ge-0/0/1
- - name: ge-0/0/2
- enabled: False
- state: merged
- register: base_config
-
- - name: Gather interfaces facts
- junos_facts:
- gather_subset:
- - default
- gather_network_resources:
- - lldp_interfaces
-
- - name: Apply the provided configuration (config to be reverted)
- junos_lldp_interfaces:
- config:
- - name: ge-0/0/2
- state: overridden
- register: result
-
- - name: Assert that changes were applied
- assert:
- that: "result['changed'] == true"
-
- - name: Revert back to base config using facts round trip
- junos_lldp_interfaces:
- config: "{{ ansible_facts['network_resources']['lldp_interfaces'] }}"
- state: replaced
- register: revert
-
- - name: Assert that config was reverted
- assert:
- that: "{{ expected_revert_output | symmetric_difference(revert['after']) |length == 0 }}"
-
- always:
- - include_tasks: _remove_config.yaml
- when: lldp_supported
-
-- debug:
- msg: "END junos_lldp_interfaces round trip integration tests on connection={{ ansible_connection }}"