Add tests with empty map

Signed-off-by: anikeev-yadro <a.anikeev@yadro.com>
This commit is contained in:
anikeev-yadro 2023-03-09 13:19:41 +03:00
parent c3947b0716
commit eb464f422c
4 changed files with 279 additions and 20 deletions

View file

@ -1,4 +1,5 @@
import random
import pathlib
import re
from dataclasses import dataclass
from typing import Any
@ -110,7 +111,14 @@ class InnerRingNode(NodeBase):
since frostfs network will still treat it as "node"
"""
pass
def get_netmap_cleaner_threshold(self) -> str:
config_file = self.get_remote_config_path()
contents = self.host.get_shell().exec(f"cat {config_file}").stdout
config = yaml.safe_load(contents)
value = config["netmap_cleaner"]["threshold"]
return value
class S3Gate(NodeBase):