2009-04-05 18:49:36 -03:00
|
|
|
"""Tests for distutils.filelist."""
|
|
|
|
import unittest
|
2009-09-21 10:10:05 -03:00
|
|
|
|
|
|
|
from distutils.filelist import glob_to_re, FileList
|
|
|
|
from test.support import captured_stdout
|
|
|
|
from distutils import debug
|
2009-04-05 18:49:36 -03:00
|
|
|
|
|
|
|
class FileListTestCase(unittest.TestCase):
|
|
|
|
|
|
|
|
def test_glob_to_re(self):
|
|
|
|
# simple cases
|
2009-11-01 19:11:55 -04:00
|
|
|
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)')
|
2009-04-05 18:49:36 -03:00
|
|
|
|
|
|
|
# special cases
|
2009-11-01 19:11:55 -04:00
|
|
|
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)')
|
2009-04-05 18:49:36 -03:00
|
|
|
|
2009-09-21 10:10:05 -03:00
|
|
|
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
|
|
|
|
|
2009-04-05 18:49:36 -03:00
|
|
|
def test_suite():
|
|
|
|
return unittest.makeSuite(FileListTestCase)
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
unittest.main(defaultTest="test_suite")
|