mirror of
https://github.com/laurivosandi/certidude
synced 2024-12-22 16:25:17 +00:00
tests: Fix /api/revoked check
This commit is contained in:
parent
bce906db36
commit
f7d8e95aa8
@ -1027,10 +1027,6 @@ def test_cli_setup_authority():
|
|||||||
from certidude.common import pip
|
from certidude.common import pip
|
||||||
pip("asn1crypto certbuilder")
|
pip("asn1crypto certbuilder")
|
||||||
|
|
||||||
# CRL-s disabled now
|
|
||||||
r = requests.get("http://ca.example.lan/api/revoked/")
|
|
||||||
assert r.status_code == 404, r.text
|
|
||||||
|
|
||||||
# Update server credential cache
|
# Update server credential cache
|
||||||
with open("/etc/cron.hourly/certidude") as fh:
|
with open("/etc/cron.hourly/certidude") as fh:
|
||||||
cronjob = fh.read()
|
cronjob = fh.read()
|
||||||
@ -1057,6 +1053,10 @@ def test_cli_setup_authority():
|
|||||||
|
|
||||||
sleep(1) # Wait for serve to start up
|
sleep(1) # Wait for serve to start up
|
||||||
|
|
||||||
|
# CRL-s disabled now
|
||||||
|
r = requests.get("http://ca.example.lan/api/revoked/")
|
||||||
|
assert r.status_code == 404, r.text
|
||||||
|
|
||||||
assert os.system("openssl ocsp -issuer /var/lib/certidude/ca.example.lan/ca_crt.pem -cert /var/lib/certidude/ca.example.lan/signed/roadwarrior2.pem -text -url http://ca.example.lan/api/ocsp/ -out /tmp/ocsp1.log") == 0
|
assert os.system("openssl ocsp -issuer /var/lib/certidude/ca.example.lan/ca_crt.pem -cert /var/lib/certidude/ca.example.lan/signed/roadwarrior2.pem -text -url http://ca.example.lan/api/ocsp/ -out /tmp/ocsp1.log") == 0
|
||||||
assert os.system("openssl ocsp -issuer /var/lib/certidude/ca.example.lan/ca_crt.pem -cert /var/lib/certidude/ca.example.lan/ca_crt.pem -text -url http://ca.example.lan/api/ocsp/ -out /tmp/ocsp2.log") == 0
|
assert os.system("openssl ocsp -issuer /var/lib/certidude/ca.example.lan/ca_crt.pem -cert /var/lib/certidude/ca.example.lan/ca_crt.pem -text -url http://ca.example.lan/api/ocsp/ -out /tmp/ocsp2.log") == 0
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user