ansible/test/integration/targets/nxos_mtu/tests/cli/set_sysmtu.yaml
John R Barker 41f5648c44 Test system (#22420)
* ios_system

* tests for ios_system

* tests for *_system

* working ios_system on cli

* Typo

* Loopback10 (single word, upeprcase)

* Revert docs changes

* Working iosxr_system tests

* eos, not nxos

* nxos_system
2017-03-08 12:21:45 -07:00

68 lines
1.1 KiB
YAML

---
- debug: msg="START cli/sysmtu.yaml"
- name: setup
nxos_config:
lines: no system jumbomtu
match: none
provider: "{{ cli }}"
- name: configure system mtu
nxos_mtu:
sysmtu: 2000
provider: "{{ cli }}"
transport: nxapi
register: result
- assert:
that:
- "result.changed == true"
- name: verify system mtu
nxos_mtu:
sysmtu: 2000
provider: "{{ cli }}"
register: result
- assert:
that:
- "result.changed == false"
- name: update system mtu
nxos_mtu:
sysmtu: 2001
provider: "{{ cli }}"
register: result
- assert:
that:
- "result.changed == true"
- name: verify system mtu
nxos_mtu:
sysmtu: 2001
provider: "{{ cli }}"
register: result
- assert:
that:
- "result.changed == false"
- name: invalid setting
nxos_mtu:
sysmtu: 3000
provider: "{{ cli }}"
register: result
ignore_errors: yes
- assert:
that:
- "result.failed == true"
- name: teardown
nxos_config:
lines: no system jumbomtu
match: none
provider: "{{ cli }}"
- debug: msg="END cli/sysmtu.yaml"