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.
ansible/test/integration/targets/iosxr_config/tests/cli/comment-too-long.yaml

31 lines
927 B
YAML

---
- debug: msg="START cli/comment-too-long.yaml on connection={{ ansible_connection }}"
- name: setup
iosxr_config:
commands:
- no description
- no shutdown
parents:
- interface Loopback999
match: none
# Defend against https://github.com/ansible/ansible-modules-core/issues/5146
- name: Commit message too long
iosxr_config:
src: basic/config.j2
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 on connection={{ ansible_connection }}"