mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
76 lines
1.6 KiB
YAML
76 lines
1.6 KiB
YAML
---
|
|
- debug: msg="START netconf_config junos/basic.yaml on connection={{ ansible_connection }}"
|
|
|
|
- include_vars: "{{playbook_dir }}/targets/netconf_config/tests/junos/fixtures/config.yml"
|
|
|
|
- name: syslog file config- setup
|
|
junos_config:
|
|
lines:
|
|
- delete system syslog file test_netconf_config
|
|
|
|
- name: configure syslog file
|
|
netconf_config:
|
|
content: "{{ syslog_config }}"
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == true"
|
|
- "'<name>test_netconf_config</name>' in result.diff.after"
|
|
|
|
- name: configure syslog file (idempotent)
|
|
netconf_config:
|
|
content: "{{ syslog_config }}"
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == false"
|
|
|
|
- name: replace default operation fail
|
|
netconf_config:
|
|
content: "{{ syslog_config_replace }}"
|
|
default_operation: 'replace'
|
|
register: result
|
|
ignore_errors: yes
|
|
|
|
- assert:
|
|
that:
|
|
- "result.failed == true"
|
|
- "'Missing mandatory statement' in result.msg"
|
|
|
|
- name: replace syslog config with operation key in content
|
|
netconf_config:
|
|
content: "{{ syslog_config_replace }}"
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == true"
|
|
|
|
- name: test backup
|
|
netconf_config:
|
|
content: "{{ syslog_config }}"
|
|
backup: True
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "'backup_path' in result"
|
|
|
|
- name: syslog file config- teardown
|
|
junos_config:
|
|
lines:
|
|
- delete system syslog file test_netconf_config
|
|
|
|
- name: save config
|
|
netconf_config:
|
|
backup: yes
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "'backup_path' in result"
|
|
|
|
- debug: msg="END netconf_config junos/basic.yaml on connection={{ ansible_connection }}"
|