Commit f34e03ec authored by Terry Jan Reedy's avatar Terry Jan Reedy Committed by GitHub

bpo-32826: Add "encoding=utf-8" to open() in idle_test/test_help_about. (GH-5639)

GUI test test_file_buttons() only looks at initial ascii-only lines,
but failed on systems where open() defaults to 'ascii' because
readline() internally reads and decodes far enough ahead to encounter
a non-ascii character in CREDITS.txt.
parent 7766b96a
...@@ -50,31 +50,33 @@ class LiveDialogTest(unittest.TestCase): ...@@ -50,31 +50,33 @@ class LiveDialogTest(unittest.TestCase):
def test_printer_buttons(self): def test_printer_buttons(self):
"""Test buttons whose commands use printer function.""" """Test buttons whose commands use printer function."""
dialog = self.dialog dialog = self.dialog
button_sources = [(dialog.py_license, license), button_sources = [(dialog.py_license, license, 'license'),
(dialog.py_copyright, copyright), (dialog.py_copyright, copyright, 'copyright'),
(dialog.py_credits, credits)] (dialog.py_credits, credits, 'credits')]
for button, printer in button_sources: for button, printer, name in button_sources:
with self.subTest(name=name):
printer._Printer__setup() printer._Printer__setup()
button.invoke() button.invoke()
get = dialog._current_textview.viewframe.textframe.text.get get = dialog._current_textview.viewframe.textframe.text.get
self.assertEqual(printer._Printer__lines[0], get('1.0', '1.end')) lines = printer._Printer__lines
self.assertEqual( self.assertEqual(lines[0], get('1.0', '1.end'))
printer._Printer__lines[1], get('2.0', '2.end')) self.assertEqual(lines[1], get('2.0', '2.end'))
dialog._current_textview.destroy() dialog._current_textview.destroy()
def test_file_buttons(self): def test_file_buttons(self):
"""Test buttons that display files.""" """Test buttons that display files."""
dialog = self.dialog dialog = self.dialog
button_sources = [(self.dialog.readme, 'README.txt'), button_sources = [(self.dialog.readme, 'README.txt', 'readme'),
(self.dialog.idle_news, 'NEWS.txt'), (self.dialog.idle_news, 'NEWS.txt', 'news'),
(self.dialog.idle_credits, 'CREDITS.txt')] (self.dialog.idle_credits, 'CREDITS.txt', 'credits')]
for button, filename in button_sources: for button, filename, name in button_sources:
with self.subTest(name=name):
button.invoke() button.invoke()
fn = findfile(filename, subdir='idlelib') fn = findfile(filename, subdir='idlelib')
get = dialog._current_textview.viewframe.textframe.text.get get = dialog._current_textview.viewframe.textframe.text.get
with open(fn) as f: with open(fn, encoding='utf-8') as f:
self.assertEqual(f.readline().strip(), get('1.0', '1.end')) self.assertEqual(f.readline().strip(), get('1.0', '1.end'))
f.readline() f.readline()
self.assertEqual(f.readline().strip(), get('3.0', '3.end')) self.assertEqual(f.readline().strip(), get('3.0', '3.end'))
......
Add "encoding=utf-8" to open() in IDLE's test_help_about.
GUI test test_file_buttons() only looks at initial ascii-only lines,
but failed on systems where open() defaults to 'ascii' because
readline() internally reads and decodes far enough ahead to encounter
a non-ascii character in CREDITS.txt.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment