Migrate Network Tests into ansible/ansible (#18233)

* Docs Networking tests

* Copy networking tests from test-network-modules

* Networking transport settings - group_vars

* Network playbooks

* Debug should be off by default

* Update nxos.yaml

* Remove items from top level

* Use dependencies, not pre-tasks

* Remove trailing blank lines

* Remove backup files

* newlines
This commit is contained in:
John R Barker 2016-10-28 19:50:29 +01:00 committed by GitHub
commit e0cc7b3415
489 changed files with 13144 additions and 2 deletions

View file

@ -0,0 +1,21 @@
---
- debug: msg="START netconf_text/bad_operator.yaml"
- name: test bad operator with text encoding
junos_command:
commands:
- show version
- show interfaces fxp0
wait_for:
- "result[1].interface-information[0].physical-interface[0].name[0].data foo fxp0"
encoding: text
provider: "{{ netconf }}"
register: result
ignore_errors: yes
- assert:
that:
- "result.failed == true"
- "result.msg is defined"
- debug: msg="END netconf_text/bad_operator.yaml"

View file

@ -0,0 +1,22 @@
---
- debug: msg="START netconf_text/contains.yaml"
- name: test contains operator with text encoding
junos_command:
commands:
- show version
- show interfaces fxp0
display: text
wait_for:
- "result[0] contains vsrx01"
- "result[1] contains fxp0"
provider: "{{ netconf }}"
register: result
- assert:
that:
- "result.changed == false"
- "result.stdout is defined"
- "result.stdout_lines is defined"
- debug: msg="END netconf_text/contains.yaml"

View file

@ -0,0 +1,34 @@
---
- debug: msg="START netconf_text/invalid.yaml"
- name: run invalid command
junos_command:
commands: show foo
display: text
provider: "{{ netconf }}"
register: result
ignore_errors: yes
- debug: var=result
- assert:
that:
- "result.failed == true"
- "result.msg is defined"
- name: run commands that include invalid command
junos_command:
commands:
- show version
- show foo
display: text
provider: "{{ netconf }}"
register: result
ignore_errors: yes
- assert:
that:
- "result.failed == true"
- "result.msg is defined"
- debug: msg="END netconf_text/invalid.yaml"

View file

@ -0,0 +1,32 @@
---
- debug: msg="START netconf_text/output.yaml"
- name: get output for single command
junos_command:
commands: show version
display: text
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
display: text
provider: "{{ netconf }}"
register: result
- assert:
that:
- "result.changed == false"
- "result.stdout is defined"
- "result.stdout_lines is defined"
- debug: msg="END netconf_text/output.yaml"

View file

@ -0,0 +1,20 @@
---
- debug: msg="START netconf_text/timeout.yaml"
- name: test bad condition
junos_command:
commands:
- show version
wait_for:
- "result[0] contains bad_value_string"
display: text
provider: "{{ netconf }}"
register: result
ignore_errors: yes
- assert:
that:
- "result.failed == true"
- "result.msg is defined"
- debug: msg="END netconf_text/timeout.yaml"