2009-04-12 11:57:46 -03:00
|
|
|
"""Tests for distutils.command.config."""
|
|
|
|
import unittest
|
|
|
|
import os
|
|
|
|
|
2009-04-12 13:34:34 -03:00
|
|
|
from distutils.command.config import dump_file, config
|
2009-04-12 11:57:46 -03:00
|
|
|
from distutils.tests import support
|
|
|
|
from distutils import log
|
|
|
|
|
|
|
|
class ConfigTestCase(support.LoggingSilencer,
|
|
|
|
support.TempdirManager,
|
|
|
|
unittest.TestCase):
|
|
|
|
|
2009-04-12 13:34:34 -03:00
|
|
|
def _info(self, msg, *args):
|
2009-04-12 11:57:46 -03:00
|
|
|
for line in msg.splitlines():
|
|
|
|
self._logs.append(line)
|
|
|
|
|
|
|
|
def setUp(self):
|
|
|
|
super(ConfigTestCase, self).setUp()
|
|
|
|
self._logs = []
|
|
|
|
self.old_log = log.info
|
|
|
|
log.info = self._info
|
|
|
|
|
|
|
|
def tearDown(self):
|
|
|
|
log.info = self.old_log
|
|
|
|
super(ConfigTestCase, self).tearDown()
|
|
|
|
|
|
|
|
def test_dump_file(self):
|
|
|
|
this_file = os.path.splitext(__file__)[0] + '.py'
|
|
|
|
f = open(this_file)
|
|
|
|
try:
|
|
|
|
numlines = len(f.readlines())
|
|
|
|
finally:
|
|
|
|
f.close()
|
|
|
|
|
|
|
|
dump_file(this_file, 'I am the header')
|
|
|
|
self.assertEquals(len(self._logs), numlines+1)
|
|
|
|
|
2009-04-12 13:34:34 -03:00
|
|
|
def test_search_cpp(self):
|
|
|
|
pkg_dir, dist = self.create_dist()
|
|
|
|
cmd = config(dist)
|
|
|
|
|
|
|
|
# simple pattern searches
|
|
|
|
match = cmd.search_cpp(pattern='xxx', body='// xxx')
|
|
|
|
self.assertEquals(match, 0)
|
|
|
|
|
|
|
|
match = cmd.search_cpp(pattern='command', body='// xxx')
|
|
|
|
self.assertEquals(match, 1)
|
|
|
|
|
2009-04-12 11:57:46 -03:00
|
|
|
def test_suite():
|
|
|
|
return unittest.makeSuite(ConfigTestCase)
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
unittest.main(defaultTest="test_suite")
|