-
Notifications
You must be signed in to change notification settings - Fork 492
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
NAS-132659 / 24.10.2 / Don't alow to enable ssh password login for us…
…er where 2fa secret is not available (by sonicaj) (#15235)
- Loading branch information
Showing
3 changed files
with
150 additions
and
3 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
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
128 changes: 128 additions & 0 deletions
128
src/middlewared/middlewared/pytest/unit/plugins/test_user_ssh_enabled_validation.py
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,128 @@ | ||
import pytest | ||
|
||
from middlewared.plugins.account import UserService | ||
from middlewared.pytest.unit.middleware import Middleware | ||
from middlewared.service import ValidationErrors | ||
|
||
|
||
@pytest.mark.parametrize('data,old_data,twofactor_enabled,twofactor_config,expected_error', [ | ||
( | ||
{ | ||
'ssh_password_enabled': True | ||
}, | ||
None, | ||
False, | ||
{ | ||
'services': { | ||
'ssh': False | ||
}, | ||
'enabled': False, | ||
}, | ||
'' | ||
), | ||
( | ||
{ | ||
'ssh_password_enabled': True | ||
}, | ||
None, | ||
False, | ||
{ | ||
'services': { | ||
'ssh': True | ||
}, | ||
'enabled': True, | ||
}, | ||
'[EINVAL] test_schema.ssh_password_enabled:' | ||
' 2FA for this user needs to be explicitly configured before password based SSH access is enabled.' | ||
' User will be created with SSH password access disabled and after 2FA has been' | ||
' configured for this user, SSH password access can be enabled.' | ||
), | ||
( | ||
{ | ||
'ssh_password_enabled': True | ||
}, | ||
{}, | ||
False, | ||
{ | ||
'services': { | ||
'ssh': True | ||
}, | ||
'enabled': True, | ||
}, | ||
'[EINVAL] test_schema.ssh_password_enabled:' | ||
' 2FA for this user needs to be explicitly configured before password based SSH access is enabled.' | ||
), | ||
( | ||
{ | ||
'ssh_password_enabled': True | ||
}, | ||
{}, | ||
True, | ||
{ | ||
'services': { | ||
'ssh': True | ||
}, | ||
'enabled': True, | ||
}, | ||
'' | ||
), | ||
( | ||
{ | ||
'ssh_password_enabled': True | ||
}, | ||
{}, | ||
False, | ||
{ | ||
'services': { | ||
'ssh': False | ||
}, | ||
'enabled': True, | ||
}, | ||
'' | ||
), | ||
( | ||
{ | ||
'ssh_password_enabled': True | ||
}, | ||
None, | ||
False, | ||
{ | ||
'services': { | ||
'ssh': False | ||
}, | ||
'enabled': True, | ||
}, | ||
'' | ||
), | ||
]) | ||
@pytest.mark.asyncio | ||
async def test_use_ssh_enabled_validation(data, old_data, twofactor_enabled, twofactor_config, expected_error): | ||
m = Middleware() | ||
m['datastore.query'] = lambda *arg: [] | ||
m['smb.is_configured'] = lambda *arg: False | ||
m['auth.twofactor.config'] = lambda *arg: twofactor_config | ||
m['user.translate_username'] = lambda *args: {'twofactor_auth_configured': twofactor_enabled} | ||
data['smb'] = False | ||
data.update( | ||
{ | ||
'smb': False, | ||
'password_disabled': True | ||
} | ||
) | ||
if old_data is not None: | ||
old_data.update( | ||
{ | ||
'username': '', | ||
'id': 0 | ||
} | ||
) | ||
verrors = ValidationErrors() | ||
if expected_error: | ||
with pytest.raises(ValidationErrors) as ve: | ||
await UserService(m).common_validation(verrors, data, 'test_schema', [], old_data,) | ||
verrors.check() | ||
assert str(ve.value.errors[0]) == expected_error | ||
else: | ||
await UserService(m).common_validation(verrors, data, 'test_schema', [], old_data, ) | ||
assert list(verrors) == [] |