eclipse、pydev、nose テスト ランナー、および Unicode テキストのログを使用すると、奇妙な問題が発生します。これが私の構成とインストールされているバージョンでのみ発生するものであるかどうかはわかりません。ですから、問題を再現してみて、同じ問題を抱えているかどうかを教えていただければ、私にとって非常に役に立ちます。再現に必要なすべての情報が以下のコメントに記載されていることを願っています。ノーズ テスト ランナーを使用し、ログ キャプチャを無効にしないように注意してください。
import unittest
import logging
class WeirdUnicodeTestProblem(unittest.TestCase):
"""
Weird Exception is raised in
xmlrpclib (!)
Fault: <Fault 0: 'Failed to read XML-RPC request:
Invalid byte 1 of 1-byte UTF-8 sequence.'>
Occurs when this is true:
- nose test runner with log capturing on (=default)
- eclipse + pydev
- log some unicode text containing non standard ascii characters
- raise any exception after logging
It does NOT occur when using nosetests on the commandline.
"""
def test_problem(self):
"""
This is how the problem can be reproduced
"""
logger = logging.getLogger('bla')
logger.debug(u'internation\xe4l')
self.assertEqual(1, 2) # any exception raised will do here
#def test_OK(self):
# """
# This is how the problem does not occur
# """
# logger = logging.getLogger('bla')
# logger.debug(u'good old 7bit')
# self.assertEqual(1, 2) # any exception raised will do here
これはトレースバックです:
Traceback (most recent call last):
File "/Applications/eclipse_4.2.1/plugins/org.python.pydev_2.7.3.2013031601/pysrc/pydev_runfiles_xml_rpc.py", line 131, in run
self.server.notifyCommands(commands)
File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/xmlrpclib.py", line 1224, in __call__
return self.__send(self.__name, args)
File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/xmlrpclib.py", line 1575, in __request
verbose=self.__verbose
File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/xmlrpclib.py", line 1264, in request
return self.single_request(host, handler, request_body, verbose)
File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/xmlrpclib.py", line 1297, in single_request
return self.parse_response(response)
File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/xmlrpclib.py", line 1473, in parse_response
return u.close()
File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/xmlrpclib.py", line 793, in close
raise Fault(**self._stack[0])
Fault: <Fault 0: 'Failed to read XML-RPC request: Invalid byte 1 of 1-byte UTF-8 sequence.'>
さらに奇妙なことが 1 つあります。行 131 の pydev_runfiles_xml_rpc.py にブレークポイントを設定してデバッグしようとすると、ブレークポイントはヒットしませんが、コードは正常に実行されます (期待どおりに AssertionError が発生します)。