| 
									
										
										
										
											2001-07-23 04:08:01 +00:00
										 |  |  | '''
 | 
					
						
							|  |  |  |    Tests for commands module | 
					
						
							|  |  |  |    Nick Mathewson | 
					
						
							|  |  |  | '''
 | 
					
						
							|  |  |  | import unittest | 
					
						
							|  |  |  | import os, tempfile, re | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-06-29 04:10:08 +00:00
										 |  |  | from test.test_support import TestSkipped, run_unittest, reap_children | 
					
						
							| 
									
										
										
										
											2001-07-23 04:08:01 +00:00
										 |  |  | from commands import * | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # The module says: | 
					
						
							|  |  |  | #   "NB This only works (and is only relevant) for UNIX." | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # Actually, getoutput should work on any platform with an os.popen, but | 
					
						
							|  |  |  | # I'll take the comment as given, and skip this suite. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | if os.name != 'posix': | 
					
						
							|  |  |  |     raise TestSkipped('Not posix; skipping test_commands') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class CommandTests(unittest.TestCase): | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def test_getoutput(self): | 
					
						
							|  |  |  |         self.assertEquals(getoutput('echo xyzzy'), 'xyzzy') | 
					
						
							|  |  |  |         self.assertEquals(getstatusoutput('echo xyzzy'), (0, 'xyzzy')) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-08-09 16:38:32 +00:00
										 |  |  |         # we use mkdtemp in the next line to create an empty directory | 
					
						
							|  |  |  |         # under our exclusive control; from that, we can invent a pathname | 
					
						
							|  |  |  |         # that we _know_ won't exist.  This is guaranteed to fail. | 
					
						
							| 
									
										
										
										
											2003-03-25 18:50:19 +00:00
										 |  |  |         dir = None | 
					
						
							| 
									
										
										
										
											2002-08-09 16:38:32 +00:00
										 |  |  |         try: | 
					
						
							|  |  |  |             dir = tempfile.mkdtemp() | 
					
						
							|  |  |  |             name = os.path.join(dir, "foo") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             status, output = getstatusoutput('cat ' + name) | 
					
						
							|  |  |  |             self.assertNotEquals(status, 0) | 
					
						
							|  |  |  |         finally: | 
					
						
							| 
									
										
										
										
											2003-03-25 18:50:19 +00:00
										 |  |  |             if dir is not None: | 
					
						
							|  |  |  |                 os.rmdir(dir) | 
					
						
							| 
									
										
										
										
											2001-07-23 04:08:01 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def test_getstatus(self): | 
					
						
							| 
									
										
										
										
											2002-04-01 23:56:03 +00:00
										 |  |  |         # This pattern should match 'ls -ld /.' on any posix | 
					
						
							| 
									
										
										
										
											2002-09-30 15:44:41 +00:00
										 |  |  |         # system, however perversely configured.  Even on systems | 
					
						
							|  |  |  |         # (e.g., Cygwin) where user and group names can have spaces: | 
					
						
							|  |  |  |         #     drwxr-xr-x   15 Administ Domain U     4096 Aug 12 12:50 / | 
					
						
							|  |  |  |         #     drwxr-xr-x   15 Joe User My Group     4096 Aug 12 12:50 / | 
					
						
							|  |  |  |         # Note that the first case above has a space in the group name | 
					
						
							|  |  |  |         # while the second one has a space in both names. | 
					
						
							| 
									
										
										
										
											2002-04-01 23:56:03 +00:00
										 |  |  |         pat = r'''d.........   # It is a directory.
 | 
					
						
							| 
									
										
										
										
											2002-12-05 20:18:39 +00:00
										 |  |  |                   \+?          # It may have ACLs. | 
					
						
							| 
									
										
										
										
											2001-07-23 04:08:01 +00:00
										 |  |  |                   \s+\d+       # It has some number of links. | 
					
						
							| 
									
										
										
										
											2002-09-30 15:44:41 +00:00
										 |  |  |                   [^/]*        # Skip user, group, size, and date. | 
					
						
							| 
									
										
										
										
											2002-06-06 09:52:49 +00:00
										 |  |  |                   /\.          # and end with the name of the file. | 
					
						
							| 
									
										
										
										
											2001-07-23 04:08:01 +00:00
										 |  |  |                '''
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-04-01 23:56:03 +00:00
										 |  |  |         self.assert_(re.match(pat, getstatus("/."), re.VERBOSE)) | 
					
						
							| 
									
										
										
										
											2001-07-23 04:08:01 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-09-20 21:33:42 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | def test_main(): | 
					
						
							|  |  |  |     run_unittest(CommandTests) | 
					
						
							| 
									
										
										
										
											2006-06-29 04:10:08 +00:00
										 |  |  |     reap_children() | 
					
						
							| 
									
										
										
										
											2001-09-20 21:33:42 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | if __name__ == "__main__": | 
					
						
							|  |  |  |     test_main() |