mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-22 12:50:22 -07:00
Run save
inside config mode. (#23977)
* Run `save` before exiting config mode. * Fix unit tests for `save` * Allow `save` to be on its own again and introspect success * Introspecting `compare running` makes this a lot harder. Move `save` tests to integration tests
This commit is contained in:
parent
9c4daded94
commit
fc0bf87c20
3 changed files with 65 additions and 12 deletions
60
test/integration/targets/vyos_config/tests/cli/save.yaml
Normal file
60
test/integration/targets/vyos_config/tests/cli/save.yaml
Normal file
|
@ -0,0 +1,60 @@
|
|||
---
|
||||
- debug: msg="START cli/save.yaml"
|
||||
|
||||
- name: setup
|
||||
vyos_config:
|
||||
lines: set system host-name {{ inventory_hostname_short }}
|
||||
provider: "{{ cli }}"
|
||||
match: none
|
||||
|
||||
- name: configure hostaname and save
|
||||
vyos_config:
|
||||
lines: set system host-name foo
|
||||
provider: "{{ cli }}"
|
||||
save: true
|
||||
register: result
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- "result.changed == true"
|
||||
- "'set system host-name foo' in result.commands"
|
||||
|
||||
- name: configure hostaname and don't save
|
||||
vyos_config:
|
||||
lines: set system host-name bar
|
||||
provider: "{{ cli }}"
|
||||
register: result
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- "result.changed == true"
|
||||
- "'set system host-name bar' in result.commands"
|
||||
|
||||
- name: save config
|
||||
vyos_config:
|
||||
save: true
|
||||
provider: "{{ cli }}"
|
||||
register: result
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- "result.changed == true"
|
||||
|
||||
- name: save config again
|
||||
vyos_config:
|
||||
save: true
|
||||
provider: "{{ cli }}"
|
||||
register: result
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- "result.changed == false"
|
||||
|
||||
- name: teardown
|
||||
vyos_config:
|
||||
lines: set system host-name {{ inventory_hostname_short }}
|
||||
provider: "{{ cli }}"
|
||||
match: none
|
||||
save: true
|
||||
|
||||
- debug: msg="END cli/simple.yaml"
|
Loading…
Add table
Add a link
Reference in a new issue