Lenovo integration test roles 1 (#44559)
* Integration test suit for cnos_facts, cnos_config, cnos_command, enos_facts, enos_config and enos_command.
* Update all_facts.yaml
* Update invalid_subset.yaml
* Update not_hardware.yaml
* Adding cnos_backup, cnos_bgp, cnos_conditional_command, cnos_condtional_template, cnos_ethernet, cnos_portchannel, cnos_rollback.
* Update README.md
* Adding the sample roles for cnos_save, cnos_show_run, cnos_template, cnos_vlag and cnos_vlan
2018-08-29 22:02:06 +02:00
|
|
|
---
|
|
|
|
- debug: msg="START cli/basic.yaml"
|
|
|
|
|
|
|
|
- name: setup
|
|
|
|
cnos_config:
|
|
|
|
commands:
|
|
|
|
- no vlan 13\n
|
|
|
|
ignore_errors: yes
|
|
|
|
|
|
|
|
- name: configure device with config
|
|
|
|
cnos_config:
|
|
|
|
src: roles/cnos_config/templates/basic/config.j2
|
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
2019-04-06 03:50:29 +02:00
|
|
|
- "result.changed == true"
|
Lenovo integration test roles 1 (#44559)
* Integration test suit for cnos_facts, cnos_config, cnos_command, enos_facts, enos_config and enos_command.
* Update all_facts.yaml
* Update invalid_subset.yaml
* Update not_hardware.yaml
* Adding cnos_backup, cnos_bgp, cnos_conditional_command, cnos_condtional_template, cnos_ethernet, cnos_portchannel, cnos_rollback.
* Update README.md
* Adding the sample roles for cnos_save, cnos_show_run, cnos_template, cnos_vlag and cnos_vlan
2018-08-29 22:02:06 +02:00
|
|
|
- "result.updates is not defined"
|
|
|
|
|
|
|
|
- name: check device with config
|
|
|
|
cnos_config:
|
|
|
|
src: roles/cnos_config/templates/basic/config.j2
|
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
2019-04-06 03:50:29 +02:00
|
|
|
- "result.changed == true"
|
Lenovo integration test roles 1 (#44559)
* Integration test suit for cnos_facts, cnos_config, cnos_command, enos_facts, enos_config and enos_command.
* Update all_facts.yaml
* Update invalid_subset.yaml
* Update not_hardware.yaml
* Adding cnos_backup, cnos_bgp, cnos_conditional_command, cnos_condtional_template, cnos_ethernet, cnos_portchannel, cnos_rollback.
* Update README.md
* Adding the sample roles for cnos_save, cnos_show_run, cnos_template, cnos_vlag and cnos_vlan
2018-08-29 22:02:06 +02:00
|
|
|
- "result.updates is not defined"
|
|
|
|
|
|
|
|
- name: teardown
|
|
|
|
cnos_config:
|
|
|
|
commands:
|
|
|
|
- no vlan 13\n
|
|
|
|
|
|
|
|
- debug: msg="END cli/basic.yaml"
|