ansible/test/integration/targets/iosxr_config/tests/cli/comment-too-long.yaml
John R Barker e0cc7b3415 Migrate Network Tests into ansible/ansible (#18233)
* Docs Networking tests

* Copy networking tests from test-network-modules

* Networking transport settings - group_vars

* Network playbooks

* Debug should be off by default

* Update nxos.yaml

* Remove items from top level

* Use dependencies, not pre-tasks

* Remove trailing blank lines

* Remove backup files

* newlines
2016-10-28 19:50:29 +01:00

32 lines
901 B
YAML

---
- debug: msg="START cli/comment-too-long.yaml"
- name: setup
iosxr_config:
commands:
- no description
- no shutdown
parents:
- interface Loopback999
match: none
provider: "{{ cli }}"
# Defend against https://github.com/ansible/ansible-modules-core/issues/5146
- name: Commit message too long
iosxr_config:
src: basic/config.j2
provider: "{{ cli }}"
comment: "this is a really long message aaaaabbbbbbcdde end-of-message"
register: result
ignore_errors: true
- assert:
that:
- "result.changed == false"
- "result.updates is not defined"
# Defend https://github.com/ansible/ansible-modules-core/issues/5146
- "'comment argument cannot be more than 60 characters' in result.msg"
# Check for the correct error message (and not a generic "Invalid input detected") once fixed
- debug: msg="END cli/comment-too-long.yaml"