| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172 |
- # This file is part of Radicale - CalDAV and CardDAV server
- # Copyright © 2017-2019 Unrud <unrud@outlook.com>
- #
- # 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 and rights.
- """
- import os
- from radicale.tests import BaseTest
- from radicale.tests.helpers import get_file_content
- class TestBaseRightsRequests(BaseTest):
- """Tests basic requests with rights."""
- def _test_rights(self, rights_type: str, user: str, path: str, mode: str,
- expected_status: int, with_auth: bool = True) -> None:
- assert mode in ("r", "w")
- assert user in ("", "tmp")
- htpasswd_file_path = os.path.join(self.colpath, ".htpasswd")
- with open(htpasswd_file_path, "w") as f:
- f.write("tmp:bepo\nother:bepo")
- self.configure({
- "rights": {"type": rights_type},
- "auth": {"type": "htpasswd" if with_auth else "none",
- "htpasswd_filename": htpasswd_file_path,
- "htpasswd_encryption": "plain"}})
- for u in ("tmp", "other"):
- # Indirect creation of principal collection
- self.propfind("/%s/" % u, login="%s:bepo" % u)
- (self.propfind if mode == "r" else self.proppatch)(
- path, check=expected_status, login="tmp:bepo" if user else None)
- def test_owner_only(self) -> None:
- self._test_rights("owner_only", "", "/", "r", 401)
- self._test_rights("owner_only", "", "/", "w", 401)
- self._test_rights("owner_only", "", "/tmp/", "r", 401)
- self._test_rights("owner_only", "", "/tmp/", "w", 401)
- self._test_rights("owner_only", "tmp", "/", "r", 207)
- self._test_rights("owner_only", "tmp", "/", "w", 403)
- self._test_rights("owner_only", "tmp", "/tmp/", "r", 207)
- self._test_rights("owner_only", "tmp", "/tmp/", "w", 207)
- self._test_rights("owner_only", "tmp", "/other/", "r", 403)
- self._test_rights("owner_only", "tmp", "/other/", "w", 403)
- def test_owner_only_without_auth(self) -> None:
- self._test_rights("owner_only", "", "/", "r", 207, False)
- self._test_rights("owner_only", "", "/", "w", 401, False)
- self._test_rights("owner_only", "", "/tmp/", "r", 207, False)
- self._test_rights("owner_only", "", "/tmp/", "w", 207, False)
- def test_owner_write(self) -> None:
- self._test_rights("owner_write", "", "/", "r", 401)
- self._test_rights("owner_write", "", "/", "w", 401)
- self._test_rights("owner_write", "", "/tmp/", "r", 401)
- self._test_rights("owner_write", "", "/tmp/", "w", 401)
- self._test_rights("owner_write", "tmp", "/", "r", 207)
- self._test_rights("owner_write", "tmp", "/", "w", 403)
- self._test_rights("owner_write", "tmp", "/tmp/", "r", 207)
- self._test_rights("owner_write", "tmp", "/tmp/", "w", 207)
- self._test_rights("owner_write", "tmp", "/other/", "r", 207)
- self._test_rights("owner_write", "tmp", "/other/", "w", 403)
- def test_owner_write_without_auth(self) -> None:
- self._test_rights("owner_write", "", "/", "r", 207, False)
- self._test_rights("owner_write", "", "/", "w", 401, False)
- self._test_rights("owner_write", "", "/tmp/", "r", 207, False)
- self._test_rights("owner_write", "", "/tmp/", "w", 207, False)
- def test_authenticated(self) -> None:
- self._test_rights("authenticated", "", "/", "r", 401)
- self._test_rights("authenticated", "", "/", "w", 401)
- self._test_rights("authenticated", "", "/tmp/", "r", 401)
- self._test_rights("authenticated", "", "/tmp/", "w", 401)
- self._test_rights("authenticated", "tmp", "/", "r", 207)
- self._test_rights("authenticated", "tmp", "/", "w", 207)
- self._test_rights("authenticated", "tmp", "/tmp/", "r", 207)
- self._test_rights("authenticated", "tmp", "/tmp/", "w", 207)
- self._test_rights("authenticated", "tmp", "/other/", "r", 207)
- self._test_rights("authenticated", "tmp", "/other/", "w", 207)
- def test_authenticated_without_auth(self) -> None:
- self._test_rights("authenticated", "", "/", "r", 207, False)
- self._test_rights("authenticated", "", "/", "w", 207, False)
- self._test_rights("authenticated", "", "/tmp/", "r", 207, False)
- self._test_rights("authenticated", "", "/tmp/", "w", 207, False)
- def test_from_file(self) -> None:
- rights_file_path = os.path.join(self.colpath, "rights")
- with open(rights_file_path, "w") as f:
- f.write("""\
- [owner]
- user: .+
- collection: {user}(/.*)?
- permissions: RrWw
- [custom]
- user: .*
- collection: custom(/.*)?
- permissions: Rr""")
- self.configure({"rights": {"file": rights_file_path}})
- self._test_rights("from_file", "", "/other/", "r", 401)
- self._test_rights("from_file", "tmp", "/other/", "r", 403)
- self._test_rights("from_file", "", "/custom/sub", "r", 404)
- self._test_rights("from_file", "tmp", "/custom/sub", "r", 404)
- self._test_rights("from_file", "", "/custom/sub", "w", 401)
- self._test_rights("from_file", "tmp", "/custom/sub", "w", 403)
- def test_from_file_limited_get(self):
- rights_file_path = os.path.join(self.colpath, "rights")
- with open(rights_file_path, "w") as f:
- f.write("""\
- [write-all]
- user: tmp
- collection: .*
- permissions: RrWw
- [limited-public]
- user: .*
- collection: public/[^/]*
- permissions: i""")
- self.configure({"rights": {"type": "from_file",
- "file": rights_file_path}})
- self.mkcalendar("/tmp/calendar", login="tmp:bepo")
- self.mkcol("/public", login="tmp:bepo")
- self.mkcalendar("/public/calendar", login="tmp:bepo")
- self.get("/tmp/calendar", check=401)
- self.get("/public/", check=401)
- self.get("/public/calendar")
- self.get("/public/calendar/1.ics", check=401)
- def test_custom(self) -> None:
- """Custom rights management."""
- self._test_rights("radicale.tests.custom.rights", "", "/", "r", 401)
- self._test_rights(
- "radicale.tests.custom.rights", "", "/tmp/", "r", 207)
- def test_collections_and_items(self) -> None:
- """Test rights for creation of collections, calendars and items.
- Collections are allowed at "/" and "/.../".
- Calendars/Address books are allowed at "/.../.../".
- Items are allowed at "/.../.../...".
- """
- self.mkcalendar("/", check=401)
- self.mkcalendar("/user/", check=401)
- self.mkcol("/user/")
- self.mkcol("/user/calendar/", check=401)
- self.mkcalendar("/user/calendar/")
- self.mkcol("/user/calendar/item", check=401)
- self.mkcalendar("/user/calendar/item", check=401)
- def test_put_collections_and_items(self) -> None:
- """Test rights for creation of calendars and items with PUT."""
- self.put("/user/", "BEGIN:VCALENDAR\r\nEND:VCALENDAR", check=401)
- self.mkcol("/user/")
- self.put("/user/calendar/", "BEGIN:VCALENDAR\r\nEND:VCALENDAR")
- event1 = get_file_content("event1.ics")
- self.put("/user/calendar/event1.ics", event1)
|