################################################################################ # # Copyright (c) 2006 Zope Corporation and Contributors. All Rights Reserved. # # This software is subject to the provisions of the Zope Public License, # Version 2.0 (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 # ################################################################################ import unittest class ConvertersTests(unittest.TestCase): def test_field2string_with_string(self): from ZPublisher.Converters import field2string to_convert = 'to_convert' self.assertEqual(field2string(to_convert), to_convert) def test_field2string_with_unicode_default_encoding(self): from ZPublisher.Converters import field2string to_convert = u'to_convert' self.assertEqual(field2string(to_convert), to_convert.encode('iso-8859-15')) def test_field2string_with_filelike_object(self): from ZPublisher.Converters import field2string to_convert = 'to_convert' class Filelike: def read(self): return to_convert self.assertEqual(field2string(Filelike()), to_convert) #TODO def test_field2text.... #TODO def test_field2required.... #TODO def test_field2int.... #TODO def test_field2float.... #TODO def test_field2tokens.... def test_field2lines_with_list(self): from ZPublisher.Converters import field2lines to_convert = ['one', 'two'] self.assertEqual(field2lines(to_convert), to_convert) def test_field2lines_with_tuple(self): from ZPublisher.Converters import field2lines to_convert = ('one', 'two') self.assertEqual(field2lines(to_convert), list(to_convert)) def test_field2lines_with_empty_string(self): from ZPublisher.Converters import field2lines to_convert = '' self.assertEqual(field2lines(to_convert), []) def test_field2lines_with_string_no_newlines(self): from ZPublisher.Converters import field2lines to_convert = 'abc def ghi' self.assertEqual(field2lines(to_convert), [to_convert]) def test_field2lines_with_string_with_newlines(self): from ZPublisher.Converters import field2lines to_convert = 'abc\ndef\nghi' self.assertEqual(field2lines(to_convert), to_convert.splitlines()) #TODO def test_field2date.... #TODO def test_field2date_international.... #TODO def test_field2boolean.... #TODO def test_field2ustring.... #TODO def test_field2utokens.... #TODO def test_field2utext.... def test_field2ulines_with_list(self): from ZPublisher.Converters import field2ulines to_convert = [u'one', 'two'] self.assertEqual(field2ulines(to_convert), [unicode(x) for x in to_convert]) def test_field2ulines_with_tuple(self): from ZPublisher.Converters import field2ulines to_convert = (u'one', 'two') self.assertEqual(field2ulines(to_convert), [unicode(x) for x in to_convert]) def test_field2ulines_with_empty_string(self): from ZPublisher.Converters import field2ulines to_convert = '' self.assertEqual(field2ulines(to_convert), []) def test_field2ulines_with_string_no_newlines(self): from ZPublisher.Converters import field2ulines to_convert = u'abc def ghi' self.assertEqual(field2ulines(to_convert), [to_convert]) def test_field2ulines_with_string_with_newlines(self): from ZPublisher.Converters import field2ulines to_convert = u'abc\ndef\nghi' self.assertEqual(field2ulines(to_convert), to_convert.splitlines()) def test_suite(): return unittest.TestSuite((unittest.makeSuite(ConvertersTests),)) if __name__ == '__main__': unittest.main(defaultTest='test_suite')