mirror of
https://github.com/python/cpython.git
synced 2026-03-30 00:21:21 +00:00
svn+ssh://pythondev@svn.python.org/python/branches/py3k
................
r74990 | tarek.ziade | 2009-09-21 15:01:54 +0200 (Mon, 21 Sep 2009) | 9 lines
Merged revisions 74988 via svnmerge from
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)
........
................
42 lines
1.3 KiB
Python
42 lines
1.3 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.assertEquals(glob_to_re('foo*'), 'foo[^/]*$')
|
|
self.assertEquals(glob_to_re('foo?'), 'foo[^/]$')
|
|
self.assertEquals(glob_to_re('foo??'), 'foo[^/][^/]$')
|
|
|
|
# special cases
|
|
self.assertEquals(glob_to_re(r'foo\\*'), r'foo\\\\[^/]*$')
|
|
self.assertEquals(glob_to_re(r'foo\\\*'), r'foo\\\\\\[^/]*$')
|
|
self.assertEquals(glob_to_re('foo????'), r'foo[^/][^/][^/][^/]$')
|
|
self.assertEquals(glob_to_re(r'foo\\??'), r'foo\\\\[^/][^/]$')
|
|
|
|
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")
|