-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tests: add tests for network config change via neofs-adm
Signed-off-by: Evgeniy Zayats <[email protected]>
- Loading branch information
Evgeniy Zayats
committed
Sep 6, 2023
1 parent
bb98cab
commit 91e5f14
Showing
1 changed file
with
151 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,151 @@ | ||
from typing import Union | ||
|
||
import allure | ||
import pytest | ||
from cluster_test_base import ClusterTestBase | ||
from common import NEOFS_ADM_CONFIG_PATH, NEOFS_ADM_EXEC | ||
from neofs_testlib.cli import NeofsAdm | ||
from python_keywords.neofs_verbs import get_netmap_netinfo | ||
|
||
CONFIG_KEYS_MAPPING = { | ||
"MaxObjectSize": "maximum_object_size", | ||
"BasicIncomeRate": "storage_price", | ||
"AuditFee": "audit_fee", | ||
"EpochDuration": "epoch_duration", | ||
"ContainerFee": "container_fee", | ||
# "ContainerAliasFee": "", | ||
"EigenTrustIterations": "number_of_eigentrust_iterations", | ||
"EigenTrustAlpha": "eigentrust_alpha", | ||
"InnerRingCandidateFee": "inner_ring_candidate_fee", | ||
"WithdrawFee": "withdrawal_fee", | ||
"HomomorphicHashingDisabled": "homomorphic_hashing_disabled", | ||
"MaintenanceModeAllowed": "maintenance_mode_allowed", | ||
"unknown_key": "unknown_key", | ||
} | ||
|
||
|
||
@allure.title("Network configuration changes via neofs-adm") | ||
@pytest.mark.network_config | ||
class TestNetworkConfigChange(ClusterTestBase): | ||
@pytest.mark.parametrize( | ||
"key, value", | ||
[ | ||
("MaxObjectSize", 1048576), | ||
("BasicIncomeRate", 50000000), | ||
("AuditFee", 5000), | ||
("EpochDuration", 480), | ||
("ContainerFee", 2000), | ||
# ("ContainerAliasFee",), | ||
("EigenTrustIterations", 8), | ||
("EigenTrustAlpha", 0.2), | ||
("InnerRingCandidateFee", 5000000000), | ||
("WithdrawFee", 200000000), | ||
("HomomorphicHashingDisabled", True), | ||
("MaintenanceModeAllowed", True), | ||
], | ||
) | ||
def test_config_update_single_value(self, key: str, value: Union[str, int, bool]): | ||
allure.dynamic.title(f"Set '{key}' to '{value}'") | ||
|
||
with allure.step(f"Get original value of '{key}'"): | ||
storage_node = self.cluster.storage_nodes[0] | ||
net_info = get_netmap_netinfo( | ||
wallet=storage_node.get_wallet_path(), | ||
wallet_config=storage_node.get_wallet_config_path(), | ||
endpoint=storage_node.get_rpc_endpoint(), | ||
shell=storage_node.host.get_shell(), | ||
) | ||
original_value = net_info[CONFIG_KEYS_MAPPING[key]] | ||
|
||
self._set_and_verify_config_keys(**{key: value}) | ||
|
||
with allure.step( | ||
f"Change '{key}' back to original value: '{original_value}' via neofs-adm" | ||
): | ||
self._set_and_verify_config_keys(**{key: original_value}) | ||
|
||
@allure.title("Multiple network config keys can be changed at once") | ||
def test_config_update_multiple_values(self): | ||
new_key_value_pairs = { | ||
"MaxObjectSize": 1048576, | ||
"BasicIncomeRate": 50000000, | ||
"AuditFee": 5000, | ||
} | ||
original_key_value_pairs = {} | ||
|
||
with allure.step(f"Get original values of keys: {new_key_value_pairs.keys()}"): | ||
storage_node = self.cluster.storage_nodes[0] | ||
net_info = get_netmap_netinfo( | ||
wallet=storage_node.get_wallet_path(), | ||
wallet_config=storage_node.get_wallet_config_path(), | ||
endpoint=storage_node.get_rpc_endpoint(), | ||
shell=storage_node.host.get_shell(), | ||
) | ||
for key in new_key_value_pairs.keys(): | ||
original_key_value_pairs[key] = net_info[CONFIG_KEYS_MAPPING[key]] | ||
|
||
self._set_and_verify_config_keys(**new_key_value_pairs) | ||
|
||
with allure.step("Change network config back to original state"): | ||
self._set_and_verify_config_keys(**original_key_value_pairs) | ||
|
||
@pytest.mark.parametrize( | ||
"key, value", | ||
[ | ||
("MaxObjectSize", "VeryBigSize"), | ||
("BasicIncomeRate", False), | ||
("HomomorphicHashingDisabled", 0.2), | ||
], | ||
) | ||
@allure.title("Set network config key to invalid value") | ||
def test_config_set_invalid_value(self, key: str, value: Union[str, int, bool]): | ||
self._set_and_verify_config_keys(**{key: value}) | ||
|
||
@allure.title("Set multiple network config keys to invalid values with force") | ||
def test_config_set_multiple_invalid_values(self): | ||
self._set_and_verify_config_keys( | ||
**{"MaxObjectSize": "VeryBigSize", "BasicIncomeRate": False}, force=True | ||
) | ||
|
||
@allure.title("Set network config unknown key") | ||
def test_config_set_unknown_key(self): | ||
with pytest.raises(RuntimeError, match=f".*key is not well-known.*"): | ||
self._set_and_verify_config_keys(**{"unknown_key": 120}) | ||
|
||
@allure.title("Set network config unknown key with force") | ||
def test_config_force_set_unknown_key(self): | ||
self._set_and_verify_config_keys(**{"unknown_key": 120}, force=True) | ||
|
||
def _set_and_verify_config_keys( | ||
self, force: bool = False, **key_value_pairs: dict[str, Union[str, int, bool]] | ||
): | ||
ir_node = self.cluster.ir_nodes[0] | ||
morph_chain = self.cluster.morph_chain_nodes[0] | ||
neofsadm = NeofsAdm( | ||
shell=ir_node.host.get_shell(), | ||
neofs_adm_exec_path=NEOFS_ADM_EXEC, | ||
config_file=NEOFS_ADM_CONFIG_PATH, | ||
) | ||
|
||
with allure.step(f"Set {key_value_pairs} via neofs-adm"): | ||
force_str = f"--force " if force else "" | ||
keys_values_str = " ".join( | ||
[f"{key}={str(value).lower()}" for key, value in key_value_pairs.items()] | ||
) | ||
|
||
neofsadm.morph.set_config( | ||
rpc_endpoint=morph_chain.get_endpoint(), | ||
alphabet_wallets="/".join(ir_node.get_wallet_path().split("/")[:-1]), | ||
post_data=f"{force_str}{keys_values_str}", | ||
) | ||
|
||
storage_node = self.cluster.storage_nodes[0] | ||
net_info = get_netmap_netinfo( | ||
wallet=storage_node.get_wallet_path(), | ||
wallet_config=storage_node.get_wallet_config_path(), | ||
endpoint=storage_node.get_rpc_endpoint(), | ||
shell=storage_node.host.get_shell(), | ||
) | ||
|
||
for key, value in key_value_pairs.items(): | ||
assert net_info[CONFIG_KEYS_MAPPING[key]] == value |