def test_download_timeout(self): fLOG( __file__, self._testMethodName, OutputPrint=__name__ == "__main__") if sys.version_info[0] == 2: # issue with timeout for python 2.7 return url = "https://localhost:878777/should_not_exists" try: get_url_content_timeout(url, encoding="utf8", timeout=2) except InternetException: return assert False
def test_download_notimeout(self): fLOG( __file__, self._testMethodName, OutputPrint=__name__ == "__main__") if sys.version_info[0] == 2: # issue with timeout for python 2.7 return url = "https://raw.githubusercontent.com/sdpython/pyquickhelper/master/src/pyquickhelper/ipythonhelper/magic_parser.py" content = get_url_content_timeout(url, encoding="utf8") assert "MagicCommandParser" in content assert isinstance(content, str # unicode# )