diff options
author | Matt Martz <matt@sivel.net> | 2018-04-09 10:17:43 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-09 10:17:43 -0500 |
commit | 6332beef6506a6e1afa4094eefb971a5931ac9f0 (patch) | |
tree | c0fa760228e3b1ac0451eb2ceec989b5301df3de /lib/ansible | |
parent | eccccfe77f8dc099b153b819f2b8a796956e2478 (diff) | |
download | ansible-6332beef6506a6e1afa4094eefb971a5931ac9f0.tar.gz |
Add unit tests for ansible.module_utils.urls (#38059)
* Start of tests for ansible.module_utils.urls
* Start adding file for generic functions throughout urls
* Add tests for maybe_add_ssl_handler
* Remove commented out line
* Improve coverage of maybe_add_ssl_handler, test basic_auth_header
* Start tests for open_url
* pep8 and ignore urlopen in test_url_open.py tests
* Extend auth tests, add test for validate_certs=False
* Finish tests for open_url
* Add tests for fetch_url
* Add fetch_url tests to replace-urlopen ignore
* dummy instead of _
* Add BadStatusLine test
* Reorganize/rename tests
* Add tests for RedirectHandlerFactory
* Add POST test to confirm behavior is to convert to GET
* Update tests to handle recent changes to RedirectHandlerFactory
* Special test, just to confirm that aliasing http_error_308 to http_error_307 does not cause issues with urllib2 type redirects
Diffstat (limited to 'lib/ansible')
-rw-r--r-- | lib/ansible/module_utils/urls.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ansible/module_utils/urls.py b/lib/ansible/module_utils/urls.py index 4e2f0ecf18..1470367f5d 100644 --- a/lib/ansible/module_utils/urls.py +++ b/lib/ansible/module_utils/urls.py @@ -941,7 +941,7 @@ def open_url(url, data=None, headers=None, method=None, use_proxy=True, # user defined headers now, which may override things we've set above if headers: if not isinstance(headers, dict): - raise ValueError("headers provided to fetch_url() must be a dict") + raise ValueError("headers provided to open_url() must be a dict") for header in headers: request.add_header(header, headers[header]) |