fc0bf87c20
* 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
60 lines
1.2 KiB
YAML
60 lines
1.2 KiB
YAML
---
|
|
- 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"
|