2016-11-07 18:15:01 -04:00
|
|
|
"""Test idlelib.configdialog.
|
2014-07-15 00:07:32 -03:00
|
|
|
|
2016-11-07 18:15:01 -04:00
|
|
|
Half the class creates dialog, half works with user customizations.
|
|
|
|
Coverage: 46% just by creating dialog, 56% with current tests.
|
|
|
|
"""
|
|
|
|
from idlelib.configdialog import ConfigDialog, idleConf # test import
|
2014-07-15 00:07:32 -03:00
|
|
|
from test.support import requires
|
2016-06-04 16:54:44 -03:00
|
|
|
requires('gui')
|
2014-07-15 00:07:32 -03:00
|
|
|
from tkinter import Tk
|
2016-06-04 16:54:44 -03:00
|
|
|
import unittest
|
2016-11-07 18:15:01 -04:00
|
|
|
import idlelib.config as config
|
2014-07-15 00:07:32 -03:00
|
|
|
|
2016-11-07 18:15:01 -04:00
|
|
|
# Tests should not depend on fortuitous user configurations.
|
|
|
|
# They must not affect actual user .cfg files.
|
|
|
|
# Use solution from test_config: empty parsers with no filename.
|
|
|
|
usercfg = idleConf.userCfg
|
|
|
|
testcfg = {
|
|
|
|
'main': config.IdleUserConfParser(''),
|
|
|
|
'highlight': config.IdleUserConfParser(''),
|
|
|
|
'keys': config.IdleUserConfParser(''),
|
|
|
|
'extensions': config.IdleUserConfParser(''),
|
|
|
|
}
|
2014-07-15 00:07:32 -03:00
|
|
|
|
2017-06-26 18:46:26 -03:00
|
|
|
# ConfigDialog.changed_items is a 3-level hierarchical dictionary of
|
2016-11-07 18:15:01 -04:00
|
|
|
# pending changes that mirrors the multilevel user config dict.
|
|
|
|
# For testing, record args in a list for comparison with expected.
|
|
|
|
changes = []
|
2017-06-26 18:46:26 -03:00
|
|
|
root = None
|
|
|
|
configure = None
|
|
|
|
|
|
|
|
|
2016-11-07 18:15:01 -04:00
|
|
|
class TestDialog(ConfigDialog):
|
2017-06-26 18:46:26 -03:00
|
|
|
def add_changed_item(self, *args):
|
2016-11-07 18:15:01 -04:00
|
|
|
changes.append(args)
|
2014-07-15 00:07:32 -03:00
|
|
|
|
2017-06-26 18:46:26 -03:00
|
|
|
|
2016-11-07 18:15:01 -04:00
|
|
|
def setUpModule():
|
|
|
|
global root, configure
|
|
|
|
idleConf.userCfg = testcfg
|
|
|
|
root = Tk()
|
|
|
|
root.withdraw()
|
|
|
|
configure = TestDialog(root, 'Test', _utest=True)
|
2014-07-15 00:07:32 -03:00
|
|
|
|
2016-11-07 18:15:01 -04:00
|
|
|
|
|
|
|
def tearDownModule():
|
|
|
|
global root, configure
|
2017-07-06 23:19:13 -03:00
|
|
|
idleConf.userCfg = usercfg
|
2016-11-07 18:15:01 -04:00
|
|
|
configure.remove_var_callbacks()
|
|
|
|
del configure
|
|
|
|
root.update_idletasks()
|
|
|
|
root.destroy()
|
|
|
|
del root
|
|
|
|
|
|
|
|
|
|
|
|
class FontTabTest(unittest.TestCase):
|
|
|
|
|
|
|
|
def setUp(self):
|
|
|
|
changes.clear()
|
|
|
|
|
|
|
|
def test_font(self):
|
2016-11-08 00:14:53 -04:00
|
|
|
# Set values guaranteed not to be defaults.
|
2017-06-26 18:46:26 -03:00
|
|
|
default_font = idleConf.GetFont(root, 'main', 'EditorWindow')
|
|
|
|
default_size = str(default_font[1])
|
|
|
|
default_bold = default_font[2] == 'bold'
|
|
|
|
configure.font_name.set('Test Font')
|
2016-11-07 18:15:01 -04:00
|
|
|
expected = [
|
|
|
|
('main', 'EditorWindow', 'font', 'Test Font'),
|
2017-06-26 18:46:26 -03:00
|
|
|
('main', 'EditorWindow', 'font-size', default_size),
|
|
|
|
('main', 'EditorWindow', 'font-bold', default_bold)]
|
2016-11-07 18:15:01 -04:00
|
|
|
self.assertEqual(changes, expected)
|
|
|
|
changes.clear()
|
2017-06-26 18:46:26 -03:00
|
|
|
configure.font_size.set(20)
|
2016-11-07 18:15:01 -04:00
|
|
|
expected = [
|
|
|
|
('main', 'EditorWindow', 'font', 'Test Font'),
|
2016-11-08 00:14:53 -04:00
|
|
|
('main', 'EditorWindow', 'font-size', '20'),
|
2017-06-26 18:46:26 -03:00
|
|
|
('main', 'EditorWindow', 'font-bold', default_bold)]
|
2016-11-07 18:15:01 -04:00
|
|
|
self.assertEqual(changes, expected)
|
|
|
|
changes.clear()
|
2017-06-26 18:46:26 -03:00
|
|
|
configure.font_bold.set(not default_bold)
|
2016-11-07 18:15:01 -04:00
|
|
|
expected = [
|
|
|
|
('main', 'EditorWindow', 'font', 'Test Font'),
|
2016-11-08 00:14:53 -04:00
|
|
|
('main', 'EditorWindow', 'font-size', '20'),
|
2017-06-26 18:46:26 -03:00
|
|
|
('main', 'EditorWindow', 'font-bold', not default_bold)]
|
2016-11-07 18:15:01 -04:00
|
|
|
self.assertEqual(changes, expected)
|
|
|
|
|
|
|
|
#def test_sample(self): pass # TODO
|
|
|
|
|
|
|
|
def test_tabspace(self):
|
2017-06-26 18:46:26 -03:00
|
|
|
configure.space_num.set(6)
|
2016-11-07 18:15:01 -04:00
|
|
|
self.assertEqual(changes, [('main', 'Indent', 'num-spaces', 6)])
|
|
|
|
|
|
|
|
|
|
|
|
class HighlightTest(unittest.TestCase):
|
|
|
|
|
|
|
|
def setUp(self):
|
|
|
|
changes.clear()
|
|
|
|
|
|
|
|
#def test_colorchoose(self): pass # TODO
|
|
|
|
|
|
|
|
|
|
|
|
class KeysTest(unittest.TestCase):
|
|
|
|
|
|
|
|
def setUp(self):
|
|
|
|
changes.clear()
|
|
|
|
|
|
|
|
|
|
|
|
class GeneralTest(unittest.TestCase):
|
|
|
|
|
|
|
|
def setUp(self):
|
|
|
|
changes.clear()
|
|
|
|
|
|
|
|
def test_startup(self):
|
2017-06-26 18:46:26 -03:00
|
|
|
configure.radio_startup_edit.invoke()
|
2016-11-07 18:15:01 -04:00
|
|
|
self.assertEqual(changes,
|
|
|
|
[('main', 'General', 'editor-on-startup', 1)])
|
|
|
|
|
|
|
|
def test_autosave(self):
|
2017-06-26 18:46:26 -03:00
|
|
|
configure.radio_save_auto.invoke()
|
2016-11-07 18:15:01 -04:00
|
|
|
self.assertEqual(changes, [('main', 'General', 'autosave', 1)])
|
|
|
|
|
|
|
|
def test_editor_size(self):
|
2017-06-26 18:46:26 -03:00
|
|
|
configure.entry_win_height.insert(0, '1')
|
2016-11-07 18:15:01 -04:00
|
|
|
self.assertEqual(changes, [('main', 'EditorWindow', 'height', '140')])
|
|
|
|
changes.clear()
|
2017-06-26 18:46:26 -03:00
|
|
|
configure.entry_win_width.insert(0, '1')
|
2016-11-07 18:15:01 -04:00
|
|
|
self.assertEqual(changes, [('main', 'EditorWindow', 'width', '180')])
|
|
|
|
|
|
|
|
#def test_help_sources(self): pass # TODO
|
2014-07-15 00:07:32 -03:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.main(verbosity=2)
|