2004-02-18 01:59:53 -04:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
import unittest
|
|
|
|
import os
|
2008-05-20 18:35:26 -03:00
|
|
|
from test import support
|
Merged revisions 70734,70775,70856,70874,70876-70877 via svnmerge
........
r70734 | r.david.murray | 2009-03-30 15:04:00 -0400 (Mon, 30 Mar 2009) | 7 lines
Add import_function method to test.test_support, and modify a number of
tests that expect to be skipped if imports fail or functions don't
exist to use import_function and import_module. The ultimate goal is
to change regrtest to not skip automatically on ImportError. Checking
in now to make sure the buldbots don't show any errors on platforms
I can't direct test on.
........
r70775 | r.david.murray | 2009-03-30 19:05:48 -0400 (Mon, 30 Mar 2009) | 4 lines
Change more tests to use import_module for the modules that
should cause tests to be skipped. Also rename import_function
to the more descriptive get_attribute and add a docstring.
........
r70856 | r.david.murray | 2009-03-31 14:32:17 -0400 (Tue, 31 Mar 2009) | 7 lines
A few more test skips via import_module, and change import_module to
return the error message produced by importlib, so that if an import
in the package whose import is being wrapped is what failed the skip
message will contain the name of that module instead of the name of the
wrapped module. Also fixed formatting of some previous comments.
........
r70874 | r.david.murray | 2009-03-31 15:33:15 -0400 (Tue, 31 Mar 2009) | 5 lines
Improve test_support.import_module docstring, remove
deprecated flag from get_attribute since it isn't likely
to do anything useful.
........
r70876 | r.david.murray | 2009-03-31 15:49:15 -0400 (Tue, 31 Mar 2009) | 4 lines
Remove the regrtest check that turns any ImportError into a skipped test.
Hopefully all modules whose imports legitimately result in a skipped
test have been properly wrapped by the previous commits.
........
r70877 | r.david.murray | 2009-03-31 15:57:24 -0400 (Tue, 31 Mar 2009) | 2 lines
Add NEWS entry for regrtest change.
........
2009-03-31 20:16:50 -03:00
|
|
|
|
|
|
|
# Skip this test if the _tkinter module wasn't built.
|
|
|
|
_tkinter = support.import_module('_tkinter')
|
|
|
|
|
2009-02-06 22:33:47 -04:00
|
|
|
from tkinter import Tcl
|
2004-02-18 01:59:53 -04:00
|
|
|
from _tkinter import TclError
|
|
|
|
|
Merged revisions 68884,68973,68978,69003,69083,69112-69113 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r68884 | kristjan.jonsson | 2009-01-24 04:52:26 -0600 (Sat, 24 Jan 2009) | 1 line
Add a test for UNC import paths, see issue 3677
........
r68973 | georg.brandl | 2009-01-26 15:29:38 -0600 (Mon, 26 Jan 2009) | 2 lines
Copy over docs on advanced role features from Sphinx docs.
........
r68978 | mark.dickinson | 2009-01-26 15:51:56 -0600 (Mon, 26 Jan 2009) | 3 lines
Issue #5073: Fix occasional failure of bsddb/test/test_lock.py. Thanks
Hirokazu Yamamoto for the patch.
........
r69003 | benjamin.peterson | 2009-01-26 21:07:53 -0600 (Mon, 26 Jan 2009) | 1 line
excellent place to use a set() #5069
........
r69083 | benjamin.peterson | 2009-01-28 21:03:00 -0600 (Wed, 28 Jan 2009) | 1 line
fix download url
........
r69112 | benjamin.peterson | 2009-01-29 20:02:25 -0600 (Thu, 29 Jan 2009) | 1 line
pep8tify conditionals
........
r69113 | benjamin.peterson | 2009-01-29 20:24:39 -0600 (Thu, 29 Jan 2009) | 1 line
make _tkinter._flatten check the result of PySequence_Size for errors #3880
........
2009-01-29 23:39:35 -04:00
|
|
|
|
|
|
|
class TkinterTest(unittest.TestCase):
|
|
|
|
|
|
|
|
def testFlattenLen(self):
|
|
|
|
# flatten(<object with no length>)
|
|
|
|
self.assertRaises(TypeError, _tkinter._flatten, True)
|
|
|
|
|
|
|
|
|
2004-02-18 01:59:53 -04:00
|
|
|
class TclTest(unittest.TestCase):
|
|
|
|
|
|
|
|
def setUp(self):
|
|
|
|
self.interp = Tcl()
|
|
|
|
|
|
|
|
def testEval(self):
|
|
|
|
tcl = self.interp
|
|
|
|
tcl.eval('set a 1')
|
|
|
|
self.assertEqual(tcl.eval('set a'),'1')
|
|
|
|
|
|
|
|
def testEvalException(self):
|
|
|
|
tcl = self.interp
|
|
|
|
self.assertRaises(TclError,tcl.eval,'set a')
|
|
|
|
|
|
|
|
def testEvalException2(self):
|
|
|
|
tcl = self.interp
|
|
|
|
self.assertRaises(TclError,tcl.eval,'this is wrong')
|
|
|
|
|
|
|
|
def testCall(self):
|
|
|
|
tcl = self.interp
|
|
|
|
tcl.call('set','a','1')
|
|
|
|
self.assertEqual(tcl.call('set','a'),'1')
|
|
|
|
|
|
|
|
def testCallException(self):
|
|
|
|
tcl = self.interp
|
|
|
|
self.assertRaises(TclError,tcl.call,'set','a')
|
|
|
|
|
|
|
|
def testCallException2(self):
|
|
|
|
tcl = self.interp
|
|
|
|
self.assertRaises(TclError,tcl.call,'this','is','wrong')
|
|
|
|
|
|
|
|
def testSetVar(self):
|
|
|
|
tcl = self.interp
|
|
|
|
tcl.setvar('a','1')
|
|
|
|
self.assertEqual(tcl.eval('set a'),'1')
|
|
|
|
|
|
|
|
def testSetVarArray(self):
|
|
|
|
tcl = self.interp
|
|
|
|
tcl.setvar('a(1)','1')
|
|
|
|
self.assertEqual(tcl.eval('set a(1)'),'1')
|
|
|
|
|
|
|
|
def testGetVar(self):
|
|
|
|
tcl = self.interp
|
|
|
|
tcl.eval('set a 1')
|
|
|
|
self.assertEqual(tcl.getvar('a'),'1')
|
|
|
|
|
|
|
|
def testGetVarArray(self):
|
|
|
|
tcl = self.interp
|
|
|
|
tcl.eval('set a(1) 1')
|
|
|
|
self.assertEqual(tcl.getvar('a(1)'),'1')
|
|
|
|
|
|
|
|
def testGetVarException(self):
|
|
|
|
tcl = self.interp
|
|
|
|
self.assertRaises(TclError,tcl.getvar,'a')
|
|
|
|
|
|
|
|
def testGetVarArrayException(self):
|
|
|
|
tcl = self.interp
|
|
|
|
self.assertRaises(TclError,tcl.getvar,'a(1)')
|
|
|
|
|
|
|
|
def testUnsetVar(self):
|
|
|
|
tcl = self.interp
|
|
|
|
tcl.setvar('a',1)
|
|
|
|
self.assertEqual(tcl.eval('info exists a'),'1')
|
|
|
|
tcl.unsetvar('a')
|
|
|
|
self.assertEqual(tcl.eval('info exists a'),'0')
|
|
|
|
|
|
|
|
def testUnsetVarArray(self):
|
|
|
|
tcl = self.interp
|
|
|
|
tcl.setvar('a(1)',1)
|
|
|
|
tcl.setvar('a(2)',2)
|
|
|
|
self.assertEqual(tcl.eval('info exists a(1)'),'1')
|
|
|
|
self.assertEqual(tcl.eval('info exists a(2)'),'1')
|
|
|
|
tcl.unsetvar('a(1)')
|
|
|
|
self.assertEqual(tcl.eval('info exists a(1)'),'0')
|
|
|
|
self.assertEqual(tcl.eval('info exists a(2)'),'1')
|
|
|
|
|
|
|
|
def testUnsetVarException(self):
|
|
|
|
tcl = self.interp
|
|
|
|
self.assertRaises(TclError,tcl.unsetvar,'a')
|
2004-07-08 01:22:35 -03:00
|
|
|
|
2004-02-18 01:59:53 -04:00
|
|
|
def testEvalFile(self):
|
|
|
|
tcl = self.interp
|
|
|
|
filename = "testEvalFile.tcl"
|
|
|
|
fd = open(filename,'w')
|
|
|
|
script = """set a 1
|
|
|
|
set b 2
|
|
|
|
set c [ expr $a + $b ]
|
|
|
|
"""
|
|
|
|
fd.write(script)
|
|
|
|
fd.close()
|
|
|
|
tcl.evalfile(filename)
|
2004-02-29 11:37:50 -04:00
|
|
|
os.remove(filename)
|
2004-02-18 01:59:53 -04:00
|
|
|
self.assertEqual(tcl.eval('set a'),'1')
|
|
|
|
self.assertEqual(tcl.eval('set b'),'2')
|
|
|
|
self.assertEqual(tcl.eval('set c'),'3')
|
|
|
|
|
|
|
|
def testEvalFileException(self):
|
|
|
|
tcl = self.interp
|
|
|
|
filename = "doesnotexists"
|
|
|
|
try:
|
|
|
|
os.remove(filename)
|
2007-01-10 12:19:56 -04:00
|
|
|
except Exception as e:
|
2004-02-18 01:59:53 -04:00
|
|
|
pass
|
|
|
|
self.assertRaises(TclError,tcl.evalfile,filename)
|
|
|
|
|
|
|
|
def testPackageRequireException(self):
|
|
|
|
tcl = self.interp
|
|
|
|
self.assertRaises(TclError,tcl.eval,'package require DNE')
|
|
|
|
|
|
|
|
|
2004-02-18 22:37:29 -04:00
|
|
|
def test_main():
|
Merged revisions 68884,68973,68978,69003,69083,69112-69113 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r68884 | kristjan.jonsson | 2009-01-24 04:52:26 -0600 (Sat, 24 Jan 2009) | 1 line
Add a test for UNC import paths, see issue 3677
........
r68973 | georg.brandl | 2009-01-26 15:29:38 -0600 (Mon, 26 Jan 2009) | 2 lines
Copy over docs on advanced role features from Sphinx docs.
........
r68978 | mark.dickinson | 2009-01-26 15:51:56 -0600 (Mon, 26 Jan 2009) | 3 lines
Issue #5073: Fix occasional failure of bsddb/test/test_lock.py. Thanks
Hirokazu Yamamoto for the patch.
........
r69003 | benjamin.peterson | 2009-01-26 21:07:53 -0600 (Mon, 26 Jan 2009) | 1 line
excellent place to use a set() #5069
........
r69083 | benjamin.peterson | 2009-01-28 21:03:00 -0600 (Wed, 28 Jan 2009) | 1 line
fix download url
........
r69112 | benjamin.peterson | 2009-01-29 20:02:25 -0600 (Thu, 29 Jan 2009) | 1 line
pep8tify conditionals
........
r69113 | benjamin.peterson | 2009-01-29 20:24:39 -0600 (Thu, 29 Jan 2009) | 1 line
make _tkinter._flatten check the result of PySequence_Size for errors #3880
........
2009-01-29 23:39:35 -04:00
|
|
|
support.run_unittest(TclTest, TkinterTest)
|
2004-02-18 01:59:53 -04:00
|
|
|
|
2004-02-18 22:37:29 -04:00
|
|
|
if __name__ == "__main__":
|
|
|
|
test_main()
|