1
0
Fork 0
mirror of https://github.com/Kozea/Radicale.git synced 2025-06-26 16:45:52 +00:00
Radicale/radicale/tests/test_server.py

211 lines
8.1 KiB
Python
Raw Normal View History

2018-09-04 03:33:45 +02:00
# This file is part of Radicale Server - Calendar Server
2019-06-17 04:13:25 +02:00
# Copyright © 2018-2019 Unrud <unrud@outlook.com>
2018-09-04 03:33:45 +02:00
#
# This library is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Radicale. If not, see <http://www.gnu.org/licenses/>.
"""
Test the internal server.
"""
import errno
2018-09-06 09:12:53 +02:00
import os
2018-09-04 03:33:45 +02:00
import shutil
import socket
import ssl
2018-09-09 14:58:44 +02:00
import subprocess
import sys
2018-09-04 03:33:45 +02:00
import tempfile
import threading
import time
2019-06-17 04:13:25 +02:00
from configparser import RawConfigParser
2018-09-04 03:33:45 +02:00
from urllib import request
from urllib.error import HTTPError, URLError
2019-06-15 09:01:55 +02:00
import pytest
2018-09-04 03:33:45 +02:00
from radicale import config, server
from radicale.tests import BaseTest
2020-01-15 18:44:00 +01:00
from radicale.tests.helpers import configuration_to_dict, get_file_path
2018-09-04 03:33:45 +02:00
class DisabledRedirectHandler(request.HTTPRedirectHandler):
2020-10-04 15:13:01 +02:00
def http_error_301(self, req, fp, code, msg, headers):
raise HTTPError(req.full_url, code, msg, headers, fp)
2018-09-04 03:33:45 +02:00
def http_error_302(self, req, fp, code, msg, headers):
raise HTTPError(req.full_url, code, msg, headers, fp)
2020-10-04 15:13:01 +02:00
def http_error_303(self, req, fp, code, msg, headers):
raise HTTPError(req.full_url, code, msg, headers, fp)
def http_error_307(self, req, fp, code, msg, headers):
raise HTTPError(req.full_url, code, msg, headers, fp)
2018-09-04 03:33:45 +02:00
class TestBaseServerRequests(BaseTest):
2018-09-04 03:33:45 +02:00
"""Test the internal server."""
def setup(self):
self.configuration = config.load()
self.colpath = tempfile.mkdtemp()
self.shutdown_socket, shutdown_socket_out = socket.socketpair()
with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as sock:
# Find available port
2018-09-06 10:50:54 +02:00
sock.bind(("127.0.0.1", 0))
2018-09-04 03:33:45 +02:00
self.sockname = sock.getsockname()
2019-06-17 04:13:25 +02:00
self.configuration.update({
"storage": {"filesystem_folder": self.colpath,
# Disable syncing to disk for better performance
"_filesystem_fsync": "False"},
2019-06-17 04:13:25 +02:00
"server": {"hosts": "[%s]:%d" % self.sockname},
# Enable debugging for new processes
"logging": {"level": "debug"}},
"test", privileged=True)
2018-09-04 03:33:45 +02:00
self.thread = threading.Thread(target=server.serve, args=(
self.configuration, shutdown_socket_out))
ssl_context = ssl.create_default_context()
ssl_context.check_hostname = False
ssl_context.verify_mode = ssl.CERT_NONE
self.opener = request.build_opener(
request.HTTPSHandler(context=ssl_context),
DisabledRedirectHandler)
def teardown(self):
2020-02-19 10:01:39 +01:00
self.shutdown_socket.close()
2018-09-06 09:12:53 +02:00
try:
self.thread.join()
except RuntimeError: # Thread never started
pass
2018-09-04 03:33:45 +02:00
shutil.rmtree(self.colpath)
2018-09-09 14:58:44 +02:00
def request(self, method, path, data=None, is_alive_fn=None, **headers):
2018-09-04 03:33:45 +02:00
"""Send a request."""
2018-09-09 14:58:44 +02:00
if is_alive_fn is None:
is_alive_fn = self.thread.is_alive
2019-06-17 04:13:25 +02:00
scheme = ("https" if self.configuration.get("server", "ssl") else
"http")
2018-09-04 03:33:45 +02:00
req = request.Request(
"%s://[%s]:%d%s" % (scheme, *self.sockname, path),
data=data, headers=headers, method=method)
while True:
2018-09-09 14:58:44 +02:00
assert is_alive_fn()
2018-09-04 03:33:45 +02:00
try:
with self.opener.open(req) as f:
return f.getcode(), f.info(), f.read().decode()
except HTTPError as e:
return e.code, e.headers, e.read().decode()
except URLError as e:
if not isinstance(e.reason, ConnectionRefusedError):
raise
time.sleep(0.1)
def test_root(self):
self.thread.start()
self.get("/", check=302)
2018-09-04 03:33:45 +02:00
def test_ssl(self):
2019-06-17 04:13:25 +02:00
self.configuration.update({
"server": {"ssl": "True",
"certificate": get_file_path("cert.pem"),
"key": get_file_path("key.pem")}}, "test")
2018-09-04 03:33:45 +02:00
self.thread.start()
self.get("/", check=302)
2018-09-06 09:12:53 +02:00
def test_bind_fail(self):
2020-02-20 10:55:00 +01:00
for address_family, address in [(socket.AF_INET, "::1"),
(socket.AF_INET6, "127.0.0.1")]:
with socket.socket(address_family, socket.SOCK_STREAM) as sock:
if address_family == socket.AF_INET6:
# Only allow IPv6 connections to the IPv6 socket
sock.setsockopt(server.COMPAT_IPPROTO_IPV6,
socket.IPV6_V6ONLY, 1)
with pytest.raises(OSError) as exc_info:
sock.bind((address, 0))
2020-02-20 11:27:26 +01:00
# See ``radicale.server.serve``
assert (isinstance(exc_info.value, socket.gaierror) and
2020-04-09 22:01:55 +02:00
exc_info.value.errno in (
socket.EAI_NONAME, server.COMPAT_EAI_ADDRFAMILY,
server.COMPAT_EAI_NODATA) or
2020-02-20 11:27:26 +01:00
str(exc_info.value) == "address family mismatched" or
2020-08-18 22:43:59 +02:00
exc_info.value.errno in (
errno.EADDRNOTAVAIL, errno.EAFNOSUPPORT,
errno.EPROTONOSUPPORT))
2018-09-06 09:12:53 +02:00
def test_ipv6(self):
try:
with socket.socket(socket.AF_INET6, socket.SOCK_STREAM) as sock:
# Only allow IPv6 connections to the IPv6 socket
sock.setsockopt(
server.COMPAT_IPPROTO_IPV6, socket.IPV6_V6ONLY, 1)
2018-09-08 09:24:46 +02:00
# Find available port
sock.bind(("::1", 0))
self.sockname = sock.getsockname()[:2]
except OSError as e:
2020-08-18 22:43:59 +02:00
if e.errno in (errno.EADDRNOTAVAIL, errno.EAFNOSUPPORT,
errno.EPROTONOSUPPORT):
pytest.skip("IPv6 not supported")
raise
2019-06-17 04:13:25 +02:00
self.configuration.update({
"server": {"hosts": "[%s]:%d" % self.sockname}}, "test")
self.thread.start()
self.get("/", check=302)
2018-09-09 14:58:44 +02:00
def test_command_line_interface(self):
config_args = []
2019-06-17 04:13:25 +02:00
for section, values in config.DEFAULT_CONFIG_SCHEMA.items():
if section.startswith("_"):
2019-06-17 04:13:25 +02:00
continue
2018-09-09 14:58:44 +02:00
for option, data in values.items():
2019-06-17 04:13:25 +02:00
if option.startswith("_"):
continue
2020-01-19 18:13:05 +01:00
long_name = "--%s-%s" % (section, option.replace("_", "-"))
2018-09-09 14:58:44 +02:00
if data["type"] == bool:
2019-06-17 04:13:25 +02:00
if not self.configuration.get(section, option):
2020-01-19 18:13:05 +01:00
long_name = "--no%s" % long_name[1:]
2018-09-09 14:58:44 +02:00
config_args.append(long_name)
else:
config_args.append(long_name)
2019-06-17 04:13:25 +02:00
config_args.append(
self.configuration.get_raw(section, option))
2018-09-09 14:58:44 +02:00
p = subprocess.Popen(
[sys.executable, "-m", "radicale"] + config_args,
env={**os.environ, "PYTHONPATH": os.pathsep.join(sys.path)})
2018-09-09 14:58:44 +02:00
try:
self.get("/", is_alive_fn=lambda: p.poll() is None, check=302)
2018-09-09 14:58:44 +02:00
finally:
p.terminate()
p.wait()
if os.name == "posix":
assert p.returncode == 0
2018-09-09 14:58:44 +02:00
def test_wsgi_server(self):
config_path = os.path.join(self.colpath, "config")
2019-06-17 04:13:25 +02:00
parser = RawConfigParser()
parser.read_dict(configuration_to_dict(self.configuration))
2018-09-09 14:58:44 +02:00
with open(config_path, "w") as f:
2019-06-17 04:13:25 +02:00
parser.write(f)
2018-09-09 14:58:44 +02:00
env = os.environ.copy()
env["PYTHONPATH"] = os.pathsep.join(sys.path)
env["RADICALE_CONFIG"] = config_path
2018-09-09 14:58:44 +02:00
p = subprocess.Popen([
sys.executable, "-m", "waitress",
"--listen", self.configuration.get_raw("server", "hosts"),
"radicale:application"], env=env)
2018-09-09 14:58:44 +02:00
try:
self.get("/", is_alive_fn=lambda: p.poll() is None, check=302)
2018-09-09 14:58:44 +02:00
finally:
p.terminate()
p.wait()