mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Network Tests - Extend examples (#18451)
This commit is contained in:
parent
abc9133cb6
commit
947e0f264e
1 changed files with 27 additions and 0 deletions
|
@ -183,6 +183,28 @@ should include both `cli` and `eapi` test cases. Cli test cases should be
|
||||||
added to `targets/modulename/tests/cli` and eapi tests should be added to
|
added to `targets/modulename/tests/cli` and eapi tests should be added to
|
||||||
`targets/modulename/tests/eapi`.
|
`targets/modulename/tests/eapi`.
|
||||||
|
|
||||||
|
In addition to positive testing, negative tests are required to ensure user friendly warnings & errors are generated, rather than backtraces, for example:
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
- name: test invalid subset (foobar)
|
||||||
|
eos_facts:
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
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
|
||||||
|
- "'Subset must be one of' in result.msg"
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
### Conventions
|
### Conventions
|
||||||
|
|
||||||
- Each test case should generally follow the pattern:
|
- Each test case should generally follow the pattern:
|
||||||
|
@ -197,3 +219,8 @@ added to `targets/modulename/tests/cli` and eapi tests should be added to
|
||||||
test, at least provide a helpful name for each task.)
|
test, at least provide a helpful name for each task.)
|
||||||
|
|
||||||
- Files containing test cases must end in `.yaml`
|
- Files containing test cases must end in `.yaml`
|
||||||
|
|
||||||
|
|
||||||
|
### Adding a new Network Platform
|
||||||
|
|
||||||
|
A top level playbook is required such as `ansible/test/integration/eos.yaml` which needs to be references by `ansible/test/integration/network-all.yaml`
|
||||||
|
|
Loading…
Reference in a new issue