ansible/test/integration/targets/junos_config/tests/netconf/single.yaml
Ganesh Nalawade 1c8c51d05c
Fix junos integration failures (#34571)
*  Add connection=netconf in individual roles for modules that run using netconf connection
plugin
*  Add connection=network_cli for junos_netconf and junos_command
at applicable places
2018-01-08 17:58:47 +05:30

82 lines
1.8 KiB
YAML

---
- debug: msg="START netconf/single.yaml on connection={{ ansible_connection }}"
# Ensure that when we change the hostname to `localhost` we cause a change
- name: setup
junos_config:
lines:
- set system host-name {{ inventory_hostname_short }}
provider: "{{ netconf }}"
- name: configure single command
junos_config:
lines:
- set system host-name localhost
provider: "{{ netconf }}"
register: result
- assert:
that:
- "result.changed == true"
- "'+ host-name localhost;' in result.diff.prepared"
- name: check single command idempotent
junos_config:
lines:
- set system host-name localhost
provider: "{{ netconf }}"
register: result
- assert:
that:
- "result.changed == false"
- name: confirm previous commit
junos_config:
confirm_commit: yes
provider: "{{ netconf }}"
register: result
- assert:
that:
- "result.changed == true"
- name: teardown for rollback test
junos_config:
lines:
- delete system syslog file test1
provider: "{{ netconf }}"
- name: Configure syslog file
junos_config:
lines:
- set system syslog file test1 any any
provider: "{{ netconf }}"
register: result
- assert:
that:
- "result.changed == true"
- result.diff.prepared is search("\+ *file test1")
- result.diff.prepared is search("\+ *any any")
- name: Rollback junos config
junos_config:
rollback: 1
provider: "{{ netconf }}"
register: result
- assert:
that:
- "result.changed == true"
- result.diff.prepared is search("\+ *file test1")
- result.diff.prepared is search("\+ *any any")
- name: teardown
junos_config:
lines:
- set system host-name {{ inventory_hostname_short }}
provider: "{{ netconf }}"
- debug: msg="END netconf/single.yaml on connection={{ ansible_connection }}"