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.
49 lines
1.0 KiB
YAML
49 lines
1.0 KiB
YAML
8 years ago
|
---
|
||
7 years ago
|
- debug: msg="START {{ connection.transport }}/invalid_subset.yaml"
|
||
8 years ago
|
|
||
|
|
||
|
- name: test invalid subset (foobar)
|
||
|
nxos_facts:
|
||
7 years ago
|
provider: "{{ connection }}"
|
||
8 years ago
|
gather_subset:
|
||
|
- "foobar"
|
||
|
register: result
|
||
|
ignore_errors: true
|
||
|
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
# Failures shouldn't return changes
|
||
|
- "result.changed == false"
|
||
|
# It's a failure
|
||
|
- "result.failed == true"
|
||
|
# Sensible Failure message
|
||
|
- "result.msg == 'Bad subset'"
|
||
|
|
||
|
###############
|
||
|
# FIXME Future
|
||
|
# We may in the future want to add a test for
|
||
|
|
||
|
- name: test subset specified multiple times
|
||
|
nxos_facts:
|
||
7 years ago
|
provider: "{{ connection }}"
|
||
8 years ago
|
gather_subset:
|
||
|
- "!hardware"
|
||
|
- "hardware"
|
||
|
register: result
|
||
|
ignore_errors: true
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
# Failures shouldn't return changes
|
||
|
- "result.changed == false"
|
||
|
# It's a failure
|
||
|
- "result.failed == true"
|
||
|
# Sensible Failure message
|
||
|
- "result.msg == 'Bad subset'"
|
||
|
ignore_errors: true
|
||
|
|
||
|
|
||
|
|
||
7 years ago
|
- debug: msg="END {{ connection.transport }}/invalid_subset.yaml"
|