39 lines
1.1 KiB
YAML
39 lines
1.1 KiB
YAML
|
---
|
||
|
- debug:
|
||
|
msg: "START ios_vlans empty_config.yaml integration tests on connection={{ ansible_connection }}"
|
||
|
|
||
|
- block:
|
||
|
- name: Merged with empty config should give appropriate error message
|
||
|
ios_vlans:
|
||
|
config:
|
||
|
state: merged
|
||
|
register: result
|
||
|
ignore_errors: True
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- result.msg == 'value of config parameter must not be empty for state merged'
|
||
|
|
||
|
- name: Replaced with empty config should give appropriate error message
|
||
|
ios_vlans:
|
||
|
config:
|
||
|
state: replaced
|
||
|
register: result
|
||
|
ignore_errors: True
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- result.msg == 'value of config parameter must not be empty for state replaced'
|
||
|
|
||
|
- name: Overridden with empty config should give appropriate error message
|
||
|
ios_vlans:
|
||
|
config:
|
||
|
state: overridden
|
||
|
register: result
|
||
|
ignore_errors: True
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- result.msg == 'value of config parameter must not be empty for state overridden'
|
||
|
when: ansible_net_version != "15.6(2)T"
|