mirror of
https://github.com/python/cpython.git
synced 2025-08-30 21:48:47 +00:00
Tidy up the additional string module tests added at the Pycon sprints (closes #11505)
This commit is contained in:
parent
441531f6e6
commit
62ecb6aa0a
4 changed files with 62 additions and 46 deletions
|
@ -26,15 +26,38 @@ class ModuleTest(unittest.TestCase):
|
|||
self.assertEqual(string.capwords('\taBc\tDeF\t'), 'Abc Def')
|
||||
self.assertEqual(string.capwords('\taBc\tDeF\t', '\t'), '\tAbc\tDef\t')
|
||||
|
||||
def test_formatter(self):
|
||||
def test_basic_formatter(self):
|
||||
fmt = string.Formatter()
|
||||
self.assertEqual(fmt.format("foo"), "foo")
|
||||
|
||||
self.assertEqual(fmt.format("foo{0}", "bar"), "foobar")
|
||||
self.assertEqual(fmt.format("foo{1}{0}-{1}", "bar", 6), "foo6bar-6")
|
||||
self.assertEqual(fmt.format("-{arg!r}-", arg='test'), "-'test'-")
|
||||
|
||||
# override get_value ############################################
|
||||
def test_conversion_specifiers(self):
|
||||
fmt = string.Formatter()
|
||||
self.assertEqual(fmt.format("-{arg!r}-", arg='test'), "-'test'-")
|
||||
self.assertEqual(fmt.format("{0!s}", 'test'), 'test')
|
||||
self.assertRaises(ValueError, fmt.format, "{0!h}", 'test')
|
||||
|
||||
def test_name_lookup(self):
|
||||
fmt = string.Formatter()
|
||||
class AnyAttr:
|
||||
def __getattr__(self, attr):
|
||||
return attr
|
||||
x = AnyAttr()
|
||||
self.assertEqual(fmt.format("{0.lumber}{0.jack}", x), 'lumberjack')
|
||||
with self.assertRaises(AttributeError):
|
||||
fmt.format("{0.lumber}{0.jack}", '')
|
||||
|
||||
def test_index_lookup(self):
|
||||
fmt = string.Formatter()
|
||||
lookup = ["eggs", "and", "spam"]
|
||||
self.assertEqual(fmt.format("{0[2]}{0[0]}", lookup), 'spameggs')
|
||||
with self.assertRaises(IndexError):
|
||||
fmt.format("{0[2]}{0[0]}", [])
|
||||
with self.assertRaises(KeyError):
|
||||
fmt.format("{0[2]}{0[0]}", {})
|
||||
|
||||
def test_override_get_value(self):
|
||||
class NamespaceFormatter(string.Formatter):
|
||||
def __init__(self, namespace={}):
|
||||
string.Formatter.__init__(self)
|
||||
|
@ -54,7 +77,7 @@ class ModuleTest(unittest.TestCase):
|
|||
self.assertEqual(fmt.format("{greeting}, world!"), 'hello, world!')
|
||||
|
||||
|
||||
# override format_field #########################################
|
||||
def test_override_format_field(self):
|
||||
class CallFormatter(string.Formatter):
|
||||
def format_field(self, value, format_spec):
|
||||
return format(value(), format_spec)
|
||||
|
@ -63,18 +86,18 @@ class ModuleTest(unittest.TestCase):
|
|||
self.assertEqual(fmt.format('*{0}*', lambda : 'result'), '*result*')
|
||||
|
||||
|
||||
# override convert_field ########################################
|
||||
def test_override_convert_field(self):
|
||||
class XFormatter(string.Formatter):
|
||||
def convert_field(self, value, conversion):
|
||||
if conversion == 'x':
|
||||
return None
|
||||
return super(XFormatter, self).convert_field(value, conversion)
|
||||
return super().convert_field(value, conversion)
|
||||
|
||||
fmt = XFormatter()
|
||||
self.assertEqual(fmt.format("{0!r}:{0!x}", 'foo', 'foo'), "'foo':None")
|
||||
|
||||
|
||||
# override parse ################################################
|
||||
def test_override_parse(self):
|
||||
class BarFormatter(string.Formatter):
|
||||
# returns an iterable that contains tuples of the form:
|
||||
# (literal_text, field_name, format_spec, conversion)
|
||||
|
@ -90,7 +113,7 @@ class ModuleTest(unittest.TestCase):
|
|||
fmt = BarFormatter()
|
||||
self.assertEqual(fmt.format('*|+0:^10s|*', 'foo'), '* foo *')
|
||||
|
||||
# test all parameters used
|
||||
def test_check_unused_args(self):
|
||||
class CheckAllUsedFormatter(string.Formatter):
|
||||
def check_unused_args(self, used_args, args, kwargs):
|
||||
# Track which arguments actually got used
|
||||
|
@ -112,28 +135,13 @@ class ModuleTest(unittest.TestCase):
|
|||
self.assertRaises(ValueError, fmt.format, "{0}", 10, 20, i=100)
|
||||
self.assertRaises(ValueError, fmt.format, "{i}", 10, 20, i=100)
|
||||
|
||||
def test_vformat_assert(self):
|
||||
cls = string.Formatter()
|
||||
kwargs = {
|
||||
"i": 100
|
||||
}
|
||||
self.assertRaises(ValueError, cls._vformat,
|
||||
cls.format, "{0}", kwargs, set(), -2)
|
||||
|
||||
def test_convert_field(self):
|
||||
cls = string.Formatter()
|
||||
self.assertEqual(cls.format("{0!s}", 'foo'), 'foo')
|
||||
self.assertRaises(ValueError, cls.format, "{0!h}", 'foo')
|
||||
|
||||
def test_get_field(self):
|
||||
cls = string.Formatter()
|
||||
class MyClass:
|
||||
name = 'lumberjack'
|
||||
x = MyClass()
|
||||
self.assertEqual(cls.format("{0.name}", x), 'lumberjack')
|
||||
|
||||
lookup = ["eggs", "and", "spam"]
|
||||
self.assertEqual(cls.format("{0[2]}", lookup), 'spam')
|
||||
def test_vformat_recursion_limit(self):
|
||||
fmt = string.Formatter()
|
||||
args = ()
|
||||
kwargs = dict(i=100)
|
||||
with self.assertRaises(ValueError) as err:
|
||||
fmt._vformat("{i}", args, kwargs, set(), -1)
|
||||
self.assertIn("recursion", str(err.exception))
|
||||
|
||||
|
||||
def test_main():
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue