summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/tests/test_clean.py
diff options
context:
space:
mode:
authorTarek Ziadé <ziade.tarek@gmail.com>2009-03-31 20:50:59 (GMT)
committerTarek Ziadé <ziade.tarek@gmail.com>2009-03-31 20:50:59 (GMT)
commit023862890f9f3de1c71b1e98d59d675312e88afb (patch)
tree7cb79ee5fb9c9c81b44c6dc44286291f37cee2d4 /Lib/distutils/tests/test_clean.py
parentc7cd138bc2127079642ee8a3f2fa9d58c889dec0 (diff)
downloadcpython-023862890f9f3de1c71b1e98d59d675312e88afb.zip
cpython-023862890f9f3de1c71b1e98d59d675312e88afb.tar.gz
cpython-023862890f9f3de1c71b1e98d59d675312e88afb.tar.bz2
added tests for the clean command
Diffstat (limited to 'Lib/distutils/tests/test_clean.py')
-rwxr-xr-xLib/distutils/tests/test_clean.py49
1 files changed, 49 insertions, 0 deletions
diff --git a/Lib/distutils/tests/test_clean.py b/Lib/distutils/tests/test_clean.py
new file mode 100755
index 0000000..a94a812
--- /dev/null
+++ b/Lib/distutils/tests/test_clean.py
@@ -0,0 +1,49 @@
+"""Tests for distutils.command.clean."""
+import sys
+import os
+import unittest
+import getpass
+
+from distutils.command.clean import clean
+from distutils.tests import support
+
+class cleanTestCase(support.TempdirManager,
+ unittest.TestCase):
+
+ def test_simple_run(self):
+ pkg_dir, dist = self.create_dist()
+ cmd = clean(dist)
+
+ # let's add some elements clean should remove
+ dirs = [(d, os.path.join(pkg_dir, d))
+ for d in ('build_temp', 'build_lib', 'bdist_base',
+ 'build_scripts', 'build_base')]
+
+ for name, path in dirs:
+ os.mkdir(path)
+ setattr(cmd, name, path)
+ if name == 'build_base':
+ continue
+ for f in ('one', 'two', 'three'):
+ self.write_file(os.path.join(path, f))
+
+ # let's run the command
+ cmd.all = 1
+ cmd.ensure_finalized()
+ cmd.run()
+
+ # make sure the files where removed
+ for name, path in dirs:
+ self.assert_(not os.path.exists(path),
+ '%s was not removed' % path)
+
+ # let's run the command again (should spit warnings but suceed)
+ cmd.all = 1
+ cmd.ensure_finalized()
+ cmd.run()
+
+def test_suite():
+ return unittest.makeSuite(cleanTestCase)
+
+if __name__ == "__main__":
+ unittest.main(defaultTest="test_suite")