Skip to content
Snippets Groups Projects
Commit 82459983 authored by Krzysztof Mochocki's avatar Krzysztof Mochocki
Browse files

Remove validate for wallet name and depend only on beekeeper error

parent 626851f1
No related branches found
No related tags found
1 merge request!73Clive integration related fixes
Pipeline #115414 passed
......@@ -10,7 +10,7 @@ from beekeepy._interface.asynchronous.wallet import (
Wallet,
)
from beekeepy._interface.state_invalidator import StateInvalidator
from beekeepy._interface.validators import validate_digest, validate_public_keys, validate_timeout, validate_wallet_name
from beekeepy._interface.validators import validate_digest, validate_public_keys, validate_timeout
from beekeepy.exceptions import (
InvalidatedStateByClosingSessionError,
InvalidWalletError,
......@@ -56,7 +56,6 @@ class Session(SessionInterface, StateInvalidator):
async def create_wallet( # type: ignore[override]
self, *, name: str, password: str | None = None
) -> UnlockedWalletInterface | tuple[UnlockedWalletInterface, Password]:
validate_wallet_name(wallet_name=name)
with WalletWithSuchNameAlreadyExistsError(wallet_name=name), InvalidWalletError(wallet_name=name):
create_result = await self.__beekeeper.api.create(
wallet_name=name, password=password, token=await self.token
......@@ -65,8 +64,7 @@ class Session(SessionInterface, StateInvalidator):
return wallet if password is not None else (wallet, create_result.password)
async def open_wallet(self, *, name: str) -> WalletInterface:
validate_wallet_name(wallet_name=name)
with NoWalletWithSuchNameError(name):
with NoWalletWithSuchNameError(name), InvalidWalletError(wallet_name=name):
await self.__beekeeper.api.open(wallet_name=name, token=await self.token)
return await self.__construct_wallet(name=name)
......
......@@ -9,7 +9,7 @@ from beekeepy._interface.synchronous.wallet import (
UnlockedWallet,
Wallet,
)
from beekeepy._interface.validators import validate_digest, validate_public_keys, validate_timeout, validate_wallet_name
from beekeepy._interface.validators import validate_digest, validate_public_keys, validate_timeout
from beekeepy.exceptions import (
InvalidatedStateByClosingSessionError,
InvalidWalletError,
......@@ -55,15 +55,13 @@ class Session(SessionInterface, StateInvalidator):
def create_wallet( # type: ignore[override]
self, *, name: str, password: str | None = None
) -> UnlockedWalletInterface | tuple[UnlockedWalletInterface, Password]:
validate_wallet_name(wallet_name=name)
with WalletWithSuchNameAlreadyExistsError(wallet_name=name), InvalidWalletError(wallet_name=name):
create_result = self.__beekeeper.api.create(wallet_name=name, password=password, token=self.token)
wallet = self.__construct_unlocked_wallet(name)
return wallet if password is not None else (wallet, create_result.password)
def open_wallet(self, *, name: str) -> WalletInterface:
validate_wallet_name(wallet_name=name)
with NoWalletWithSuchNameError(name):
with NoWalletWithSuchNameError(name), InvalidWalletError(wallet_name=name):
self.__beekeeper.api.open(wallet_name=name, token=self.token)
return self.__construct_wallet(name=name)
......
......@@ -9,7 +9,6 @@ from beekeepy.exceptions import (
InvalidSchemaHexError,
InvalidSchemaPrivateKeyError,
InvalidSchemaPublicKeyError,
InvalidWalletNameError,
NotPositiveTimeError,
SchemaDetectableError,
TimeTooBigError,
......@@ -25,7 +24,6 @@ __all__ = [
"validate_private_keys",
"validate_public_keys",
"validate_timeout",
"validate_wallet_name",
"validate_digest",
]
......@@ -62,8 +60,3 @@ def validate_timeout(time: int) -> None:
if time >= TimeTooBigError.MAX_VALUE:
raise TimeTooBigError(time=time)
def validate_wallet_name(wallet_name: str) -> None:
if wallet_name_regex.match(wallet_name) is None:
raise InvalidWalletNameError(wallet_name=wallet_name)
......@@ -16,7 +16,6 @@ from beekeepy.exceptions.common import (
DetachRemoteBeekeeperError,
InvalidatedStateByClosingBeekeeperError,
InvalidatedStateByClosingSessionError,
InvalidWalletNameError,
NotPositiveTimeError,
TimeoutReachWhileCloseError,
TimeTooBigError,
......@@ -59,7 +58,6 @@ __all__ = [
"InvalidSchemaPrivateKeyError",
"InvalidSchemaPublicKeyError",
"InvalidWalletError",
"InvalidWalletNameError",
"MissingSTMPrefixError",
"NotExistingKeyError",
"NotPositiveTimeError",
......
......@@ -66,20 +66,6 @@ class TimeTooBigError(BeekeepyError):
super().__init__(f"Given time value is too big: `{time}` >= {TimeTooBigError.MAX_VALUE}.")
class InvalidWalletNameError(BeekeepyError):
"""Raises when specified wallet name was not matching alphanumeric and extra characters conditions."""
def __init__(self, wallet_name: str) -> None:
"""Constructor.
Args:
wallet_name (str): invalid wallet name
"""
super().__init__(
f"Given wallet name is invalid: `{wallet_name}`. Can be only alphanumeric or contain `._-@` characters."
)
class DetachRemoteBeekeeperError(BeekeeperHandleError):
"""Raises when user tries to detach beekeeper that is remote."""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment