diff options
author | Nick Coghlan <ncoghlan@gmail.com> | 2011-03-16 18:30:45 (GMT) |
---|---|---|
committer | Nick Coghlan <ncoghlan@gmail.com> | 2011-03-16 18:30:45 (GMT) |
commit | 7462fa654ba50b3ab19f3bea37816b5894990618 (patch) | |
tree | de48f62d7124537ecc3553cff6a8bab4fc60f5e5 /Lib | |
parent | 454e11d874055f200bee84002447e50d5d467bf2 (diff) | |
download | cpython-7462fa654ba50b3ab19f3bea37816b5894990618.zip cpython-7462fa654ba50b3ab19f3bea37816b5894990618.tar.gz cpython-7462fa654ba50b3ab19f3bea37816b5894990618.tar.bz2 |
Backport improved test coverage for string.py
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_pep292.py | 13 | ||||
-rw-r--r-- | Lib/test/test_string.py | 24 |
2 files changed, 37 insertions, 0 deletions
diff --git a/Lib/test/test_pep292.py b/Lib/test/test_pep292.py index a967649..119c7ea 100644 --- a/Lib/test/test_pep292.py +++ b/Lib/test/test_pep292.py @@ -42,6 +42,19 @@ class TestTemplate(unittest.TestCase): s = Template('$who likes $$') eq(s.substitute(dict(who='tim', what='ham')), 'tim likes $') + def test_invalid(self): + class MyPattern(Template): + pattern = r""" + (?: + (?P<invalid>) | + (?P<escaped>%(delim)s) | + @(?P<named>%(id)s) | + @{(?P<braced>%(id)s)} + ) + """ + s = MyPattern('$') + self.assertRaises(ValueError, s.substitute, dict()) + def test_percents(self): eq = self.assertEqual s = Template('%(foo)s $foo ${foo}') diff --git a/Lib/test/test_string.py b/Lib/test/test_string.py index f46be63..a352ee3 100644 --- a/Lib/test/test_string.py +++ b/Lib/test/test_string.py @@ -112,6 +112,30 @@ 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_main(): support.run_unittest(ModuleTest) |