############################################################################## # # Copyright (c) 2006 Zope Corporation and Contributors. # All Rights Reserved. # # This software is subject to the provisions of the Zope Public License, # Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution. # THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED # WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED # WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS # FOR A PARTICULAR PURPOSE. # ############################################################################## """Unit tests for decode module. $Id: test_decode.py 70914 2006-10-25 19:30:03Z yuppie $ """ import os, sys if __name__ == '__main__': execfile(os.path.join(sys.path[0], 'framework.py')) def test_processInputs(): """ Testing processInputs >>> from Products.Five.browser.decode import processInputs >>> charsets = ['iso-8859-1'] >>> class DummyRequest: ... form = {} >>> request = DummyRequest() Strings are converted to unicode:: >>> request.form['foo'] = u'f\xf6\xf6'.encode('iso-8859-1') >>> processInputs(request, charsets) >>> request.form['foo'] == u'f\xf6\xf6' True Strings in lists are converted to unicode:: >>> request.form['foo'] = [u'f\xf6\xf6'.encode('iso-8859-1')] >>> processInputs(request, charsets) >>> request.form['foo'] == [u'f\xf6\xf6'] True Strings in tuples are converted to unicode:: >>> request.form['foo'] = (u'f\xf6\xf6'.encode('iso-8859-1'),) >>> processInputs(request, charsets) >>> request.form['foo'] == (u'f\xf6\xf6',) True """ def test_suite(): from zope.testing.doctest import DocTestSuite return DocTestSuite() if __name__ == '__main__': framework()