summaryrefslogtreecommitdiff
path: root/test/integration/targets/junos_lldp_global/tests
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/junos_lldp_global/tests')
-rw-r--r--test/integration/targets/junos_lldp_global/tests/netconf/_remove_config.yaml11
-rw-r--r--test/integration/targets/junos_lldp_global/tests/netconf/deleted.yaml63
-rw-r--r--test/integration/targets/junos_lldp_global/tests/netconf/merged.yaml61
-rw-r--r--test/integration/targets/junos_lldp_global/tests/netconf/replaced.yaml72
-rw-r--r--test/integration/targets/junos_lldp_global/tests/netconf/rtt.yaml79
5 files changed, 0 insertions, 286 deletions
diff --git a/test/integration/targets/junos_lldp_global/tests/netconf/_remove_config.yaml b/test/integration/targets/junos_lldp_global/tests/netconf/_remove_config.yaml
deleted file mode 100644
index bf6cad928e..0000000000
--- a/test/integration/targets/junos_lldp_global/tests/netconf/_remove_config.yaml
+++ /dev/null
@@ -1,11 +0,0 @@
----
-- debug:
- msg: "Start junos_lldp_global deleted remove interface config ansible_connection={{ ansible_connection }}"
-
-- name: "Setup - remove lldp global config"
- junos_config:
- lines:
- - delete protocols lldp
-
-- debug:
- msg: "End junos_lldp_global deleted remove interface config ansible_connection={{ ansible_connection }}"
diff --git a/test/integration/targets/junos_lldp_global/tests/netconf/deleted.yaml b/test/integration/targets/junos_lldp_global/tests/netconf/deleted.yaml
deleted file mode 100644
index 5c43d3040e..0000000000
--- a/test/integration/targets/junos_lldp_global/tests/netconf/deleted.yaml
+++ /dev/null
@@ -1,63 +0,0 @@
----
-- debug:
- msg: "START junos_lldp_global 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: Configure initial state for lldp global
- junos_lldp_global:
- config:
- interval: 10000
- address: 10.1.1.1
- transmit_delay: 400
- hold_multiplier: 10
- state: merged
- register: result
-
- - name: Delete the provided configuration from running configuration
- junos_lldp_global: &deleted
- config:
- state: deleted
- register: result
-
- - name: Assert the configuration is reflected on host
- assert:
- that:
- - "{{ result['after'] == {} }}"
-
- - name: Delete the provided configuration from running configuration (IDEMPOTENT)
- junos_lldp_global: *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_global deleted integration tests on connection={{ ansible_connection }}"
diff --git a/test/integration/targets/junos_lldp_global/tests/netconf/merged.yaml b/test/integration/targets/junos_lldp_global/tests/netconf/merged.yaml
deleted file mode 100644
index 08967d5c12..0000000000
--- a/test/integration/targets/junos_lldp_global/tests/netconf/merged.yaml
+++ /dev/null
@@ -1,61 +0,0 @@
----
-- debug:
- msg: "START junos_lldp_global 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:
- - interval: 10000
- address: 10.1.1.1
- transmit_delay: 400
- hold_multiplier: 10
-
- - name: Merge the provided configuration with the exisiting running configuration
- junos_lldp_global: &merged
- config:
- interval: 10000
- address: 10.1.1.1
- transmit_delay: 400
- hold_multiplier: 10
- 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_global: *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_global merged integration tests on connection={{ ansible_connection }}"
diff --git a/test/integration/targets/junos_lldp_global/tests/netconf/replaced.yaml b/test/integration/targets/junos_lldp_global/tests/netconf/replaced.yaml
deleted file mode 100644
index 8feaf9d2fb..0000000000
--- a/test/integration/targets/junos_lldp_global/tests/netconf/replaced.yaml
+++ /dev/null
@@ -1,72 +0,0 @@
----
-- debug:
- msg: "START junos_lldp_global 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:
- - interval: 20000
- address: 10.1.1.2
- transmit_delay: 500
- hold_multiplier: 5
- enabled: False
-
- - name: Configure initial state for lldp global
- junos_lldp_global:
- config:
- interval: 10000
- address: 10.1.1.1
- transmit_delay: 400
- hold_multiplier: 10
- state: merged
- register: result
-
- - name: Replace the provided configuration with the exisiting running configuration
- junos_lldp_global: &replaced
- config:
- interval: 20000
- address: 10.1.1.2
- transmit_delay: 500
- hold_multiplier: 5
- 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_global: *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_global replaced integration tests on connection={{ ansible_connection }}"
diff --git a/test/integration/targets/junos_lldp_global/tests/netconf/rtt.yaml b/test/integration/targets/junos_lldp_global/tests/netconf/rtt.yaml
deleted file mode 100644
index 83e3887157..0000000000
--- a/test/integration/targets/junos_lldp_global/tests/netconf/rtt.yaml
+++ /dev/null
@@ -1,79 +0,0 @@
----
-- debug:
- msg: "START junos_lldp_global 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:
- - interval: 10000
- address: 10.1.1.1
- transmit_delay: 400
- hold_multiplier: 10
-
- - name: Apply the provided configuration (base config)
- junos_lldp_global: &merged
- config:
- interval: 10000
- address: 10.1.1.1
- transmit_delay: 400
- hold_multiplier: 10
- state: merged
- register: base_config
-
- - name: Gather interfaces facts
- junos_facts:
- gather_subset:
- - default
- gather_network_resources:
- - lldp_global
-
- - name: Apply the provided configuration (config to be reverted)
- junos_lldp_global:
- config:
- interval: 20000
- address: 10.1.1.2
- transmit_delay: 500
- hold_multiplier: 5
- enabled: False
- state: replaced
- 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_global:
- config: "{{ ansible_facts['network_resources']['lldp_global'] }}"
- 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_global round trip integration tests on connection={{ ansible_connection }}"