| 
									
										
										
										
											2003-02-06 17:42:45 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-07 17:03:15 +00:00
										 |  |  | import os, filecmp, shutil, tempfile | 
					
						
							| 
									
										
										
										
											2003-02-06 17:42:45 +00:00
										 |  |  | import unittest | 
					
						
							|  |  |  | from test import test_support | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class FileCompareTestCase(unittest.TestCase): | 
					
						
							|  |  |  |     def setUp(self): | 
					
						
							|  |  |  |         self.name = test_support.TESTFN | 
					
						
							|  |  |  |         self.name_same = test_support.TESTFN + '-same' | 
					
						
							|  |  |  |         self.name_diff = test_support.TESTFN + '-diff' | 
					
						
							|  |  |  |         data = 'Contents of file go here.\n' | 
					
						
							|  |  |  |         for name in [self.name, self.name_same, self.name_diff]: | 
					
						
							|  |  |  |             output = open(name, 'w') | 
					
						
							|  |  |  |             output.write(data) | 
					
						
							|  |  |  |             output.close() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         output = open(self.name_diff, 'a+') | 
					
						
							|  |  |  |         output.write('An extra line.\n') | 
					
						
							|  |  |  |         output.close() | 
					
						
							|  |  |  |         self.dir = tempfile.gettempdir() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def tearDown(self): | 
					
						
							|  |  |  |         os.unlink(self.name) | 
					
						
							|  |  |  |         os.unlink(self.name_same) | 
					
						
							|  |  |  |         os.unlink(self.name_diff) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def test_matching(self): | 
					
						
							| 
									
										
										
										
											2009-06-30 22:57:08 +00:00
										 |  |  |         self.assertTrue(filecmp.cmp(self.name, self.name_same), | 
					
						
							| 
									
										
										
										
											2003-02-06 17:42:45 +00:00
										 |  |  |                         "Comparing file to itself fails") | 
					
						
							| 
									
										
										
										
											2009-06-30 22:57:08 +00:00
										 |  |  |         self.assertTrue(filecmp.cmp(self.name, self.name_same, shallow=False), | 
					
						
							| 
									
										
										
										
											2003-02-06 17:42:45 +00:00
										 |  |  |                         "Comparing file to itself fails") | 
					
						
							| 
									
										
										
										
											2009-06-30 22:57:08 +00:00
										 |  |  |         self.assertTrue(filecmp.cmp(self.name, self.name, shallow=False), | 
					
						
							| 
									
										
										
										
											2003-02-06 17:42:45 +00:00
										 |  |  |                         "Comparing file to identical file fails") | 
					
						
							| 
									
										
										
										
											2009-06-30 22:57:08 +00:00
										 |  |  |         self.assertTrue(filecmp.cmp(self.name, self.name), | 
					
						
							| 
									
										
										
										
											2003-02-06 17:42:45 +00:00
										 |  |  |                         "Comparing file to identical file fails") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def test_different(self): | 
					
						
							| 
									
										
										
										
											2009-06-30 22:57:08 +00:00
										 |  |  |         self.assertFalse(filecmp.cmp(self.name, self.name_diff), | 
					
						
							| 
									
										
										
										
											2003-02-06 17:42:45 +00:00
										 |  |  |                     "Mismatched files compare as equal") | 
					
						
							| 
									
										
										
										
											2009-06-30 22:57:08 +00:00
										 |  |  |         self.assertFalse(filecmp.cmp(self.name, self.dir), | 
					
						
							| 
									
										
										
										
											2003-02-06 17:42:45 +00:00
										 |  |  |                     "File and directory compare as equal") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class DirCompareTestCase(unittest.TestCase): | 
					
						
							|  |  |  |     def setUp(self): | 
					
						
							|  |  |  |         tmpdir = tempfile.gettempdir() | 
					
						
							|  |  |  |         self.dir = os.path.join(tmpdir, 'dir') | 
					
						
							|  |  |  |         self.dir_same = os.path.join(tmpdir, 'dir-same') | 
					
						
							|  |  |  |         self.dir_diff = os.path.join(tmpdir, 'dir-diff') | 
					
						
							| 
									
										
										
										
											2003-09-02 06:59:21 +00:00
										 |  |  |         self.caseinsensitive = os.path.normcase('A') == os.path.normcase('a') | 
					
						
							| 
									
										
										
										
											2003-02-06 17:42:45 +00:00
										 |  |  |         data = 'Contents of file go here.\n' | 
					
						
							|  |  |  |         for dir in [self.dir, self.dir_same, self.dir_diff]: | 
					
						
							| 
									
										
										
										
											2006-07-22 17:00:57 +00:00
										 |  |  |             shutil.rmtree(dir, True) | 
					
						
							| 
									
										
										
										
											2003-02-06 17:42:45 +00:00
										 |  |  |             os.mkdir(dir) | 
					
						
							| 
									
										
										
										
											2003-09-02 06:59:21 +00:00
										 |  |  |             if self.caseinsensitive and dir is self.dir_same: | 
					
						
							| 
									
										
										
										
											2003-09-02 05:42:02 +00:00
										 |  |  |                 fn = 'FiLe'     # Verify case-insensitive comparison | 
					
						
							|  |  |  |             else: | 
					
						
							|  |  |  |                 fn = 'file' | 
					
						
							|  |  |  |             output = open(os.path.join(dir, fn), 'w') | 
					
						
							| 
									
										
										
										
											2003-02-06 17:42:45 +00:00
										 |  |  |             output.write(data) | 
					
						
							|  |  |  |             output.close() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         output = open(os.path.join(self.dir_diff, 'file2'), 'w') | 
					
						
							|  |  |  |         output.write('An extra file.\n') | 
					
						
							|  |  |  |         output.close() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def tearDown(self): | 
					
						
							|  |  |  |         shutil.rmtree(self.dir) | 
					
						
							|  |  |  |         shutil.rmtree(self.dir_same) | 
					
						
							|  |  |  |         shutil.rmtree(self.dir_diff) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def test_cmpfiles(self): | 
					
						
							| 
									
										
										
										
											2009-06-30 22:57:08 +00:00
										 |  |  |         self.assertTrue(filecmp.cmpfiles(self.dir, self.dir, ['file']) == | 
					
						
							| 
									
										
										
										
											2003-02-06 17:42:45 +00:00
										 |  |  |                         (['file'], [], []), | 
					
						
							|  |  |  |                         "Comparing directory to itself fails") | 
					
						
							| 
									
										
										
										
											2009-06-30 22:57:08 +00:00
										 |  |  |         self.assertTrue(filecmp.cmpfiles(self.dir, self.dir_same, ['file']) == | 
					
						
							| 
									
										
										
										
											2003-02-06 17:42:45 +00:00
										 |  |  |                         (['file'], [], []), | 
					
						
							|  |  |  |                         "Comparing directory to same fails") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # Try it with shallow=False | 
					
						
							| 
									
										
										
										
											2009-06-30 22:57:08 +00:00
										 |  |  |         self.assertTrue(filecmp.cmpfiles(self.dir, self.dir, ['file'], | 
					
						
							| 
									
										
										
										
											2003-02-06 17:42:45 +00:00
										 |  |  |                                          shallow=False) == | 
					
						
							|  |  |  |                         (['file'], [], []), | 
					
						
							|  |  |  |                         "Comparing directory to itself fails") | 
					
						
							| 
									
										
										
										
											2009-06-30 22:57:08 +00:00
										 |  |  |         self.assertTrue(filecmp.cmpfiles(self.dir, self.dir_same, ['file'], | 
					
						
							| 
									
										
										
										
											2003-02-06 17:42:45 +00:00
										 |  |  |                                          shallow=False), | 
					
						
							|  |  |  |                         "Comparing directory to same fails") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # Add different file2 | 
					
						
							|  |  |  |         output = open(os.path.join(self.dir, 'file2'), 'w') | 
					
						
							|  |  |  |         output.write('Different contents.\n') | 
					
						
							|  |  |  |         output.close() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-30 22:57:08 +00:00
										 |  |  |         self.assertFalse(filecmp.cmpfiles(self.dir, self.dir_same, | 
					
						
							| 
									
										
										
										
											2003-02-06 17:42:45 +00:00
										 |  |  |                                      ['file', 'file2']) == | 
					
						
							|  |  |  |                     (['file'], ['file2'], []), | 
					
						
							|  |  |  |                     "Comparing mismatched directories fails") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def test_dircmp(self): | 
					
						
							|  |  |  |         # Check attributes for comparison of two identical directories | 
					
						
							|  |  |  |         d = filecmp.dircmp(self.dir, self.dir_same) | 
					
						
							| 
									
										
										
										
											2003-09-02 06:59:21 +00:00
										 |  |  |         if self.caseinsensitive: | 
					
						
							|  |  |  |             self.assertEqual([d.left_list, d.right_list],[['file'], ['FiLe']]) | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             self.assertEqual([d.left_list, d.right_list],[['file'], ['file']]) | 
					
						
							| 
									
										
										
										
											2009-06-30 22:57:08 +00:00
										 |  |  |         self.assertTrue(d.common == ['file']) | 
					
						
							|  |  |  |         self.assertTrue(d.left_only == d.right_only == []) | 
					
						
							|  |  |  |         self.assertTrue(d.same_files == ['file']) | 
					
						
							|  |  |  |         self.assertTrue(d.diff_files == []) | 
					
						
							| 
									
										
										
										
											2003-02-06 17:42:45 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         # Check attributes for comparison of two different directories | 
					
						
							|  |  |  |         d = filecmp.dircmp(self.dir, self.dir_diff) | 
					
						
							| 
									
										
										
										
											2009-06-30 22:57:08 +00:00
										 |  |  |         self.assertTrue(d.left_list == ['file']) | 
					
						
							|  |  |  |         self.assertTrue(d.right_list == ['file', 'file2']) | 
					
						
							|  |  |  |         self.assertTrue(d.common == ['file']) | 
					
						
							|  |  |  |         self.assertTrue(d.left_only == []) | 
					
						
							|  |  |  |         self.assertTrue(d.right_only == ['file2']) | 
					
						
							|  |  |  |         self.assertTrue(d.same_files == ['file']) | 
					
						
							|  |  |  |         self.assertTrue(d.diff_files == []) | 
					
						
							| 
									
										
										
										
											2003-02-06 17:42:45 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         # Add different file2 | 
					
						
							|  |  |  |         output = open(os.path.join(self.dir, 'file2'), 'w') | 
					
						
							|  |  |  |         output.write('Different contents.\n') | 
					
						
							|  |  |  |         output.close() | 
					
						
							|  |  |  |         d = filecmp.dircmp(self.dir, self.dir_diff) | 
					
						
							| 
									
										
										
										
											2009-06-30 22:57:08 +00:00
										 |  |  |         self.assertTrue(d.same_files == ['file']) | 
					
						
							|  |  |  |         self.assertTrue(d.diff_files == ['file2']) | 
					
						
							| 
									
										
										
										
											2003-02-06 17:42:45 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def test_main(): | 
					
						
							| 
									
										
										
										
											2003-05-01 17:45:56 +00:00
										 |  |  |     test_support.run_unittest(FileCompareTestCase, DirCompareTestCase) | 
					
						
							| 
									
										
										
										
											2003-02-06 17:42:45 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | if __name__ == "__main__": | 
					
						
							|  |  |  |     test_main() |