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_snmp_community/tests/common/sanity.yaml

148 lines
3.0 KiB
YAML

---
- debug: msg="START connection={{ ansible_connection }} nxos_snmp_community sanity test"
- debug: msg="Using provider={{ connection.transport }}"
when: ansible_connection == "local"
- name: Setup - Remove snmp_community if configured
nxos_snmp_community: &remove
community: TESTING7
group: network-operator
state: absent
provider: "{{ connection }}"
ignore_errors: yes
- block:
- name: Configure snmp_community group
nxos_snmp_community: &config
community: TESTING7
group: network-operator
state: present
provider: "{{ connection }}"
register: result
- assert: &true
that:
- "result.changed == true"
- name: Idempotence Check
nxos_snmp_community: *config
register: result
- assert: &false
that:
- "result.changed == false"
nxos bugfixes stable-2.5 (#39719) * Handle nxos_feature issue where json isn't supported (#39150) Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> (cherry picked from commit 9eff1f1d74f20b31b69ecb3d9aa7278626562725) * Integration Tests only: nxos_snmp_contact (#39318) * add integration test cases for snmp_contact * removing unnecessary files (cherry picked from commit bdb75cd82c81c641e40703ed1e2088a5153ce051) * fix nxos_ntp issues (#39178) * fix nxos_ntp issues * review comments * fix idempotent fail case (cherry picked from commit 2f99a1785629758cf78ce2532515f045637d2e7a) * nxos_interface: AttributeError: 'NoneType' object has no attribute 'group' (#38544) This fixes an issue we recently encounteredi with nxos_interface: ``` Traceback (most recent call last): File "/tmp/ansible_JmLoba/ansible_module_nxos_interface.py", line 777, in main have = map_config_to_obj(want, module) File "/tmp/ansible_JmLoba/ansible_module_nxos_interface.py", line 606, in map_config_to_obj obj['speed'] = re.search(r'speed (\d+)', body).group(1) AttributeError: 'NoneType' object has no attribute 'group' ``` (cherry picked from commit dca6e2d94dd97bc82c696d42ebb7c6e635340cd8) * fix nxos_snmp_community issues (#39258) (cherry picked from commit 1afec5a48e3335e7d5fe794639442dbc38e125a9) * Add aggregate example in nxos_l2_interface module doc (#39275) Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> (cherry picked from commit 86817cdd52f9595dcb77ba2cc449726586714af3) * Fix misuse of 'self' in lib/ansible/module_utils/network/eos/eos.py. … (#39074) * Fix misuse of 'self' in lib/ansible/module_utils/network/eos/eos.py. Method load_config * Fix all instances of self.config(self,... (cherry picked from commit 80d7e22f5e34574e4383cea2baef00098d0ebdf7) * Fix for nxos_snmp_host issues (#39642) * fix snmp_host issues * source files * fix shippable * remove defaults to match arg spec (cherry picked from commit f99bae1776cdc87e0a3f190b76c41d77fb7dd94b) * fix nxos_snmp_traps issues (#39444) * fix snmp_traps code * add IT cases * fix shippable * fix shippable without ignore (cherry picked from commit 99748cbfa473bababb297c855e57c09c995a219b) * changelog Signed-off-by: Trishna Guha <trishnaguha17@gmail.com>
7 years ago
- name: Change snmp_community group
nxos_snmp_community: &chg
community: TESTING7
group: network-admin
state: present
provider: "{{ connection }}"
register: result
- assert: *true
- name: Idempotence Check
nxos_snmp_community: *chg
register: result
- assert: *false
- name: Remove snmp_community
nxos_snmp_community: *remove
register: result
- assert: *true
- name: Idempotence Check
nxos_snmp_community: *remove
register: result
- assert: *false
- name: Configure snmp_community access read-only
nxos_snmp_community: &configaccess
community: TESTING7
access: ro
state: present
provider: "{{ connection }}"
register: result
- assert: *true
- name: Idempotence Check
nxos_snmp_community: *configaccess
register: result
- assert: *false
- name: Remove snmp_community
nxos_snmp_community: *remove
register: result
- assert: *true
- name: Idempotence Check
nxos_snmp_community: *remove
register: result
- assert: *false
- name: Configure snmp_community access read-write
nxos_snmp_community: &configaccessrw
community: TESTING7
access: rw
acl: ansible_acl
state: present
provider: "{{ connection }}"
register: result
- assert: *true
- name: Idempotence Check
nxos_snmp_community: *configaccessrw
register: result
- assert: *false
nxos bugfixes stable-2.5 (#39719) * Handle nxos_feature issue where json isn't supported (#39150) Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> (cherry picked from commit 9eff1f1d74f20b31b69ecb3d9aa7278626562725) * Integration Tests only: nxos_snmp_contact (#39318) * add integration test cases for snmp_contact * removing unnecessary files (cherry picked from commit bdb75cd82c81c641e40703ed1e2088a5153ce051) * fix nxos_ntp issues (#39178) * fix nxos_ntp issues * review comments * fix idempotent fail case (cherry picked from commit 2f99a1785629758cf78ce2532515f045637d2e7a) * nxos_interface: AttributeError: 'NoneType' object has no attribute 'group' (#38544) This fixes an issue we recently encounteredi with nxos_interface: ``` Traceback (most recent call last): File "/tmp/ansible_JmLoba/ansible_module_nxos_interface.py", line 777, in main have = map_config_to_obj(want, module) File "/tmp/ansible_JmLoba/ansible_module_nxos_interface.py", line 606, in map_config_to_obj obj['speed'] = re.search(r'speed (\d+)', body).group(1) AttributeError: 'NoneType' object has no attribute 'group' ``` (cherry picked from commit dca6e2d94dd97bc82c696d42ebb7c6e635340cd8) * fix nxos_snmp_community issues (#39258) (cherry picked from commit 1afec5a48e3335e7d5fe794639442dbc38e125a9) * Add aggregate example in nxos_l2_interface module doc (#39275) Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> (cherry picked from commit 86817cdd52f9595dcb77ba2cc449726586714af3) * Fix misuse of 'self' in lib/ansible/module_utils/network/eos/eos.py. … (#39074) * Fix misuse of 'self' in lib/ansible/module_utils/network/eos/eos.py. Method load_config * Fix all instances of self.config(self,... (cherry picked from commit 80d7e22f5e34574e4383cea2baef00098d0ebdf7) * Fix for nxos_snmp_host issues (#39642) * fix snmp_host issues * source files * fix shippable * remove defaults to match arg spec (cherry picked from commit f99bae1776cdc87e0a3f190b76c41d77fb7dd94b) * fix nxos_snmp_traps issues (#39444) * fix snmp_traps code * add IT cases * fix shippable * fix shippable without ignore (cherry picked from commit 99748cbfa473bababb297c855e57c09c995a219b) * changelog Signed-off-by: Trishna Guha <trishnaguha17@gmail.com>
7 years ago
- name: Change acl
nxos_snmp_community: &chgacl
community: TESTING7
access: rw
acl: new_acl
state: present
provider: "{{ connection }}"
register: result
- assert: *true
- name: Idempotence Check
nxos_snmp_community: *chgacl
register: result
- assert: *false
- name: Remove acl
nxos_snmp_community: &removeacl
community: TESTING7
access: rw
acl: default
state: present
provider: "{{ connection }}"
register: result
- assert: *true
- name: Idempotence Check
nxos_snmp_community: *removeacl
register: result
- assert: *false
always:
- name: Cleanup
nxos_snmp_community: *remove
- debug: msg="END connection={{ ansible_connection }} nxos_snmp_community sanity test"