| 
									
										
										
										
											2009-02-09 20:40:42 +00:00
										 |  |  | import unittest | 
					
						
							|  |  |  | import tkinter | 
					
						
							| 
									
										
										
										
											2021-10-13 19:12:48 +03:00
										 |  |  | from test.support import requires | 
					
						
							| 
									
										
										
										
											2022-06-22 22:23:37 +02:00
										 |  |  | from test.test_tkinter.support import AbstractTkTest | 
					
						
							| 
									
										
										
										
											2009-02-09 20:40:42 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | requires('gui') | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-24 09:07:47 +03:00
										 |  |  | class TextTest(AbstractTkTest, unittest.TestCase): | 
					
						
							| 
									
										
										
										
											2009-02-09 20:40:42 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def setUp(self): | 
					
						
							| 
									
										
										
										
											2014-08-24 09:07:47 +03:00
										 |  |  |         super().setUp() | 
					
						
							| 
									
										
										
										
											2009-02-09 20:40:42 +00:00
										 |  |  |         self.text = tkinter.Text(self.root) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-03 14:29:35 +02:00
										 |  |  |     def test_debug(self): | 
					
						
							|  |  |  |         text = self.text | 
					
						
							|  |  |  |         olddebug = text.debug() | 
					
						
							|  |  |  |         try: | 
					
						
							|  |  |  |             text.debug(0) | 
					
						
							| 
									
										
										
										
											2014-01-11 13:13:46 +02:00
										 |  |  |             self.assertEqual(text.debug(), 0) | 
					
						
							| 
									
										
										
										
											2013-11-03 14:29:35 +02:00
										 |  |  |             text.debug(1) | 
					
						
							| 
									
										
										
										
											2014-01-11 13:13:46 +02:00
										 |  |  |             self.assertEqual(text.debug(), 1) | 
					
						
							| 
									
										
										
										
											2013-11-03 14:29:35 +02:00
										 |  |  |         finally: | 
					
						
							|  |  |  |             text.debug(olddebug) | 
					
						
							|  |  |  |             self.assertEqual(text.debug(), olddebug) | 
					
						
							| 
									
										
										
										
											2009-02-09 20:40:42 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def test_search(self): | 
					
						
							|  |  |  |         text = self.text | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # pattern and index are obligatory arguments. | 
					
						
							| 
									
										
										
										
											2009-06-30 23:06:06 +00:00
										 |  |  |         self.assertRaises(tkinter.TclError, text.search, None, '1.0') | 
					
						
							|  |  |  |         self.assertRaises(tkinter.TclError, text.search, 'a', None) | 
					
						
							|  |  |  |         self.assertRaises(tkinter.TclError, text.search, None, None) | 
					
						
							| 
									
										
										
										
											2009-02-09 20:40:42 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         # Invalid text index. | 
					
						
							| 
									
										
										
										
											2009-06-30 23:06:06 +00:00
										 |  |  |         self.assertRaises(tkinter.TclError, text.search, '', 0) | 
					
						
							| 
									
										
										
										
											2009-02-09 20:40:42 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         # Check if we are getting the indices as strings -- you are likely | 
					
						
							|  |  |  |         # to get Tcl_Obj under Tk 8.5 if Tkinter doesn't convert it. | 
					
						
							|  |  |  |         text.insert('1.0', 'hi-test') | 
					
						
							| 
									
										
										
										
											2009-06-30 23:06:06 +00:00
										 |  |  |         self.assertEqual(text.search('-test', '1.0', 'end'), '1.2') | 
					
						
							|  |  |  |         self.assertEqual(text.search('test', '1.0', 'end'), '1.3') | 
					
						
							| 
									
										
										
										
											2009-02-09 20:40:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-19 09:17:45 +03:00
										 |  |  |     def test_count(self): | 
					
						
							|  |  |  |         # XXX Some assertions do not check against the intended result, | 
					
						
							|  |  |  |         # but instead check the current result to prevent regression. | 
					
						
							|  |  |  |         text = self.text | 
					
						
							|  |  |  |         text.insert('1.0', | 
					
						
							|  |  |  |             'Lorem ipsum dolor sit amet,\n' | 
					
						
							|  |  |  |             'consectetur adipiscing elit,\n' | 
					
						
							|  |  |  |             'sed do eiusmod tempor incididunt\n' | 
					
						
							|  |  |  |             'ut labore et dolore magna aliqua.') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         options = ('chars', 'indices', 'lines', | 
					
						
							|  |  |  |                    'displaychars', 'displayindices', 'displaylines', | 
					
						
							|  |  |  |                    'xpixels', 'ypixels') | 
					
						
							|  |  |  |         if self.wantobjects: | 
					
						
							|  |  |  |             self.assertEqual(len(text.count('1.0', 'end', *options)), 8) | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             text.count('1.0', 'end', *options) | 
					
						
							|  |  |  |         self.assertEqual(text.count('1.0', 'end', 'chars', 'lines'), (124, 4) | 
					
						
							|  |  |  |                          if self.wantobjects else '124 4') | 
					
						
							|  |  |  |         self.assertEqual(text.count('1.3', '4.5', 'chars', 'lines'), (92, 3) | 
					
						
							|  |  |  |                          if self.wantobjects else '92 3') | 
					
						
							|  |  |  |         self.assertEqual(text.count('4.5', '1.3', 'chars', 'lines'), (-92, -3) | 
					
						
							|  |  |  |                          if self.wantobjects else '-92 -3') | 
					
						
							|  |  |  |         self.assertEqual(text.count('1.3', '1.3', 'chars', 'lines'), (0, 0) | 
					
						
							|  |  |  |                          if self.wantobjects else '0 0') | 
					
						
							|  |  |  |         self.assertEqual(text.count('1.0', 'end', 'lines'), (4,) | 
					
						
							|  |  |  |                          if self.wantobjects else ('4',)) | 
					
						
							|  |  |  |         self.assertEqual(text.count('end', '1.0', 'lines'), (-4,) | 
					
						
							|  |  |  |                          if self.wantobjects else ('-4',)) | 
					
						
							|  |  |  |         self.assertEqual(text.count('1.3', '1.5', 'lines'), None | 
					
						
							|  |  |  |                          if self.wantobjects else ('0',)) | 
					
						
							|  |  |  |         self.assertEqual(text.count('1.3', '1.3', 'lines'), None | 
					
						
							|  |  |  |                          if self.wantobjects else ('0',)) | 
					
						
							|  |  |  |         self.assertEqual(text.count('1.0', 'end'), (124,)  # 'indices' by default | 
					
						
							|  |  |  |                          if self.wantobjects else ('124',)) | 
					
						
							|  |  |  |         self.assertRaises(tkinter.TclError, text.count, '1.0', 'end', 'spam') | 
					
						
							| 
									
										
										
										
											2022-10-19 12:30:14 +03:00
										 |  |  |         self.assertRaises(tkinter.TclError, text.count, '1.0', 'end', '-lines') | 
					
						
							| 
									
										
										
										
											2022-10-19 09:17:45 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  |         self.assertIsInstance(text.count('1.3', '1.5', 'ypixels'), tuple) | 
					
						
							|  |  |  |         self.assertIsInstance(text.count('1.3', '1.5', 'update', 'ypixels'), int | 
					
						
							|  |  |  |                               if self.wantobjects else str) | 
					
						
							|  |  |  |         self.assertEqual(text.count('1.3', '1.3', 'update', 'ypixels'), None | 
					
						
							|  |  |  |                          if self.wantobjects else '0') | 
					
						
							|  |  |  |         self.assertEqual(text.count('1.3', '1.5', 'update', 'indices'), 2 | 
					
						
							|  |  |  |                          if self.wantobjects else '2') | 
					
						
							|  |  |  |         self.assertEqual(text.count('1.3', '1.3', 'update', 'indices'), None | 
					
						
							|  |  |  |                          if self.wantobjects else '0') | 
					
						
							|  |  |  |         self.assertEqual(text.count('1.3', '1.5', 'update'), (2,) | 
					
						
							|  |  |  |                          if self.wantobjects else ('2',)) | 
					
						
							|  |  |  |         self.assertEqual(text.count('1.3', '1.3', 'update'), None | 
					
						
							|  |  |  |                          if self.wantobjects else ('0',)) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-09 20:40:42 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | if __name__ == "__main__": | 
					
						
							| 
									
										
										
										
											2021-10-13 19:12:48 +03:00
										 |  |  |     unittest.main() |