diff --git a/src/neofs_testlib/hosting/docker_host.py b/src/neofs_testlib/hosting/docker_host.py index 34ebb87..ae97a32 100644 --- a/src/neofs_testlib/hosting/docker_host.py +++ b/src/neofs_testlib/hosting/docker_host.py @@ -116,7 +116,7 @@ class DockerHost(Host): timeout=service_attributes.stop_timeout, ) - def delete_storage_node_data(self, service_name: str) -> None: + def delete_storage_node_data(self, service_name: str, cache_only: bool = False) -> None: service_attributes = self._get_service_attributes(service_name) client = self._get_docker_client() @@ -124,7 +124,8 @@ class DockerHost(Host): volume_path = volume_info["Mountpoint"] shell = self.get_shell() - shell.exec(f"rm -rf {volume_path}/*") + cmd = f"rm -rf {volume_path}/meta*" if cache_only else f"rm -rf {volume_path}/*" + shell.exec(cmd) def dump_logs( self, diff --git a/src/neofs_testlib/hosting/interfaces.py b/src/neofs_testlib/hosting/interfaces.py index b004689..50eda0d 100644 --- a/src/neofs_testlib/hosting/interfaces.py +++ b/src/neofs_testlib/hosting/interfaces.py @@ -101,11 +101,12 @@ class Host(ABC): """ @abstractmethod - def delete_storage_node_data(self, service_name: str) -> None: + def delete_storage_node_data(self, service_name: str, cache_only: bool = False) -> None: """Erases all data of the storage node with specified name. Args: service_name: Name of storage node service. + cache_only: To delete cache only. """ @abstractmethod