mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
4fe08441be
* Warn on tests used as filters * Update docs, add aliases for tests that fit more gramatically with test syntax * Fix rst formatting * Add successful filter, alias of success * Remove renamed_deprecation, it was overkill * Make directory alias for is_dir * Update tests to use proper jinja test syntax * Update additional documentation, living outside of YAML files, to reflect proper jinja test syntax * Add conversion script, porting guide updates, and changelog updates * Update newly added uses of tests as filters * No underscore variable * Convert recent tests as filter changes to win_stat * Fix some changes related to rebasing a few integration tests * Make tests_as_filters_warning explicitly accept the name of the test, instead of inferring the name * Add test for tests_as_filters_warning * Update tests as filters in newly added/modified tests * Address recent changes to several integration tests * Address recent changes in cs_vpc
74 lines
1.7 KiB
YAML
74 lines
1.7 KiB
YAML
---
|
|
- debug: msg="START TRANSPORT:{{ connection.transport }} nxos_udld_interface sanity test"
|
|
|
|
- set_fact: udld_run="true"
|
|
- set_fact: udld_run="false"
|
|
when: ((platform is search('N9K-F')) and (imagetag and (imagetag is version('F3', 'lt'))))
|
|
- set_fact: udld_run="false"
|
|
when: titanium
|
|
|
|
# Select interface for test
|
|
- set_fact: intname="{{ nxos_int1 }}"
|
|
|
|
- block:
|
|
- name: "Enable feature udld"
|
|
nxos_feature:
|
|
feature: udld
|
|
state: enabled
|
|
provider: "{{ connection }}"
|
|
|
|
- name: "put the interface into default state"
|
|
nxos_config:
|
|
commands:
|
|
- "default interface {{intname}}"
|
|
provider: "{{ connection }}"
|
|
match: none
|
|
|
|
- name: ensure interface is configured to be in aggressive mode
|
|
nxos_udld_interface: &conf1
|
|
interface: "{{ intname }}"
|
|
mode: aggressive
|
|
state: present
|
|
provider: "{{ connection }}"
|
|
register: result
|
|
|
|
- assert: &true
|
|
that:
|
|
- "result.changed == true"
|
|
|
|
- name: "Conf1 Idempotence"
|
|
nxos_udld_interface: *conf1
|
|
register: result
|
|
|
|
- assert: &false
|
|
that:
|
|
- "result.changed == false"
|
|
|
|
- name: ensure interface has mode enabled
|
|
nxos_udld_interface: &conf2
|
|
interface: "{{ intname }}"
|
|
mode: enabled
|
|
state: present
|
|
provider: "{{ connection }}"
|
|
register: result
|
|
|
|
- assert: *true
|
|
|
|
- name: Remove the config
|
|
nxos_udld_interface: &remove
|
|
interface: "{{ intname }}"
|
|
mode: enabled
|
|
state: absent
|
|
provider: "{{ connection }}"
|
|
|
|
when: udld_run
|
|
|
|
always:
|
|
- name: "Disable udld"
|
|
nxos_feature:
|
|
feature: udld
|
|
state: disabled
|
|
provider: "{{ connection }}"
|
|
ignore_errors: yes
|
|
|
|
- debug: msg="END TRANSPORT:{{ connection.transport }} nxos_udld_interface sanity test"
|