mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 05:31:20 +00:00 
			
		
		
		
	 03d5d08798
			
		
	
	
		03d5d08798
		
	
	
	
	
		
			
			svn+ssh://pythondev@svn.python.org/python/trunk ........ r74988 | tarek.ziade | 2009-09-21 14:19:07 +0200 (Mon, 21 Sep 2009) | 1 line improved distutils test coverage: now the DEBUG mode is covered too (will help fix the issue #6954 in py3k branch) ........
		
			
				
	
	
		
			85 lines
		
	
	
	
		
			2.8 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			85 lines
		
	
	
	
		
			2.8 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
| """Tests for distutils.filelist."""
 | |
| from os.path import join
 | |
| import unittest
 | |
| from test.support import captured_stdout
 | |
| 
 | |
| from distutils.filelist import glob_to_re, FileList
 | |
| from distutils import debug
 | |
| 
 | |
| MANIFEST_IN = """\
 | |
| include ok
 | |
| include xo
 | |
| exclude xo
 | |
| include foo.tmp
 | |
| global-include *.x
 | |
| global-include *.txt
 | |
| global-exclude *.tmp
 | |
| recursive-include f *.oo
 | |
| recursive-exclude global *.x
 | |
| graft dir
 | |
| prune dir3
 | |
| """
 | |
| 
 | |
| class FileListTestCase(unittest.TestCase):
 | |
| 
 | |
|     def test_glob_to_re(self):
 | |
|         # simple cases
 | |
|         self.assertEquals(glob_to_re('foo*'), 'foo[^/]*\\Z(?ms)')
 | |
|         self.assertEquals(glob_to_re('foo?'), 'foo[^/]\\Z(?ms)')
 | |
|         self.assertEquals(glob_to_re('foo??'), 'foo[^/][^/]\\Z(?ms)')
 | |
| 
 | |
|         # special cases
 | |
|         self.assertEquals(glob_to_re(r'foo\\*'), r'foo\\\\[^/]*\Z(?ms)')
 | |
|         self.assertEquals(glob_to_re(r'foo\\\*'), r'foo\\\\\\[^/]*\Z(?ms)')
 | |
|         self.assertEquals(glob_to_re('foo????'), r'foo[^/][^/][^/][^/]\Z(?ms)')
 | |
|         self.assertEquals(glob_to_re(r'foo\\??'), r'foo\\\\[^/][^/]\Z(?ms)')
 | |
| 
 | |
|     def test_process_template_line(self):
 | |
|         # testing  all MANIFEST.in template patterns
 | |
|         file_list = FileList()
 | |
| 
 | |
|         # simulated file list
 | |
|         file_list.allfiles = ['foo.tmp', 'ok', 'xo', 'four.txt',
 | |
|                               join('global', 'one.txt'),
 | |
|                               join('global', 'two.txt'),
 | |
|                               join('global', 'files.x'),
 | |
|                               join('global', 'here.tmp'),
 | |
|                               join('f', 'o', 'f.oo'),
 | |
|                               join('dir', 'graft-one'),
 | |
|                               join('dir', 'dir2', 'graft2'),
 | |
|                               join('dir3', 'ok'),
 | |
|                               join('dir3', 'sub', 'ok.txt')
 | |
|                               ]
 | |
| 
 | |
|         for line in MANIFEST_IN.split('\n'):
 | |
|             if line.strip() == '':
 | |
|                 continue
 | |
|             file_list.process_template_line(line)
 | |
| 
 | |
|         wanted = ['ok', 'four.txt', join('global', 'one.txt'),
 | |
|                   join('global', 'two.txt'), join('f', 'o', 'f.oo'),
 | |
|                   join('dir', 'graft-one'), join('dir', 'dir2', 'graft2')]
 | |
| 
 | |
|         self.assertEquals(file_list.files, wanted)
 | |
| 
 | |
|     def test_debug_print(self):
 | |
|         file_list = FileList()
 | |
|         with captured_stdout() as stdout:
 | |
|             file_list.debug_print('xxx')
 | |
|         stdout.seek(0)
 | |
|         self.assertEquals(stdout.read(), '')
 | |
| 
 | |
|         debug.DEBUG = True
 | |
|         try:
 | |
|             with captured_stdout() as stdout:
 | |
|                 file_list.debug_print('xxx')
 | |
|             stdout.seek(0)
 | |
|             self.assertEquals(stdout.read(), 'xxx\n')
 | |
|         finally:
 | |
|             debug.DEBUG = False
 | |
| 
 | |
| def test_suite():
 | |
|     return unittest.makeSuite(FileListTestCase)
 | |
| 
 | |
| if __name__ == "__main__":
 | |
|     unittest.main(defaultTest="test_suite")
 |