mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
3d63ecb6f3
* Fix junos integration test fixes as per connection refactor (#33050) Refactor netconf connection plugin to work with netconf plugin * Fix junos integration test fixes as per connection refactor (#33050) Refactor netconf connection plugin to work with netconf plugin Fix CI failure Fix unit test failure Fix review comments
61 lines
1.3 KiB
YAML
61 lines
1.3 KiB
YAML
---
|
|
- debug: msg="START netconf_xml/output.yaml"
|
|
|
|
- name: get output for single command
|
|
junos_command:
|
|
commands: ['show version']
|
|
format: xml
|
|
provider: "{{ netconf }}"
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == false"
|
|
- "result.stdout is defined"
|
|
- "result.stdout_lines is defined"
|
|
|
|
- name: get output for multiple commands
|
|
junos_command:
|
|
commands:
|
|
- show version
|
|
- show route
|
|
format: xml
|
|
provider: "{{ netconf }}"
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == false"
|
|
- "result.stdout is defined"
|
|
- "result.stdout_lines is defined"
|
|
|
|
- name: get output for single command with cli transport
|
|
junos_command:
|
|
commands: show version | display xml
|
|
provider:
|
|
transport: cli
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == false"
|
|
- "result.stdout is defined"
|
|
- "result.stdout_lines is defined"
|
|
|
|
- name: get output for multiple commands with cli transport
|
|
junos_command:
|
|
commands:
|
|
- show version
|
|
- show route
|
|
display: xml
|
|
provider:
|
|
transport: cli
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == false"
|
|
- "result.stdout is defined"
|
|
- "result.stdout_lines is defined"
|
|
|
|
- debug: msg="END netconf_xml/output.yaml"
|