neutron/neutron/tests/unit/agent/metadata
Ihar Hrachyshka 13b6d76da3 metadata: don't crash proxy on non-unicode user data
We attempt to log every successful metadata response with LOG.debug. But
as per oslo.log docs [1], we should make sure that what we pass into the
library is unicode.

Http.request returns a tuple of Response object and a string, which is
bytes in Python 2.x [2].

That's why we need to convert the response content to unicode before
passing it into oslo.log.

To achieve it, we utilize encodeutils.safe_decode with 'replace' errors
handling strategy, so that we don't get exceptions on input that does
not conform unicode.

For the unit test case, we pass a string that is not expected to convert
to unicode with errors='strict' strategy or similar, and check that we
still don't crash.

While at it, we remove a check for the number of log calls being
triggered, because it's something that we should avoid validating in
test cases, and it cannot trigger a real bug. The mock that was used to
count the number would also hide the bug that we try to reproduce.

Note that the bug does not require debug to be set because the crash
occurs before oslo.log machinery decides it should not log the message.

[1]: http://docs.openstack.org/developer/oslo.log/usage.html#no-more-implicit-conversion-to-unicode-str
[2]: http://bitworking.org/projects/httplib2/doc/html/libhttplib2.html#httplib2.Http.request

Closes-Bug: #1501772
Change-Id: I6a32c40ff117fae43913386134c8981539697ce8
(cherry picked from commit 80e3d9be49)
2015-10-02 15:54:26 +00:00
..
__init__.py Revert "Revert "Add metadata proxy L3 agent driver"" 2015-01-06 21:41:39 +00:00
test_agent.py Merge "Allow overriding of the neutron endpoint URL in metadata agent" 2015-07-29 14:16:00 +00:00
test_driver.py Merge "Correct neutron-ns-metadata-proxy command when watch_log is False" 2015-09-01 18:07:33 +00:00
test_namespace_proxy.py metadata: don't crash proxy on non-unicode user data 2015-10-02 15:54:26 +00:00