mirror of
				https://github.com/python/cpython.git
				synced 2025-10-30 21:21:22 +00:00 
			
		
		
		
	Merged revision 79605 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r79605 | antoine.pitrou | 2010-04-02 19:12:12 +0200 (ven, 02 avr 2010) | 3 lines Furniture is not very reliable these days (buildbot failures). ........
This commit is contained in:
		
							parent
							
								
									aeac26b9ea
								
							
						
					
					
						commit
						05609eff8a
					
				
					 1 changed files with 8 additions and 6 deletions
				
			
		|  | @ -1,6 +1,7 @@ | |||
| import io | ||||
| import unittest | ||||
| import urllib.robotparser | ||||
| from urllib.error import URLError | ||||
| from test import support | ||||
| 
 | ||||
| class RobotTestCase(unittest.TestCase): | ||||
|  | @ -208,18 +209,19 @@ def RobotTest(index, robots_txt, good_urls, bad_urls, | |||
| class NetworkTestCase(unittest.TestCase): | ||||
| 
 | ||||
|     def testPasswordProtectedSite(self): | ||||
|         if not support.is_resource_enabled('network'): | ||||
|             return | ||||
|         # whole site is password-protected. | ||||
|         support.requires('network') | ||||
|         # XXX it depends on an external resource which could be unavailable | ||||
|         url = 'http://mueblesmoraleda.com' | ||||
|         parser = urllib.robotparser.RobotFileParser() | ||||
|         parser.set_url(url) | ||||
|         try: | ||||
|             parser.read() | ||||
|         except URLError: | ||||
|             self.skipTest('%s is unavailable' % url) | ||||
|         self.assertEqual(parser.can_fetch("*", url+"/robots.txt"), False) | ||||
| 
 | ||||
|     def testPythonOrg(self): | ||||
|         if not support.is_resource_enabled('network'): | ||||
|             return | ||||
|         support.requires('network') | ||||
|         parser = urllib.robotparser.RobotFileParser( | ||||
|             "http://www.python.org/robots.txt") | ||||
|         parser.read() | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Florent Xicluna
						Florent Xicluna