2008-03-18 12:35:27 -03:00
|
|
|
"""Test correct operation of the print function.
|
|
|
|
"""
|
|
|
|
|
Merged revisions 61672,61674,61676-61678,61681,61683-61684 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r61672 | brett.cannon | 2008-03-20 17:13:48 +0100 (Do, 20 Mär 2008) | 2 lines
Gave Jerry Seutter svn access for general Python development.
........
r61674 | marc-andre.lemburg | 2008-03-20 18:31:36 +0100 (Do, 20 Mär 2008) | 7 lines
If Mark Hammonds win32 tools are not available, try to use the _winreg module
and sys.getwindowsversion() to get at the Windows version info.
For the machine and processor uname() values, use the environment variables
for these on Windows XP and later.
........
r61676 | marc-andre.lemburg | 2008-03-20 18:55:31 +0100 (Do, 20 Mär 2008) | 5 lines
Add documentation for updated Windows support in win32_ver().
Add documentation for linux_distribution() API.
........
r61677 | marc-andre.lemburg | 2008-03-20 19:08:00 +0100 (Do, 20 Mär 2008) | 2 lines
Add news items for platform module changes.
........
r61678 | marc-andre.lemburg | 2008-03-20 19:58:14 +0100 (Do, 20 Mär 2008) | 3 lines
Clarfiy the availability of the extended support for win32_ver() in Py2.6.
........
r61681 | andrew.kuchling | 2008-03-20 23:49:26 +0100 (Do, 20 Mär 2008) | 1 line
Add lots of items
........
r61683 | eric.smith | 2008-03-21 00:04:04 +0100 (Fr, 21 Mär 2008) | 1 line
Fixed PEP name.
........
r61684 | eric.smith | 2008-03-21 00:56:08 +0100 (Fr, 21 Mär 2008) | 1 line
Comment how 'from __future__ import print_function' operates in 3.0.
........
2008-03-20 22:11:52 -03:00
|
|
|
# In 2.6, this gives us the behavior we want. In 3.0, it has
|
|
|
|
# no function, but it still must parse correctly.
|
2008-03-20 20:02:08 -03:00
|
|
|
from __future__ import print_function
|
|
|
|
|
2008-03-18 12:35:27 -03:00
|
|
|
import unittest
|
2008-05-20 18:35:26 -03:00
|
|
|
from test import support
|
2008-03-18 12:35:27 -03:00
|
|
|
|
|
|
|
import sys
|
2008-03-18 20:48:28 -03:00
|
|
|
try:
|
|
|
|
# 3.x
|
|
|
|
from io import StringIO
|
|
|
|
except ImportError:
|
|
|
|
# 2.x
|
|
|
|
from StringIO import StringIO
|
|
|
|
|
2008-03-18 12:35:27 -03:00
|
|
|
NotDefined = object()
|
|
|
|
|
|
|
|
# A dispatch table all 8 combinations of providing
|
|
|
|
# sep, end, and file
|
|
|
|
# I use this machinery so that I'm not just passing default
|
|
|
|
# values to print, I'm eiher passing or not passing in the
|
|
|
|
# arguments
|
|
|
|
dispatch = {
|
|
|
|
(False, False, False):
|
|
|
|
lambda args, sep, end, file: print(*args),
|
|
|
|
(False, False, True):
|
|
|
|
lambda args, sep, end, file: print(file=file, *args),
|
|
|
|
(False, True, False):
|
|
|
|
lambda args, sep, end, file: print(end=end, *args),
|
|
|
|
(False, True, True):
|
|
|
|
lambda args, sep, end, file: print(end=end, file=file, *args),
|
|
|
|
(True, False, False):
|
|
|
|
lambda args, sep, end, file: print(sep=sep, *args),
|
|
|
|
(True, False, True):
|
|
|
|
lambda args, sep, end, file: print(sep=sep, file=file, *args),
|
|
|
|
(True, True, False):
|
|
|
|
lambda args, sep, end, file: print(sep=sep, end=end, *args),
|
|
|
|
(True, True, True):
|
|
|
|
lambda args, sep, end, file: print(sep=sep, end=end, file=file, *args),
|
|
|
|
}
|
|
|
|
|
|
|
|
# Class used to test __str__ and print
|
|
|
|
class ClassWith__str__:
|
|
|
|
def __init__(self, x):
|
|
|
|
self.x = x
|
|
|
|
def __str__(self):
|
|
|
|
return self.x
|
|
|
|
|
|
|
|
class TestPrint(unittest.TestCase):
|
2008-03-18 20:48:28 -03:00
|
|
|
def check(self, expected, args,
|
2008-03-18 12:35:27 -03:00
|
|
|
sep=NotDefined, end=NotDefined, file=NotDefined):
|
|
|
|
# Capture sys.stdout in a StringIO. Call print with args,
|
|
|
|
# and with sep, end, and file, if they're defined. Result
|
|
|
|
# must match expected.
|
|
|
|
|
|
|
|
# Look up the actual function to call, based on if sep, end, and file
|
|
|
|
# are defined
|
|
|
|
fn = dispatch[(sep is not NotDefined,
|
|
|
|
end is not NotDefined,
|
|
|
|
file is not NotDefined)]
|
|
|
|
|
2008-05-20 18:35:26 -03:00
|
|
|
with support.captured_stdout() as t:
|
2008-03-18 12:35:27 -03:00
|
|
|
fn(args, sep, end, file)
|
|
|
|
|
|
|
|
self.assertEqual(t.getvalue(), expected)
|
|
|
|
|
|
|
|
def test_print(self):
|
2008-03-18 20:48:28 -03:00
|
|
|
def x(expected, args, sep=NotDefined, end=NotDefined):
|
2008-03-18 12:35:27 -03:00
|
|
|
# Run the test 2 ways: not using file, and using
|
|
|
|
# file directed to a StringIO
|
|
|
|
|
|
|
|
self.check(expected, args, sep=sep, end=end)
|
|
|
|
|
|
|
|
# When writing to a file, stdout is expected to be empty
|
2008-03-18 20:48:28 -03:00
|
|
|
o = StringIO()
|
2008-03-18 12:35:27 -03:00
|
|
|
self.check('', args, sep=sep, end=end, file=o)
|
|
|
|
|
|
|
|
# And o will contain the expected output
|
|
|
|
self.assertEqual(o.getvalue(), expected)
|
|
|
|
|
|
|
|
x('\n', ())
|
|
|
|
x('a\n', ('a',))
|
|
|
|
x('None\n', (None,))
|
|
|
|
x('1 2\n', (1, 2))
|
2008-03-18 20:48:28 -03:00
|
|
|
x('1 2\n', (1, ' ', 2))
|
2008-03-18 12:35:27 -03:00
|
|
|
x('1*2\n', (1, 2), sep='*')
|
|
|
|
x('1 s', (1, 's'), end='')
|
|
|
|
x('a\nb\n', ('a', 'b'), sep='\n')
|
|
|
|
x('1.01', (1.0, 1), sep='', end='')
|
|
|
|
x('1*a*1.3+', (1, 'a', 1.3), sep='*', end='+')
|
2008-03-18 20:48:28 -03:00
|
|
|
x('a\n\nb\n', ('a\n', 'b'), sep='\n')
|
|
|
|
x('\0+ +\0\n', ('\0', ' ', '\0'), sep='+')
|
|
|
|
|
|
|
|
x('a\n b\n', ('a\n', 'b'))
|
|
|
|
x('a\n b\n', ('a\n', 'b'), sep=None)
|
|
|
|
x('a\n b\n', ('a\n', 'b'), end=None)
|
|
|
|
x('a\n b\n', ('a\n', 'b'), sep=None, end=None)
|
2008-03-18 12:35:27 -03:00
|
|
|
|
|
|
|
x('*\n', (ClassWith__str__('*'),))
|
2008-03-18 20:48:28 -03:00
|
|
|
x('abc 1\n', (ClassWith__str__('abc'), 1))
|
|
|
|
|
2008-03-20 20:02:08 -03:00
|
|
|
# # 2.x unicode tests
|
|
|
|
# x(u'1 2\n', ('1', u'2'))
|
|
|
|
# x(u'u\1234\n', (u'u\1234',))
|
|
|
|
# x(u' abc 1\n', (' ', ClassWith__str__(u'abc'), 1))
|
|
|
|
|
2008-03-18 20:48:28 -03:00
|
|
|
# errors
|
|
|
|
self.assertRaises(TypeError, print, '', sep=3)
|
|
|
|
self.assertRaises(TypeError, print, '', end=3)
|
|
|
|
self.assertRaises(AttributeError, print, '', file='')
|
2008-03-18 12:35:27 -03:00
|
|
|
|
|
|
|
def test_main():
|
2008-05-20 18:35:26 -03:00
|
|
|
support.run_unittest(TestPrint)
|
2008-03-18 12:35:27 -03:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
test_main()
|