ansible/test/integration/targets/nxos_snapshot/tests/common/sanity.yaml
Nathaniel Case 483df13626 Fixing issues with httpapi (#40388)
* I seem to have forgotten the back half of tests

* Set http timeout from persistent_command_timeout

* Tweak URL generation and provide URL on error

* Push var_options to connection process

* Don't wait forever if coming from persistent

* Don't send the entire contents of variables to ansible-connection
2018-05-21 15:58:35 +01:00

61 lines
1.6 KiB
YAML

---
- debug: msg="START connection={{ ansible_connection }} nxos_snapshot sanity test"
- debug: msg="Using provider={{ connection.transport }}"
when: ansible_connection == "local"
- set_fact: snapshot_run="true"
- set_fact: snapshot_run="false"
when: titanium and ( connection.transport is match('nxapi'))
- block:
- name: create snapshot
nxos_snapshot:
action: create
snapshot_name: test_snapshot1
description: Ansible
save_snapshot_locally: true
- name: create another snapshot
nxos_snapshot:
action: create
snapshot_name: test_snapshot2
description: row
section: myshow
show_command: show ip interface brief
row_id: ROW_intf
element_key1: intf-name
save_snapshot_locally: true
- name: compare snapshots
nxos_snapshot:
action: compare
snapshot1: test_snapshot1
snapshot2: test_snapshot2
comparison_results_file: compare_snapshots.txt
compare_option: summary
path: '.'
- name: FAIL compare snapshots
nxos_snapshot:
action: compare
snapshot1: test_snapshot1
snapshot2: test_snapshot2
compare_option: summary
path: '.'
register: result
ignore_errors: yes
- assert:
that:
- 'result.failed == True'
- '"action is compare but all of the following are missing: comparison_results_file" in result.msg'
when: snapshot_run
always:
- name: delete snapshot
nxos_snapshot:
action: delete_all
ignore_errors: yes
- debug: msg="END connection={{ ansible_connection }} nxos_snapshot sanity test"