fix for pytest warning: "is using nose-specific method: setup(self)"

This commit is contained in:
Peter Bieringer 2024-03-12 08:02:24 +01:00 committed by Unrud
parent f3f3995b01
commit 6f7abbcba5
5 changed files with 18 additions and 18 deletions

View file

@ -48,7 +48,7 @@ class BaseTest:
configuration: config.Configuration configuration: config.Configuration
application: app.Application application: app.Application
def setup(self) -> None: def setup_method(self) -> None:
self.configuration = config.load() self.configuration = config.load()
self.colpath = tempfile.mkdtemp() self.colpath = tempfile.mkdtemp()
self.configure({ self.configure({
@ -62,7 +62,7 @@ class BaseTest:
self.configuration.update(config_, "test", privileged=True) self.configuration.update(config_, "test", privileged=True)
self.application = app.Application(self.configuration) self.application = app.Application(self.configuration)
def teardown(self) -> None: def teardown_method(self) -> None:
shutil.rmtree(self.colpath) shutil.rmtree(self.colpath)
def request(self, method: str, path: str, data: Optional[str] = None, def request(self, method: str, path: str, data: Optional[str] = None,

View file

@ -37,8 +37,8 @@ class TestBaseRequests(BaseTest):
# Allow skipping sync-token tests, when not fully supported by the backend # Allow skipping sync-token tests, when not fully supported by the backend
full_sync_token_support: ClassVar[bool] = True full_sync_token_support: ClassVar[bool] = True
def setup(self) -> None: def setup_method(self) -> None:
BaseTest.setup(self) BaseTest.setup_method(self)
rights_file_path = os.path.join(self.colpath, "rights") rights_file_path = os.path.join(self.colpath, "rights")
with open(rights_file_path, "w") as f: with open(rights_file_path, "w") as f:
f.write("""\ f.write("""\

View file

@ -31,10 +31,10 @@ class TestConfig:
colpath: str colpath: str
def setup(self) -> None: def setup_method(self) -> None:
self.colpath = tempfile.mkdtemp() self.colpath = tempfile.mkdtemp()
def teardown(self) -> None: def teardown_method(self) -> None:
shutil.rmtree(self.colpath) shutil.rmtree(self.colpath)
def _write_config(self, config_dict: types.CONFIG, name: str) -> str: def _write_config(self, config_dict: types.CONFIG, name: str) -> str:

View file

@ -54,8 +54,8 @@ class TestBaseServerRequests(BaseTest):
thread: threading.Thread thread: threading.Thread
opener: request.OpenerDirector opener: request.OpenerDirector
def setup(self) -> None: def setup_method(self) -> None:
super().setup() super().setup_method()
self.shutdown_socket, shutdown_socket_out = socket.socketpair() self.shutdown_socket, shutdown_socket_out = socket.socketpair()
with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as sock: with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as sock:
# Find available port # Find available port
@ -74,13 +74,13 @@ class TestBaseServerRequests(BaseTest):
request.HTTPSHandler(context=ssl_context), request.HTTPSHandler(context=ssl_context),
DisabledRedirectHandler) DisabledRedirectHandler)
def teardown(self) -> None: def teardown_method(self) -> None:
self.shutdown_socket.close() self.shutdown_socket.close()
try: try:
self.thread.join() self.thread.join()
except RuntimeError: # Thread never started except RuntimeError: # Thread never started
pass pass
super().teardown() super().teardown_method()
def request(self, method: str, path: str, data: Optional[str] = None, def request(self, method: str, path: str, data: Optional[str] = None,
check: Optional[int] = None, **kwargs check: Optional[int] = None, **kwargs

View file

@ -35,8 +35,8 @@ from radicale.tests.test_base import TestBaseRequests as _TestBaseRequests
class TestMultiFileSystem(BaseTest): class TestMultiFileSystem(BaseTest):
"""Tests for multifilesystem.""" """Tests for multifilesystem."""
def setup(self) -> None: def setup_method(self) -> None:
_TestBaseRequests.setup(cast(_TestBaseRequests, self)) _TestBaseRequests.setup_method(cast(_TestBaseRequests, self))
self.configure({"storage": {"type": "multifilesystem"}}) self.configure({"storage": {"type": "multifilesystem"}})
def test_folder_creation(self) -> None: def test_folder_creation(self) -> None:
@ -150,8 +150,8 @@ class TestMultiFileSystem(BaseTest):
class TestMultiFileSystemNoLock(BaseTest): class TestMultiFileSystemNoLock(BaseTest):
"""Tests for multifilesystem_nolock.""" """Tests for multifilesystem_nolock."""
def setup(self) -> None: def setup_method(self) -> None:
_TestBaseRequests.setup(cast(_TestBaseRequests, self)) _TestBaseRequests.setup_method(cast(_TestBaseRequests, self))
self.configure({"storage": {"type": "multifilesystem_nolock"}}) self.configure({"storage": {"type": "multifilesystem_nolock"}})
test_add_event = _TestBaseRequests.test_add_event test_add_event = _TestBaseRequests.test_add_event
@ -161,8 +161,8 @@ class TestMultiFileSystemNoLock(BaseTest):
class TestCustomStorageSystem(BaseTest): class TestCustomStorageSystem(BaseTest):
"""Test custom backend loading.""" """Test custom backend loading."""
def setup(self) -> None: def setup_method(self) -> None:
_TestBaseRequests.setup(cast(_TestBaseRequests, self)) _TestBaseRequests.setup_method(cast(_TestBaseRequests, self))
self.configure({"storage": { self.configure({"storage": {
"type": "radicale.tests.custom.storage_simple_sync"}}) "type": "radicale.tests.custom.storage_simple_sync"}})
@ -181,8 +181,8 @@ class TestCustomStorageSystem(BaseTest):
class TestCustomStorageSystemCallable(BaseTest): class TestCustomStorageSystemCallable(BaseTest):
"""Test custom backend loading with ``callable``.""" """Test custom backend loading with ``callable``."""
def setup(self) -> None: def setup_method(self) -> None:
_TestBaseRequests.setup(cast(_TestBaseRequests, self)) _TestBaseRequests.setup_method(cast(_TestBaseRequests, self))
self.configure({"storage": { self.configure({"storage": {
"type": radicale.tests.custom.storage_simple_sync.Storage}}) "type": radicale.tests.custom.storage_simple_sync.Storage}})