radicale/tests/test_base.py

126 lines
4.2 KiB
Python
Raw Normal View History

2012-09-15 10:00:13 +02:00
# This file is part of Radicale Server - Calendar Server
2016-03-31 19:57:40 +02:00
# Copyright © 2012-2016 Guillaume Ayoub
2012-09-15 10:00:13 +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/>.
"""
Radicale tests with simple requests.
"""
2013-12-28 11:40:29 +01:00
import radicale
import shutil
import tempfile
2015-07-24 16:01:03 +02:00
from . import BaseTest
from .helpers import get_file_content
2012-09-15 10:00:13 +02:00
2013-09-05 15:13:31 +02:00
class BaseRequests(object):
2012-09-15 10:00:13 +02:00
"""Tests with simple requests."""
2015-07-24 16:01:03 +02:00
storage_type = None
def setup(self):
radicale.config.set("storage", "type", self.storage_type)
2012-09-15 10:00:13 +02:00
def test_root(self):
2015-07-24 14:23:11 +02:00
"""GET request at "/"."""
2012-09-15 10:00:13 +02:00
status, headers, answer = self.request("GET", "/")
assert status == 200
assert "Radicale works!" in answer
# Test the creation of the collection
2016-04-07 19:25:10 +02:00
self.request(
"PUT", "/calendar.ics/", "BEGIN:VCALENDAR\r\nEND:VCALENDAR")
2013-09-05 15:13:31 +02:00
status, headers, answer = self.request("GET", "/calendar.ics/")
assert "BEGIN:VCALENDAR" in answer
assert "END:VCALENDAR" in answer
2013-09-05 15:13:31 +02:00
2015-07-24 14:23:11 +02:00
def test_add_event(self):
"""Add an event."""
2016-04-07 19:25:10 +02:00
self.request(
"PUT", "/calendar.ics/", "BEGIN:VCALENDAR\r\nEND:VCALENDAR")
2015-07-24 14:23:11 +02:00
event = get_file_content("event.ics")
path = "/calendar.ics/event.ics"
2013-09-05 15:13:31 +02:00
status, headers, answer = self.request("PUT", path, event)
assert status == 201
status, headers, answer = self.request("GET", path)
2015-07-24 14:23:11 +02:00
assert "ETag" in headers.keys()
2013-09-05 15:13:31 +02:00
assert status == 200
assert "VEVENT" in answer
2015-07-24 14:23:11 +02:00
assert "Event" in answer
assert "UID:event" in answer
def test_add_todo(self):
"""Add a todo."""
2016-04-07 19:25:10 +02:00
self.request(
"PUT", "/calendar.ics/", "BEGIN:VCALENDAR\r\nEND:VCALENDAR")
2015-07-24 14:23:11 +02:00
todo = get_file_content("todo.ics")
path = "/calendar.ics/todo.ics"
2013-09-05 15:13:31 +02:00
status, headers, answer = self.request("PUT", path, todo)
assert status == 201
status, headers, answer = self.request("GET", path)
2015-07-24 14:23:11 +02:00
assert "ETag" in headers.keys()
assert "VTODO" in answer
2015-07-24 14:23:11 +02:00
assert "Todo" in answer
assert "UID:todo" in answer
2013-09-05 15:13:31 +02:00
def test_delete(self):
2015-07-24 14:23:11 +02:00
"""Delete an event."""
2016-04-07 19:25:10 +02:00
self.request(
"PUT", "/calendar.ics/", "BEGIN:VCALENDAR\r\nEND:VCALENDAR")
2015-07-24 14:23:11 +02:00
event = get_file_content("event.ics")
path = "/calendar.ics/event.ics"
2013-09-05 15:13:31 +02:00
status, headers, answer = self.request("PUT", path, event)
# Then we send a DELETE request
status, headers, answer = self.request("DELETE", path)
assert status == 200
2013-09-25 14:39:46 +02:00
assert "href>%s</" % path in answer
2013-09-05 15:13:31 +02:00
status, headers, answer = self.request("GET", "/calendar.ics/")
assert "VEVENT" not in answer
2013-09-05 15:13:31 +02:00
2013-12-28 11:40:29 +01:00
2016-04-07 19:25:10 +02:00
class TestMultiFileSystem(BaseRequests, BaseTest):
2013-12-28 11:40:29 +01:00
"""Base class for filesystem tests."""
2016-04-07 19:25:10 +02:00
storage_type = "multifilesystem"
2013-12-28 11:40:29 +01:00
def setup(self):
"""Setup function for each test."""
self.colpath = tempfile.mkdtemp()
2016-04-07 19:25:10 +02:00
from radicale import storage
storage.FOLDER = self.colpath
2013-12-28 11:40:29 +01:00
self.application = radicale.Application()
def teardown(self):
"""Teardown function for each test."""
shutil.rmtree(self.colpath)
class TestCustomStorageSystem(BaseRequests, BaseTest):
"""Base class for custom backend tests."""
storage_type = "custom"
def setup(self):
"""Setup function for each test."""
2016-03-31 19:57:40 +02:00
super().setup()
2013-12-28 11:40:29 +01:00
self.colpath = tempfile.mkdtemp()
2016-04-07 19:25:10 +02:00
radicale.config.set("storage", "type", "tests.custom.storage")
2013-12-28 11:40:29 +01:00
from tests.custom import storage
storage.FOLDER = self.colpath
storage.GIT_REPOSITORY = None
self.application = radicale.Application()
def teardown(self):
"""Teardown function for each test."""
2015-07-24 14:23:11 +02:00
shutil.rmtree(self.colpath)