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.
ansible/test/integration/targets/nxos_ntp_options/tests/common/sanity.yaml

75 lines
1.9 KiB
YAML

---
- debug: msg="START TRANSPORT:{{ connection.transport }} nxos_ntp_options sanity test"
- name: "Apply default ntp config"
nxos_ntp_options: &default
state: absent
provider: "{{ connection }}"
ignore_errors: yes
- block:
- name: Configure ntp with master and default stratum
nxos_ntp_options: &configure_master_default_stratum
master: true
logging: true
state: present
provider: "{{ connection }}"
register: result
- assert: &true
that:
- "result.changed == true"
- name: "Check Idempotence - Configure ntp with master and default stratum"
nxos_ntp_options: *configure_master_default_stratum
register: result
- assert: &false
that:
- "result.changed == false"
- name: Remove ntp with master and default stratum
nxos_ntp_options: &remove_master_default_stratum
logging: true
master: true
state: absent
provider: "{{ connection }}"
register: result
- assert: *true
- name: Configure ntp with master and non-default stratum
nxos_ntp_options: &configure_master_non_default_stratum
master: true
logging: true
stratum: 10
state: present
provider: "{{ connection }}"
register: result
- assert: *true
- name: "Check Idempotence - Configure ntp with master and non-default stratum"
nxos_ntp_options: *configure_master_non_default_stratum
register: result
- assert: *false
- name: Remove ntp with master and non-default stratum
nxos_ntp_options: &remove_master_non_default_stratum
logging: true
master: true
state: absent
provider: "{{ connection }}"
register: result
- assert: *true
always:
- name: Cleanup ntp config
nxos_ntp_options: *default
register: result
- debug: msg="END TRANSPORT:{{ connection.transport }} nxos_ntp_options sanity test"