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
This commit is contained in:
Anil Kumar Muraleedharan
2018-08-30 01:32:06 +05:30
committed by Nathaniel Case
parent 305ae5442a
commit 4b2495a54c
131 changed files with 4048 additions and 0 deletions

View File

@@ -0,0 +1,52 @@
---
- debug: msg="START cli/backup.yaml"
- name: setup
enos_config:
commands:
- no vlan 13
provider: "{{ cli }}"
ignore_errors: yes
- name: collect any backup files
find:
paths: "{{ role_path }}/backup"
pattern: "{{ inventory_hostname_short }}_config*"
register: backup_files
delegate_to: localhost
- name: delete backup files
file:
path: "{{ item.path }}"
state: absent
with_items: "{{backup_files.files|default([])}}"
- name: configure device with config
enos_config:
src: roles/enos_config/templates/basic/config.j2
backup: yes
provider: "{{ cli }}"
register: result
- assert:
that:
- "result.changed == false"
- name: collect any backup files
find:
paths: "{{ role_path }}/backup"
pattern: "{{ inventory_hostname_short }}_config*"
register: backup_files
delegate_to: localhost
- assert:
that:
- "backup_files.files is defined"
- name: teardown
enos_config:
commands:
- no vlan 13
provider: "{{ cli }}"
- debug: msg="END cli/backup.yaml"

View File

@@ -0,0 +1,39 @@
---
- debug: msg="START cli/basic.yaml"
- name: setup
enos_config:
commands:
- no vlan 13\n
provider: "{{ cli }}"
ignore_errors: yes
- name: configure device with config
enos_config:
src: roles/enos_config/templates/basic/config.j2
provider: "{{ cli }}"
register: result
- assert:
that:
- "result.changed == false"
- "result.updates is not defined"
- name: check device with config
enos_config:
src: roles/enos_config/templates/basic/config.j2
provider: "{{ cli }}"
register: result
- assert:
that:
- "result.changed == false"
- "result.updates is not defined"
- name: teardown
enos_config:
commands:
- no vlan 13\n
provider: "{{ cli }}"
- debug: msg="END cli/basic.yaml"

View File

@@ -0,0 +1,50 @@
---
- debug: msg="START cli/defaults.yaml"
- name: setup
enos_config:
commands:
- no vlan 13\n
provider: "{{ cli }}"
ignore_errors: yes
become: True
become_method: enable
- name: configure device with defaults included
enos_config:
src: roles/enos_config/templates/defaults/config.j2
provider: "{{ cli }}"
register: result
become: True
become_method: enable
- debug: var=result
- assert:
that:
- "result.changed == false"
- "result.updates is not defined"
- name: check device with defaults included Hell
enos_config:
src: roles/enos_config/templates/defaults/config.j2
provider: "{{ cli }}"
register: result
- debug: var=result
- assert:
that:
- "result.changed == false"
- "result.updates is not defined"
- name: teardown
enos_config:
commands:
- no vlan 13\n
provider: "{{ cli }}"
become: true
become_method: enable
ignore_errors: yes
- debug: msg="END cli/defaults.yaml"

View File

@@ -0,0 +1,41 @@
---
- debug: msg="START cli/force.yaml"
- name: setup
enos_config:
commands:
- no vlan 13\n
provider: "{{ cli }}"
ignore_errors: yes
- name: configure device with config
enos_config:
src: roles/enos_config/templates/basic/config.j2
provider: "{{ cli }}"
match: none
register: result
- assert:
that:
- "result.changed == true"
- "result.updates is defined"
- name: check device with config
enos_config:
src: roles/enos_config/templates/basic/config.j2
provider: "{{ cli }}"
match: none
register: result
- assert:
that:
- "result.changed == true"
- "result.updates is defined"
- name: teardown
enos_config:
commands:
- no vlan 13\n
provider: "{{ cli }}"
- debug: msg="END cli/force.yaml"