-
Notifications
You must be signed in to change notification settings - Fork 23.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add tests for WANT_JSON and old style modules #50555
Changes from 1 commit
fb1a078
12efaa1
4b7b929
dda7877
dbab8e3
4afa97a
a6d8e97
1656a1d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,3 +26,14 @@ | |
- assert: | ||
that: | ||
- 'goodbye_ansible.msg == "Goodbye, Ansible!"' | ||
|
||
- name: Execute module directly | ||
command: '/bin/sh {{ role_path }}/library/helloworld.sh' | ||
register: direct | ||
ignore_errors: true | ||
|
||
- assert: | ||
that: | ||
- direct is failed | ||
- | | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why the multi-line syntax here? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I had done it originally due to simplifying quoting, but after a change it's no longer needed, I just didn't remove it. It wasn't done for multiline, but rather as a block literal, to avoid the need for outer quotes which would have complicated things. |
||
direct.stdout == '{"msg": "No argument file provided", "failed": true}' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since this module includes an error check for no argument file, I'd include testing that in the integration test. Just execute it as a script instead of a module to verify it fails as expected.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Addressed in the latest commit