2017-04-25 18:47:41 +00:00
|
|
|
import subprocess
|
|
|
|
import pwd
|
2015-09-09 05:31:48 +00:00
|
|
|
from click.testing import CliRunner
|
2016-09-18 15:30:31 +00:00
|
|
|
from datetime import datetime, timedelta
|
2017-04-25 10:52:10 +00:00
|
|
|
import pytest
|
2015-09-09 05:31:48 +00:00
|
|
|
|
2017-04-25 13:04:11 +00:00
|
|
|
# pkill py && rm -Rfv ~/.certidude && TRAVIS=1 py.test tests
|
|
|
|
|
2015-09-09 05:31:48 +00:00
|
|
|
runner = CliRunner()
|
|
|
|
|
2017-04-25 10:52:10 +00:00
|
|
|
@pytest.fixture(scope='module')
|
|
|
|
def client():
|
|
|
|
from certidude.api import certidude_app
|
2017-05-01 16:20:50 +00:00
|
|
|
from falcon import testing
|
|
|
|
app = certidude_app()
|
|
|
|
return testing.TestClient(app)
|
2017-04-25 10:52:10 +00:00
|
|
|
|
2017-04-25 13:40:33 +00:00
|
|
|
def generate_csr(cn=None):
|
2017-05-01 16:20:50 +00:00
|
|
|
from cryptography import x509
|
|
|
|
from cryptography.hazmat.primitives.asymmetric import rsa, padding
|
|
|
|
from cryptography.hazmat.primitives import hashes, serialization
|
|
|
|
from cryptography.hazmat.backends import default_backend
|
|
|
|
from cryptography.x509.oid import NameOID
|
2017-04-25 13:04:11 +00:00
|
|
|
key = rsa.generate_private_key(
|
|
|
|
public_exponent=65537,
|
|
|
|
key_size=1024,
|
|
|
|
backend=default_backend())
|
2017-04-25 13:40:33 +00:00
|
|
|
csr = x509.CertificateSigningRequestBuilder()
|
|
|
|
if cn is not None:
|
|
|
|
csr = csr.subject_name(x509.Name([x509.NameAttribute(NameOID.COMMON_NAME, cn)]))
|
2017-04-25 13:04:11 +00:00
|
|
|
buf = csr.sign(key, hashes.SHA256(), default_backend()
|
|
|
|
).public_bytes(serialization.Encoding.PEM)
|
|
|
|
return buf
|
2017-04-25 10:52:10 +00:00
|
|
|
|
2015-09-29 11:44:31 +00:00
|
|
|
def test_cli_setup_authority():
|
2017-05-01 16:20:50 +00:00
|
|
|
import shutil
|
|
|
|
import os
|
|
|
|
if os.path.exists("/run/certidude/signer.pid"):
|
|
|
|
with open("/run/certidude/signer.pid") as fh:
|
|
|
|
try:
|
|
|
|
os.kill(int(fh.read()), 15)
|
|
|
|
except OSError:
|
|
|
|
pass
|
|
|
|
os.unlink("/run/certidude/signer.pid")
|
|
|
|
if os.path.exists("/run/certidude/server.pid"):
|
|
|
|
with open("/run/certidude/server.pid") as fh:
|
|
|
|
try:
|
|
|
|
os.kill(int(fh.read()), 15)
|
|
|
|
except OSError:
|
|
|
|
pass
|
|
|
|
os.unlink("/run/certidude/server.pid")
|
|
|
|
|
|
|
|
if os.path.exists("/var/lib/certidude/ca.example.lan"):
|
|
|
|
shutil.rmtree("/var/lib/certidude/ca.example.lan")
|
|
|
|
if os.path.exists("/etc/certidude/server.conf"):
|
|
|
|
os.unlink("/etc/certidude/server.conf")
|
|
|
|
if os.path.exists("/etc/certidude/client.conf"):
|
|
|
|
os.unlink("/etc/certidude/client.conf")
|
|
|
|
|
|
|
|
# Remove OpenVPN stuff
|
2017-05-01 16:39:12 +00:00
|
|
|
if os.path.exists("/etc/openvpn"):
|
|
|
|
for filename in os.listdir("/etc/openvpn"):
|
|
|
|
if filename.endswith(".conf"):
|
|
|
|
os.unlink(os.path.join("/etc/openvpn", filename))
|
|
|
|
if os.path.exists("/etc/openvpn/keys"):
|
|
|
|
shutil.rmtree("/etc/openvpn/keys")
|
2017-05-01 16:20:50 +00:00
|
|
|
|
2017-05-01 17:06:39 +00:00
|
|
|
from certidude.cli import entry_point as cli
|
2017-05-01 16:20:50 +00:00
|
|
|
from certidude import const
|
|
|
|
|
2016-09-18 15:30:31 +00:00
|
|
|
result = runner.invoke(cli, ['setup', 'authority'])
|
2017-05-01 18:37:34 +00:00
|
|
|
assert not result.exception, result.output
|
2015-09-09 05:31:48 +00:00
|
|
|
|
2017-05-01 16:20:50 +00:00
|
|
|
from certidude import config, authority
|
2017-03-26 20:44:47 +00:00
|
|
|
assert authority.ca_cert.serial_number >= 0x100000000000000000000000000000000000000
|
|
|
|
assert authority.ca_cert.serial_number <= 0xfffffffffffffffffffffffffffffffffffffff
|
2017-03-13 15:20:41 +00:00
|
|
|
assert authority.ca_cert.not_valid_before < datetime.now()
|
|
|
|
assert authority.ca_cert.not_valid_after > datetime.now() + timedelta(days=7000)
|
|
|
|
|
2017-04-25 21:14:02 +00:00
|
|
|
# Start server before any signing operations are performed
|
2017-05-01 22:32:55 +00:00
|
|
|
result = runner.invoke(cli, ['serve', '-f', '-p', '80', '-l', '127.0.1.1'])
|
2017-05-01 18:37:34 +00:00
|
|
|
assert not result.exception, result.output
|
2017-04-25 21:14:02 +00:00
|
|
|
|
2017-05-01 20:15:45 +00:00
|
|
|
import requests
|
|
|
|
|
2017-05-01 21:52:27 +00:00
|
|
|
# Test CA certificate fetch
|
|
|
|
buf = open("/var/lib/certidude/ca.example.lan/ca_crt.pem").read()
|
|
|
|
|
|
|
|
r = client().simulate_get("/api/certificate")
|
|
|
|
assert r.status_code == 200
|
|
|
|
assert r.headers.get('content-type') == "application/x-x509-ca-cert"
|
|
|
|
assert r.text == buf
|
|
|
|
|
|
|
|
r = requests.get("http://ca.example.lan/api/certificate")
|
|
|
|
assert r.status_code == 200
|
|
|
|
assert r.headers.get('content-type') == "application/x-x509-ca-cert"
|
|
|
|
assert r.text == buf
|
|
|
|
|
|
|
|
|
2017-04-25 19:52:49 +00:00
|
|
|
# Password is bot, users created by Travis
|
2017-04-25 18:47:41 +00:00
|
|
|
usertoken = "Basic dXNlcmJvdDpib3Q="
|
|
|
|
admintoken = "Basic YWRtaW5ib3Q6Ym90"
|
|
|
|
|
|
|
|
result = runner.invoke(cli, ['users'])
|
2017-05-01 18:37:34 +00:00
|
|
|
assert not result.exception, result.output
|
2017-04-25 18:47:41 +00:00
|
|
|
|
2017-04-25 10:06:59 +00:00
|
|
|
# Check that we can retrieve empty CRL
|
2017-05-01 21:52:27 +00:00
|
|
|
assert authority.export_crl(), "Failed to export CRL"
|
2017-04-25 10:52:10 +00:00
|
|
|
r = client().simulate_get("/api/revoked/")
|
2017-05-01 20:49:25 +00:00
|
|
|
assert r.status_code == 200, r.text
|
2017-04-25 10:06:59 +00:00
|
|
|
|
2017-04-25 13:04:11 +00:00
|
|
|
|
|
|
|
# Test command line interface
|
2017-03-26 21:16:01 +00:00
|
|
|
result = runner.invoke(cli, ['list', '-srv'])
|
2017-05-01 18:37:34 +00:00
|
|
|
assert not result.exception, result.output
|
2017-03-26 21:16:01 +00:00
|
|
|
|
2017-05-01 21:37:56 +00:00
|
|
|
# Test static
|
|
|
|
r = client().simulate_get("/nonexistant.html")
|
|
|
|
assert r.status_code == 404, r.text
|
|
|
|
r = client().simulate_get("/index.html")
|
|
|
|
assert r.status_code == 200, r.text
|
2017-05-01 21:41:34 +00:00
|
|
|
r = requests.get("http://ca.example.lan/index.html")
|
2017-05-01 22:41:41 +00:00
|
|
|
assert r.status_code == 200, "server responded %s, logs say %s" % (r.text, open("/var/log/certidude.log").read())
|
2017-05-01 21:37:56 +00:00
|
|
|
|
|
|
|
|
2017-04-25 13:04:11 +00:00
|
|
|
# Test request submission
|
2017-04-25 13:40:33 +00:00
|
|
|
buf = generate_csr(cn=u"test")
|
2017-04-25 13:04:11 +00:00
|
|
|
|
|
|
|
r = client().simulate_post("/api/request/", body=buf)
|
|
|
|
assert r.status_code == 415 # wrong content type
|
|
|
|
|
|
|
|
r = client().simulate_post("/api/request/",
|
|
|
|
body=buf,
|
|
|
|
headers={"content-type":"application/pkcs10"})
|
|
|
|
assert r.status_code == 202 # success
|
|
|
|
|
|
|
|
r = client().simulate_post("/api/request/",
|
|
|
|
body=buf,
|
|
|
|
headers={"content-type":"application/pkcs10"})
|
|
|
|
assert r.status_code == 202 # already exists, same keypair so it's ok
|
|
|
|
|
|
|
|
r = client().simulate_post("/api/request/",
|
|
|
|
query_string="wait=1",
|
|
|
|
body=buf,
|
|
|
|
headers={"content-type":"application/pkcs10"})
|
|
|
|
assert r.status_code == 303 # redirect to long poll
|
|
|
|
|
|
|
|
r = client().simulate_post("/api/request/",
|
2017-04-25 13:40:33 +00:00
|
|
|
body=generate_csr(cn=u"test"),
|
2017-04-25 13:04:11 +00:00
|
|
|
headers={"content-type":"application/pkcs10"})
|
|
|
|
assert r.status_code == 409 # duplicate cn, different keypair
|
|
|
|
|
2017-04-25 13:15:39 +00:00
|
|
|
r = client().simulate_get("/api/request/test/", headers={"Accept":"application/json"})
|
2017-04-25 13:40:33 +00:00
|
|
|
assert r.status_code == 200 # fetch as JSON ok
|
2017-04-25 13:15:39 +00:00
|
|
|
assert r.headers.get('content-type') == "application/json"
|
|
|
|
|
|
|
|
r = client().simulate_get("/api/request/test/", headers={"Accept":"application/x-pem-file"})
|
2017-04-25 13:40:33 +00:00
|
|
|
assert r.status_code == 200 # fetch as PEM ok
|
2017-04-25 13:15:39 +00:00
|
|
|
assert r.headers.get('content-type') == "application/x-pem-file"
|
|
|
|
|
|
|
|
r = client().simulate_get("/api/request/test/", headers={"Accept":"text/plain"})
|
2017-04-25 13:40:33 +00:00
|
|
|
assert r.status_code == 415 # not available as plaintext
|
2017-04-25 13:15:39 +00:00
|
|
|
|
|
|
|
r = client().simulate_get("/api/request/nonexistant/", headers={"Accept":"application/json"})
|
2017-04-25 13:40:33 +00:00
|
|
|
assert r.status_code == 404 # nonexistant common names
|
|
|
|
|
|
|
|
r = client().simulate_post("/api/request/", query_string="autosign=1",
|
|
|
|
body=buf,
|
|
|
|
headers={"content-type":"application/pkcs10"})
|
|
|
|
assert r.status_code == 200 # autosign successful
|
|
|
|
assert r.headers.get('content-type') == "application/x-pem-file"
|
2017-04-25 13:15:39 +00:00
|
|
|
|
2017-04-25 13:40:33 +00:00
|
|
|
# TODO: submit messed up CSR-s: no CN, empty CN etc
|
2017-04-25 13:15:39 +00:00
|
|
|
|
2017-04-25 13:04:11 +00:00
|
|
|
# Test command line interface
|
|
|
|
result = runner.invoke(cli, ['list', '-srv'])
|
2017-05-01 18:37:34 +00:00
|
|
|
assert not result.exception, result.output
|
2017-03-13 15:20:41 +00:00
|
|
|
result = runner.invoke(cli, ['sign', 'test', '-o'])
|
2017-05-01 18:37:34 +00:00
|
|
|
assert not result.exception, result.output
|
2017-03-13 15:20:41 +00:00
|
|
|
result = runner.invoke(cli, ['revoke', 'test'])
|
2017-05-01 18:37:34 +00:00
|
|
|
assert not result.exception, result.output
|
2017-03-13 15:54:33 +00:00
|
|
|
authority.generate_ovpn_bundle(u"test2")
|
|
|
|
authority.generate_pkcs12_bundle(u"test3")
|
2017-03-26 20:45:08 +00:00
|
|
|
result = runner.invoke(cli, ['list', '-srv'])
|
2017-05-01 18:37:34 +00:00
|
|
|
assert not result.exception, result.output
|
2017-03-26 21:16:01 +00:00
|
|
|
result = runner.invoke(cli, ['cron'])
|
2017-05-01 18:37:34 +00:00
|
|
|
assert not result.exception, result.output
|
2017-04-25 10:06:59 +00:00
|
|
|
|
2017-04-25 20:32:21 +00:00
|
|
|
|
|
|
|
# Test session API call
|
|
|
|
r = client().simulate_get("/api/", headers={"Authorization":usertoken})
|
|
|
|
assert r.status_code == 200
|
|
|
|
|
|
|
|
r = client().simulate_get("/api/", headers={"Authorization":admintoken})
|
|
|
|
assert r.status_code == 200
|
|
|
|
|
|
|
|
r = client().simulate_get("/api/")
|
|
|
|
assert r.status_code == 401
|
|
|
|
|
|
|
|
|
2017-04-25 10:06:59 +00:00
|
|
|
# Test signed certificate API call
|
2017-04-25 13:04:11 +00:00
|
|
|
r = client().simulate_get("/api/signed/nonexistant/")
|
2017-05-01 20:49:25 +00:00
|
|
|
assert r.status_code == 404, r.text
|
2017-04-25 10:58:21 +00:00
|
|
|
|
2017-04-25 13:04:11 +00:00
|
|
|
r = client().simulate_get("/api/signed/test2/")
|
2017-05-01 20:49:25 +00:00
|
|
|
assert r.status_code == 200, r.text
|
2017-04-25 10:06:59 +00:00
|
|
|
assert r.headers.get('content-type') == "application/x-pem-file"
|
|
|
|
|
2017-04-25 13:04:11 +00:00
|
|
|
r = client().simulate_get("/api/signed/test2/", headers={"Accept":"application/json"})
|
2017-05-01 20:49:25 +00:00
|
|
|
assert r.status_code == 200, r.text
|
2017-04-25 10:06:59 +00:00
|
|
|
assert r.headers.get('content-type') == "application/json"
|
|
|
|
|
2017-04-25 13:04:11 +00:00
|
|
|
r = client().simulate_get("/api/signed/test2/", headers={"Accept":"text/plain"})
|
2017-05-01 20:49:25 +00:00
|
|
|
assert r.status_code == 415, r.text
|
2017-04-25 10:58:21 +00:00
|
|
|
|
2017-04-25 10:06:59 +00:00
|
|
|
# Test revocations API call
|
2017-04-25 13:04:11 +00:00
|
|
|
r = client().simulate_get("/api/revoked/",
|
2017-04-25 10:06:59 +00:00
|
|
|
headers={"Accept":"application/x-pem-file"})
|
2017-05-01 20:49:25 +00:00
|
|
|
assert r.status_code == 200, r.text
|
2017-04-25 10:06:59 +00:00
|
|
|
assert r.headers.get('content-type') == "application/x-pem-file"
|
|
|
|
|
2017-05-01 20:15:45 +00:00
|
|
|
r = requests.get("http://ca.example.lan/api/revoked/",
|
|
|
|
headers={"Accept":"application/x-pem-file"})
|
2017-05-01 21:37:56 +00:00
|
|
|
assert r.status_code == 200, "Server responded with %s" % r.text
|
2017-05-01 20:15:45 +00:00
|
|
|
assert r.headers.get('content-type') == "application/x-pem-file"
|
|
|
|
|
2017-05-01 20:40:22 +00:00
|
|
|
r = client().simulate_get("/api/revoked/")
|
2017-05-01 20:49:25 +00:00
|
|
|
assert r.status_code == 200, r.text
|
2017-05-01 20:40:22 +00:00
|
|
|
assert r.headers.get('content-type') == "application/x-pkcs7-crl"
|
|
|
|
|
|
|
|
r = requests.get("http://ca.example.lan/api/revoked/")
|
2017-05-01 20:49:25 +00:00
|
|
|
assert r.status_code == 200, r.text
|
2017-05-01 20:40:22 +00:00
|
|
|
assert r.headers.get('content-type') == "application/x-pkcs7-crl"
|
|
|
|
|
2017-04-25 13:04:11 +00:00
|
|
|
r = client().simulate_get("/api/revoked/",
|
|
|
|
headers={"Accept":"text/plain"})
|
2017-05-01 20:49:25 +00:00
|
|
|
assert r.status_code == 415, r.text
|
2017-04-25 13:04:11 +00:00
|
|
|
|
|
|
|
r = client().simulate_get("/api/revoked/", query_string="wait=true",
|
|
|
|
headers={"Accept":"application/x-pem-file"})
|
2017-05-01 20:49:25 +00:00
|
|
|
assert r.status_code == 303, r.text
|
2017-04-25 13:04:11 +00:00
|
|
|
|
2017-04-25 10:06:59 +00:00
|
|
|
# Test attribute fetching API call
|
2017-04-25 10:52:10 +00:00
|
|
|
r = client().simulate_get("/api/signed/test2/attr/")
|
2017-05-01 20:49:25 +00:00
|
|
|
assert r.status_code == 403, r.text
|
2017-04-25 20:32:21 +00:00
|
|
|
r = client().simulate_get("/api/signed/test2/lease/", headers={"Authorization":admintoken})
|
2017-05-01 20:49:25 +00:00
|
|
|
assert r.status_code == 404, r.text
|
2017-04-25 10:06:59 +00:00
|
|
|
|
2017-04-25 20:32:21 +00:00
|
|
|
# Insert lease as if VPN gateway had submitted it
|
2017-04-25 10:06:59 +00:00
|
|
|
path, _, _ = authority.get_signed("test2")
|
2017-05-01 16:20:50 +00:00
|
|
|
from xattr import setxattr
|
2017-04-25 10:06:59 +00:00
|
|
|
setxattr(path, "user.lease.address", b"127.0.0.1")
|
2017-04-25 20:32:21 +00:00
|
|
|
setxattr(path, "user.lease.last_seen", b"random")
|
2017-04-25 10:52:10 +00:00
|
|
|
r = client().simulate_get("/api/signed/test2/attr/")
|
2017-05-01 20:49:25 +00:00
|
|
|
assert r.status_code == 200, r.text
|
2017-04-25 10:06:59 +00:00
|
|
|
|
2017-04-25 20:32:21 +00:00
|
|
|
# Test lease retrieval
|
|
|
|
r = client().simulate_get("/api/signed/test2/lease/")
|
2017-05-01 20:49:25 +00:00
|
|
|
assert r.status_code == 401, r.text
|
2017-04-25 20:32:21 +00:00
|
|
|
r = client().simulate_get("/api/signed/test2/lease/", headers={"Authorization":usertoken})
|
2017-05-01 20:49:25 +00:00
|
|
|
assert r.status_code == 403, r.text
|
2017-04-25 20:32:21 +00:00
|
|
|
r = client().simulate_get("/api/signed/test2/lease/", headers={"Authorization":admintoken})
|
2017-05-01 20:49:25 +00:00
|
|
|
assert r.status_code == 200, r.text
|
2017-04-25 20:32:21 +00:00
|
|
|
assert r.headers.get('content-type') == "application/json; charset=UTF-8"
|
|
|
|
|
|
|
|
|
2017-04-25 10:06:59 +00:00
|
|
|
# Tags should not be visible anonymously
|
2017-04-25 10:52:10 +00:00
|
|
|
r = client().simulate_get("/api/signed/test2/tag/")
|
2017-05-01 20:49:25 +00:00
|
|
|
assert r.status_code == 401, r.text
|
2017-04-25 18:47:41 +00:00
|
|
|
r = client().simulate_get("/api/signed/test2/tag/", headers={"Authorization":usertoken})
|
2017-05-01 20:49:25 +00:00
|
|
|
assert r.status_code == 403, r.text
|
2017-04-25 18:47:41 +00:00
|
|
|
r = client().simulate_get("/api/signed/test2/tag/", headers={"Authorization":admintoken})
|
2017-05-01 20:49:25 +00:00
|
|
|
assert r.status_code == 200, r.text
|
2017-04-25 18:47:41 +00:00
|
|
|
|
2017-04-25 20:32:21 +00:00
|
|
|
# Tags can be added only by admin
|
|
|
|
r = client().simulate_post("/api/signed/test2/tag/")
|
2017-05-01 20:49:25 +00:00
|
|
|
assert r.status_code == 401, r.text
|
2017-04-25 20:32:21 +00:00
|
|
|
r = client().simulate_post("/api/signed/test2/tag/",
|
|
|
|
headers={"Authorization":usertoken})
|
2017-05-01 20:49:25 +00:00
|
|
|
assert r.status_code == 403, r.text
|
2017-04-25 20:32:21 +00:00
|
|
|
r = client().simulate_post("/api/signed/test2/tag/",
|
|
|
|
body="key=other&value=something",
|
|
|
|
headers={"content-type": "application/x-www-form-urlencoded", "Authorization":admintoken})
|
2017-05-01 20:49:25 +00:00
|
|
|
assert r.status_code == 200, r.text
|
2017-04-25 18:47:41 +00:00
|
|
|
|
2017-04-25 20:32:21 +00:00
|
|
|
# Tags can be overwritten only by admin
|
|
|
|
r = client().simulate_put("/api/signed/test2/tag/other/")
|
2017-05-01 20:49:25 +00:00
|
|
|
assert r.status_code == 401, r.text
|
2017-04-25 20:32:21 +00:00
|
|
|
r = client().simulate_put("/api/signed/test2/tag/other/",
|
|
|
|
headers={"Authorization":usertoken})
|
2017-05-01 20:49:25 +00:00
|
|
|
assert r.status_code == 403, r.text
|
2017-04-25 20:32:21 +00:00
|
|
|
r = client().simulate_put("/api/signed/test2/tag/other/",
|
|
|
|
body="value=else",
|
|
|
|
headers={"content-type": "application/x-www-form-urlencoded", "Authorization":admintoken})
|
2017-05-01 20:49:25 +00:00
|
|
|
assert r.status_code == 200, r.text
|
2017-04-25 19:52:49 +00:00
|
|
|
|
2017-04-25 20:32:21 +00:00
|
|
|
# Tags can be deleted only by admin
|
|
|
|
r = client().simulate_delete("/api/signed/test2/tag/else/")
|
2017-05-01 20:49:25 +00:00
|
|
|
assert r.status_code == 401, r.text
|
2017-04-25 20:32:21 +00:00
|
|
|
r = client().simulate_delete("/api/signed/test2/tag/else/",
|
|
|
|
headers={"Authorization":usertoken})
|
2017-05-01 20:49:25 +00:00
|
|
|
assert r.status_code == 403, r.text
|
2017-04-25 20:32:21 +00:00
|
|
|
r = client().simulate_delete("/api/signed/test2/tag/else/",
|
|
|
|
headers={"content-type": "application/x-www-form-urlencoded", "Authorization":admintoken})
|
2017-05-01 20:49:25 +00:00
|
|
|
assert r.status_code == 200, r.text
|
2017-04-25 10:06:59 +00:00
|
|
|
|
2017-04-25 20:32:21 +00:00
|
|
|
|
|
|
|
# Test revocation
|
|
|
|
r = client().simulate_delete("/api/signed/test2/")
|
2017-05-01 20:49:25 +00:00
|
|
|
assert r.status_code == 401, r.text
|
2017-04-25 20:32:21 +00:00
|
|
|
r = client().simulate_delete("/api/signed/test2/",
|
|
|
|
headers={"Authorization":usertoken})
|
2017-05-01 20:49:25 +00:00
|
|
|
assert r.status_code == 403, r.text
|
2017-04-25 20:32:21 +00:00
|
|
|
r = client().simulate_delete("/api/signed/test2/",
|
|
|
|
headers={"Authorization":admintoken})
|
2017-05-01 20:49:25 +00:00
|
|
|
assert r.status_code == 200, r.text
|
2017-04-25 10:06:59 +00:00
|
|
|
result = runner.invoke(cli, ['revoke', 'test3'])
|
2017-05-01 18:37:34 +00:00
|
|
|
assert not result.exception, result.output
|
2017-04-25 10:52:10 +00:00
|
|
|
|
|
|
|
|
2017-04-25 21:10:12 +00:00
|
|
|
# Log can be read only by admin
|
|
|
|
r = client().simulate_get("/api/log/")
|
2017-05-01 20:49:25 +00:00
|
|
|
assert r.status_code == 401, r.text
|
2017-04-25 21:10:12 +00:00
|
|
|
r = client().simulate_get("/api/log/",
|
|
|
|
headers={"Authorization":usertoken})
|
2017-05-01 20:49:25 +00:00
|
|
|
assert r.status_code == 403, r.text
|
2017-04-25 21:10:12 +00:00
|
|
|
r = client().simulate_get("/api/log/",
|
|
|
|
headers={"Authorization":admintoken})
|
2017-05-01 20:49:25 +00:00
|
|
|
assert r.status_code == 200, r.text
|
2017-04-25 21:10:12 +00:00
|
|
|
assert r.headers.get('content-type') == "application/json; charset=UTF-8"
|
2017-04-26 06:13:41 +00:00
|
|
|
|
|
|
|
# Test token mech
|
|
|
|
r = client().simulate_post("/api/token/")
|
2017-05-01 20:49:25 +00:00
|
|
|
assert r.status_code == 404, r.text
|
2017-04-26 06:13:41 +00:00
|
|
|
|
|
|
|
config.BUNDLE_FORMAT = "ovpn"
|
|
|
|
config.USER_ENROLLMENT_ALLOWED = True
|
|
|
|
|
|
|
|
r = client().simulate_post("/api/token/")
|
|
|
|
assert r.status_code == 401 # needs auth
|
|
|
|
r = client().simulate_post("/api/token/",
|
|
|
|
headers={"Authorization":usertoken})
|
|
|
|
assert r.status_code == 403 # regular user forbidden
|
|
|
|
r = client().simulate_post("/api/token/",
|
|
|
|
body="user=userbot", # TODO: test nonexistant user
|
|
|
|
headers={"content-type": "application/x-www-form-urlencoded", "Authorization":admintoken})
|
|
|
|
assert r.status_code == 200 # token generated by admin
|
|
|
|
|
|
|
|
r2 = client().simulate_get("/api/token/",
|
|
|
|
query_string="u=userbot&t=1493184342&c=ac9b71421d5741800c5a4905b20c1072594a2df863e60ba836464888786bf2a6",
|
|
|
|
headers={"content-type": "application/x-www-form-urlencoded", "Authorization":admintoken})
|
2017-04-26 06:26:14 +00:00
|
|
|
assert r2.status_code == 403 # invalid checksum
|
2017-04-26 06:13:41 +00:00
|
|
|
r2 = client().simulate_get("/api/token/", query_string=r.content,
|
|
|
|
headers={"User-Agent":"Mozilla/5.0 (X11; Fedora; Linux x86_64) "
|
|
|
|
"AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36"})
|
2017-04-26 06:26:14 +00:00
|
|
|
assert r2.status_code == 200 # token consumed by anyone on Fedora
|
|
|
|
assert r2.headers.get('content-type') == "application/x-openvpn"
|
|
|
|
|
|
|
|
config.BUNDLE_FORMAT = "p12" # Switch to PKCS#12
|
|
|
|
r2 = client().simulate_get("/api/token/", query_string=r.content)
|
|
|
|
assert r2.status_code == 200 # token consumed by anyone on unknown device
|
|
|
|
assert r2.headers.get('content-type') == "application/x-pkcs12"
|
2017-05-01 16:20:50 +00:00
|
|
|
|
|
|
|
|
|
|
|
result = runner.invoke(cli, ['setup', 'openvpn', 'server', "-cn", "vpn.example.lan", "ca.example.lan"])
|
2017-05-01 18:37:34 +00:00
|
|
|
assert not result.exception, result.output
|
2017-05-01 16:20:50 +00:00
|
|
|
|
|
|
|
result = runner.invoke(cli, ['setup', 'openvpn', 'client', "-cn", "roadwarrior1", "ca.example.lan", "vpn.example.lan"])
|
2017-05-01 18:37:34 +00:00
|
|
|
assert not result.exception, result.output
|
2017-05-01 16:20:50 +00:00
|
|
|
|
|
|
|
import os
|
|
|
|
if not os.path.exists("/etc/openvpn/keys"):
|
|
|
|
os.makedirs("/etc/openvpn/keys")
|
|
|
|
|
|
|
|
with open("/etc/certidude/client.conf", "a") as fh:
|
|
|
|
fh.write("insecure = true\n")
|
|
|
|
|
|
|
|
# pregen dhparam
|
|
|
|
result = runner.invoke(cli, ["request", "--no-wait"])
|
2017-05-01 19:57:53 +00:00
|
|
|
assert not result.exception, "server responded %s, server logs say %s" % (result.output, open("/var/log/certidude.log").read())
|
2017-05-01 16:20:50 +00:00
|
|
|
result = runner.invoke(cli, ['sign', 'vpn.example.lan'])
|
2017-05-01 18:37:34 +00:00
|
|
|
assert not result.exception, result.output
|
2017-05-01 16:20:50 +00:00
|
|
|
result = runner.invoke(cli, ["request", "--no-wait"])
|
2017-05-01 18:37:34 +00:00
|
|
|
assert not result.exception, result.output
|