mirror of
https://github.com/python/cpython.git
synced 2025-12-04 16:43:27 +00:00
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r86596 | ezio.melotti | 2010-11-20 21:04:17 +0200 (Sat, 20 Nov 2010) | 1 line #9424: Replace deprecated assert* methods in the Python test suite. ........
42 lines
1.4 KiB
Python
42 lines
1.4 KiB
Python
"""Tests for distutils.filelist."""
|
|
import unittest
|
|
|
|
from distutils.filelist import glob_to_re, FileList
|
|
from test.support import captured_stdout
|
|
from distutils import debug
|
|
|
|
class FileListTestCase(unittest.TestCase):
|
|
|
|
def test_glob_to_re(self):
|
|
# simple cases
|
|
self.assertEqual(glob_to_re('foo*'), 'foo[^/]*\\Z(?ms)')
|
|
self.assertEqual(glob_to_re('foo?'), 'foo[^/]\\Z(?ms)')
|
|
self.assertEqual(glob_to_re('foo??'), 'foo[^/][^/]\\Z(?ms)')
|
|
|
|
# special cases
|
|
self.assertEqual(glob_to_re(r'foo\\*'), r'foo\\\\[^/]*\Z(?ms)')
|
|
self.assertEqual(glob_to_re(r'foo\\\*'), r'foo\\\\\\[^/]*\Z(?ms)')
|
|
self.assertEqual(glob_to_re('foo????'), r'foo[^/][^/][^/][^/]\Z(?ms)')
|
|
self.assertEqual(glob_to_re(r'foo\\??'), r'foo\\\\[^/][^/]\Z(?ms)')
|
|
|
|
def test_debug_print(self):
|
|
file_list = FileList()
|
|
with captured_stdout() as stdout:
|
|
file_list.debug_print('xxx')
|
|
stdout.seek(0)
|
|
self.assertEqual(stdout.read(), '')
|
|
|
|
debug.DEBUG = True
|
|
try:
|
|
with captured_stdout() as stdout:
|
|
file_list.debug_print('xxx')
|
|
stdout.seek(0)
|
|
self.assertEqual(stdout.read(), 'xxx\n')
|
|
finally:
|
|
debug.DEBUG = False
|
|
|
|
def test_suite():
|
|
return unittest.makeSuite(FileListTestCase)
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main(defaultTest="test_suite")
|