mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
2bc4c4f156
* - Netconf plugin addition for iosxr - Utilities refactoring to support netconf and cliconf - iosx_banner refactoring for netconf and cliconf - Integration testcases changes to accomodate above changes * Fix sanity failures, shippable errors and review comments * fix pep8 issue * changes run_command method to send specific command args * - Review comment fixes - iosxr_command changes to remove ComplexDict based command_spec * - Move namespaces removal method from utils to netconf plugin * Minor refactoring in utils and change in deprecation message * rewrite build_xml logic and import changes for new utils dir structure * - Review comment changes and minor changes to documentation * * refactor common code and docs updates
78 lines
1.5 KiB
YAML
78 lines
1.5 KiB
YAML
---
|
|
- debug: msg="START iosxr_interface cli/intent.yaml"
|
|
|
|
- name: Setup (interface is up)
|
|
iosxr_interface:
|
|
name: GigabitEthernet0/0/0/1
|
|
description: test_interface_1
|
|
enabled: True
|
|
state: present
|
|
provider: "{{ cli }}"
|
|
register: result
|
|
|
|
- name: Check intent arguments
|
|
iosxr_interface:
|
|
name: GigabitEthernet0/0/0/1
|
|
state: up
|
|
delay: 20
|
|
provider: "{{ cli }}"
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.failed == false"
|
|
|
|
- name: Check intent arguments (failed condition)
|
|
iosxr_interface:
|
|
name: GigabitEthernet0/0/0/1
|
|
state: down
|
|
provider: "{{ cli }}"
|
|
ignore_errors: yes
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.failed == true"
|
|
- "'state eq(down)' in result.failed_conditions"
|
|
|
|
- name: Config + intent
|
|
iosxr_interface:
|
|
name: GigabitEthernet0/0/0/1
|
|
enabled: False
|
|
state: down
|
|
delay: 20
|
|
provider: "{{ cli }}"
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.failed == false"
|
|
|
|
- name: Config + intent (fail)
|
|
iosxr_interface:
|
|
name: GigabitEthernet0/0/0/1
|
|
enabled: False
|
|
state: up
|
|
provider: "{{ cli }}"
|
|
ignore_errors: yes
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.failed == true"
|
|
- "'state eq(up)' in result.failed_conditions"
|
|
|
|
- name: Aggregate config + intent (pass)
|
|
iosxr_interface:
|
|
aggregate:
|
|
- name: GigabitEthernet0/0/0/1
|
|
enabled: True
|
|
state: up
|
|
delay: 20
|
|
provider: "{{ cli }}"
|
|
ignore_errors: yes
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.failed == false"
|