remove asserts stmnts

This commit is contained in:
Akash Mahanty 2021-01-10 03:05:48 +05:30
parent a03813315f
commit 625ed63482
2 changed files with 5 additions and 18 deletions

View File

@ -1,7 +1,6 @@
from .snapshot import CdxSnapshot from .snapshot import CdxSnapshot
from .exceptions import WaybackError from .exceptions import WaybackError
from .utils import ( from .utils import (
_full_url,
_get_total_pages, _get_total_pages,
_get_response, _get_response,
default_user_agent, default_user_agent,
@ -122,7 +121,6 @@ class Cdx:
if len(lines) >= 3: if len(lines) >= 3:
last_line = lines[-1]
second_last_line = lines[-2] second_last_line = lines[-2]
if len(second_last_line) == 0: if len(second_last_line) == 0:

View File

@ -70,9 +70,11 @@ def _check_collapses(collapses):
N = match.group(2) N = match.group(2)
if N: if N:
assert field + N == c if not (field + N == c):
raise Exception
else: else:
assert field == c if not (field == c):
raise Exception
except Exception: except Exception:
e = "collapse argument '%s' is not following the cdx collapse syntax." % c e = "collapse argument '%s' is not following the cdx collapse syntax." % c
@ -94,21 +96,8 @@ def _check_filters(filters):
key = match.group(1) key = match.group(1)
val = match.group(2) val = match.group(2)
if "statuscode" in key:
assert len(val) == 3
assert isinstance(int(val), int) == True
if "timestamp" in key: except Exception:
int_ts = int(val)
assert len(val) == 14 # must be 14 and not less to filter
assert int_ts > 19_950_000_000_000 # year 1995, 14 digit ts
assert isinstance(int_ts, int) == True
if "original" in key:
assert "http" in val
except Exception as e:
e = "Filter '%s' not following the cdx filter syntax." % f e = "Filter '%s' not following the cdx filter syntax." % f
raise WaybackError(e) raise WaybackError(e)