Compare commits
No commits in common. "master" and "issue-4" have entirely different histories.
@ -45,9 +45,6 @@ warning_t = datetime.timedelta(days=7)
|
||||
unixtime = False
|
||||
timeout = 20 # Seconds
|
||||
|
||||
# Cannot be changed on the command-line (yet)
|
||||
server = None
|
||||
|
||||
def usage(msg=None):
|
||||
print("Usage: %s -H domain-name [-c critical -w warning -u -t timeout]" % sys.argv[0], end="")
|
||||
if msg is not None and msg != "":
|
||||
@ -106,7 +103,7 @@ try:
|
||||
elif option == "--hostname" or option == "-H":
|
||||
domain = value
|
||||
elif option == "--timeout" or option == "-t":
|
||||
timeout = float(value)
|
||||
timeout = int(value)
|
||||
elif option == "--unixtime" or option == "-u":
|
||||
unixtime = True
|
||||
elif option == "--verbose" or option == "-v":
|
||||
@ -147,7 +144,6 @@ for server in servers:
|
||||
response = requests.get("%s/domain/%s" % (server, domain), timeout=timeout)
|
||||
except requests.exceptions.Timeout:
|
||||
unknowns += "Timeout when trying to reach %s " % server
|
||||
continue
|
||||
if response.status_code != 200:
|
||||
errors += "Invalid RDAP return code at %s: %s " % \
|
||||
(server, response.status_code)
|
||||
|
26
tests.yaml
26
tests.yaml
@ -28,11 +28,11 @@ tests:
|
||||
retcode: 1
|
||||
partstderr: 'ValueError'
|
||||
|
||||
# No RDAP server for this TLD
|
||||
# 2021-07-05: no RDAP server for this TLD
|
||||
- exe: './check_expire'
|
||||
args:
|
||||
- '-H'
|
||||
- 'welcome.this-is-not-a-tld'
|
||||
- 'bie.re'
|
||||
retcode: 3
|
||||
partstdout: 'No RDAP server'
|
||||
|
||||
@ -45,13 +45,13 @@ tests:
|
||||
retcode: 2
|
||||
partstdout: 'No expiration found'
|
||||
|
||||
# With a timeout of 1µs, a timeout is expected
|
||||
# Far away and slow, timeout is expected
|
||||
- exe: './check_expire'
|
||||
args:
|
||||
- '-t'
|
||||
- '0.000001'
|
||||
- '1'
|
||||
- '-H'
|
||||
- 'bortzmeyer.org'
|
||||
- 'nic.ar'
|
||||
retcode: 3
|
||||
partstdout: 'Timeout'
|
||||
|
||||
@ -143,14 +143,14 @@ tests:
|
||||
retcode: 0
|
||||
stderr: ''
|
||||
|
||||
# Iran, expiration date in the past. But down (2024-06-16)
|
||||
#- exe: './check_expire'
|
||||
# args:
|
||||
# - '-H'
|
||||
# - 'nic.pars'
|
||||
# retcode: 2
|
||||
# partstdout: "already expired"
|
||||
# stderr: ''
|
||||
# Iran, expiration date in the past
|
||||
- exe: './check_expire'
|
||||
args:
|
||||
- '-H'
|
||||
- 'nic.pars'
|
||||
retcode: 2
|
||||
partstdout: "already expired"
|
||||
stderr: ''
|
||||
|
||||
# Brazil
|
||||
- exe: './check_expire'
|
||||
|
Loading…
Reference in New Issue
Block a user