##// END OF EJS Templates
test LazyEvaluate with non-ascii input
MinRK -
Show More
@@ -1,74 +1,95
1 # -*- coding: utf-8
1 # -*- coding: utf-8
2 """Tests for prompt generation."""
2 """Tests for prompt generation."""
3
3
4 import unittest
4 import unittest
5
5
6 import os
6 import os
7 import nose.tools as nt
7 import nose.tools as nt
8
8
9 from IPython.testing import tools as tt, decorators as dec
9 from IPython.testing import tools as tt, decorators as dec
10 from IPython.core.prompts import PromptManager
10 from IPython.core.prompts import PromptManager, LazyEvaluate
11 from IPython.testing.globalipapp import get_ipython
11 from IPython.testing.globalipapp import get_ipython
12 from IPython.utils import py3compat
12 from IPython.utils.tempdir import TemporaryDirectory
13 from IPython.utils.tempdir import TemporaryDirectory
13
14
14 ip = get_ipython()
15 ip = get_ipython()
15
16
16
17
17 class PromptTests(unittest.TestCase):
18 class PromptTests(unittest.TestCase):
18 def setUp(self):
19 def setUp(self):
19 self.pm = PromptManager(shell=ip, config=ip.config)
20 self.pm = PromptManager(shell=ip, config=ip.config)
20
21
21 def test_multiline_prompt(self):
22 def test_multiline_prompt(self):
22 self.pm.in_template = "[In]\n>>>"
23 self.pm.in_template = "[In]\n>>>"
23 self.pm.render('in')
24 self.pm.render('in')
24 self.assertEqual(self.pm.width, 3)
25 self.assertEqual(self.pm.width, 3)
25 self.assertEqual(self.pm.txtwidth, 3)
26 self.assertEqual(self.pm.txtwidth, 3)
26
27
27 self.pm.in_template = '[In]\n'
28 self.pm.in_template = '[In]\n'
28 self.pm.render('in')
29 self.pm.render('in')
29 self.assertEqual(self.pm.width, 0)
30 self.assertEqual(self.pm.width, 0)
30 self.assertEqual(self.pm.txtwidth, 0)
31 self.assertEqual(self.pm.txtwidth, 0)
31
32
32 def test_translate_abbreviations(self):
33 def test_translate_abbreviations(self):
33 def do_translate(template):
34 def do_translate(template):
34 self.pm.in_template = template
35 self.pm.in_template = template
35 return self.pm.templates['in']
36 return self.pm.templates['in']
36
37
37 pairs = [(r'%n>', '{color.number}{count}{color.prompt}>'),
38 pairs = [(r'%n>', '{color.number}{count}{color.prompt}>'),
38 (r'\T', '{time}'),
39 (r'\T', '{time}'),
39 (r'\n', '\n')
40 (r'\n', '\n')
40 ]
41 ]
41
42
42 tt.check_pairs(do_translate, pairs)
43 tt.check_pairs(do_translate, pairs)
43
44
44 def test_user_ns(self):
45 def test_user_ns(self):
45 self.pm.color_scheme = 'NoColor'
46 self.pm.color_scheme = 'NoColor'
46 ip.ex("foo='bar'")
47 ip.ex("foo='bar'")
47 self.pm.in_template = "In [{foo}]"
48 self.pm.in_template = "In [{foo}]"
48 prompt = self.pm.render('in')
49 prompt = self.pm.render('in')
49 self.assertEquals(prompt, u'In [bar]')
50 self.assertEquals(prompt, u'In [bar]')
50
51
51 def test_builtins(self):
52 def test_builtins(self):
52 self.pm.color_scheme = 'NoColor'
53 self.pm.color_scheme = 'NoColor'
53 self.pm.in_template = "In [{int}]"
54 self.pm.in_template = "In [{int}]"
54 prompt = self.pm.render('in')
55 prompt = self.pm.render('in')
55 self.assertEquals(prompt, u"In [%r]" % int)
56 self.assertEquals(prompt, u"In [%r]" % int)
56
57
57 def test_undefined(self):
58 def test_undefined(self):
58 self.pm.color_scheme = 'NoColor'
59 self.pm.color_scheme = 'NoColor'
59 self.pm.in_template = "In [{foo_dne}]"
60 self.pm.in_template = "In [{foo_dne}]"
60 prompt = self.pm.render('in')
61 prompt = self.pm.render('in')
61 self.assertEquals(prompt, u"In [<ERROR: 'foo_dne' not found>]")
62 self.assertEquals(prompt, u"In [<ERROR: 'foo_dne' not found>]")
62
63
63 def test_render(self):
64 def test_render(self):
64 self.pm.in_template = r'\#>'
65 self.pm.in_template = r'\#>'
65 self.assertEqual(self.pm.render('in',color=False), '%d>' % ip.execution_count)
66 self.assertEqual(self.pm.render('in',color=False), '%d>' % ip.execution_count)
66
67
67 def test_render_unicode_cwd(self):
68 def test_render_unicode_cwd(self):
68 save = os.getcwdu()
69 save = os.getcwdu()
69 with TemporaryDirectory(u'ünicødé') as td:
70 with TemporaryDirectory(u'ünicødé') as td:
70 os.chdir(td)
71 os.chdir(td)
71 self.pm.in_template = r'\w [\#]'
72 self.pm.in_template = r'\w [\#]'
72 p = self.pm.render('in', color=False)
73 p = self.pm.render('in', color=False)
73 self.assertEquals(p, u"%s [%i]" % (os.getcwdu(), ip.execution_count))
74 self.assertEquals(p, u"%s [%i]" % (os.getcwdu(), ip.execution_count))
74 os.chdir(save)
75 os.chdir(save)
76
77 def test_lazy_eval_unicode(self):
78 u = u'ünicødé'
79 lz = LazyEvaluate(lambda : u)
80 self.assertEquals(str(lz), py3compat.unicode_to_str(u))
81 self.assertEquals(unicode(lz), u)
82 self.assertEquals(format(lz), u)
83
84 def test_lazy_eval_nonascii_bytes(self):
85 u = u'ünicødé'
86 b = u.encode('utf8')
87 lz = LazyEvaluate(lambda : b)
88 if py3compat.PY3:
89 self.assertEquals(str(lz), str(b))
90 self.assertEquals(format(lz), str(b))
91 else:
92 self.assertEquals(str(lz), b)
93 self.assertRaises(UnicodeDecodeError, unicode, lz)
94 self.assertRaises(UnicodeDecodeError, format, lz)
95
General Comments 0
You need to be logged in to leave comments. Login now