Allow callable in configuration for plugin.type

Example:

```python3
\# Load default configuration
my_config = config.load()

\# Pass a class directly
my_config.update({"auth": {"type": MyAuth}})

\# Pass an object directly
my_rights = MyRights()
my_config.update({"rights": {"type": lambda config: my_rights}})

app = Application(my_config)
````
This commit is contained in:
Unrud 2020-01-15 03:20:48 +01:00
parent 72f8b29190
commit 9c622b57d5
3 changed files with 20 additions and 4 deletions

View file

@ -30,6 +30,7 @@ import tempfile
import defusedxml.ElementTree as DefusedET
import pytest
import radicale.tests.custom.storage_simple_sync
from radicale import Application, config, storage, xmlutils
from radicale.tests import BaseTest
from radicale.tests.helpers import get_file_content
@ -1495,3 +1496,9 @@ class TestCustomStorageSystem(BaseFileSystemTest):
if s.startswith("test_") and ("_sync_" in s or s.endswith("_sync")):
locals()[s] = getattr(BaseRequestsMixIn, s)
del s
class TestCustomStorageSystemCallable(BaseFileSystemTest):
"""Test custom backend loading with ``callable``."""
storage_type = radicale.tests.custom.storage_simple_sync.Storage
test_add_event = BaseRequestsMixIn.test_add_event