Skip to content
Snippets Groups Projects
Commit 88c2c3be authored by Emanuele Aina's avatar Emanuele Aina
Browse files

test_urls: Print exceptions when validating URLs


Print the HTTP status code and the returned exception when checking
each URL, to better understand what went wrong.

Signed-off-by: Emanuele Aina's avatarEmanuele Aina <emanuele.aina@collabora.com>
parent d4981381
No related branches found
No related tags found
1 merge request!278Speedup test_urls
......@@ -13,6 +13,7 @@ from urllib.parse import urlparse
import urllib3
import time
import fnmatch
import textwrap
EXCLUDE = [
"*://lavaphabbridge.apertis.org", #
......@@ -87,22 +88,27 @@ for url in urls:
sys.stdout.flush()
start = time.perf_counter()
status = None
resp = None
try:
resp = requests.head(url, headers=headers, allow_redirects=True, timeout=60, verify=False)
status = resp.ok
resp.close()
except Exception as e:
pass
e_str = textwrap.indent(str(type(e)) + "\n" + str(e), " ")
print(f"ERROR(1): {url} {resp.status_code if resp else '-'}\n{e_str}")
try:
# Some servers aren't setup to handle HEAD requests, so check anything
# that's not got a 200 status code with GET as well.
if not status:
resp = None
resp = requests.get(url, headers=headers, allow_redirects=True, timeout=60, verify=False)
status = resp.ok
resp.close()
except Exception as e:
status = False
e_str = textwrap.indent(str(type(e)) + "\n" + str(e), " ")
print(f"ERROR(2): {url} {resp.status_code if resp else '-'}\n{e_str}")
end = time.perf_counter()
if not status:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment