mirror of
https://github.com/langgenius/dify.git
synced 2024-11-16 19:59:50 +08:00
8bcc5a36bb
Co-authored-by: crazywoola <100913391+crazywoola@users.noreply.github.com> Co-authored-by: crazywoola <427733928@qq.com>
15 lines
641 B
Python
15 lines
641 B
Python
from models.account import TenantAccountRole
|
|
|
|
|
|
def test_account_is_privileged_role() -> None:
|
|
assert TenantAccountRole.ADMIN == 'admin'
|
|
assert TenantAccountRole.OWNER == 'owner'
|
|
assert TenantAccountRole.EDITOR == 'editor'
|
|
assert TenantAccountRole.NORMAL == 'normal'
|
|
|
|
assert TenantAccountRole.is_privileged_role(TenantAccountRole.ADMIN)
|
|
assert TenantAccountRole.is_privileged_role(TenantAccountRole.OWNER)
|
|
assert not TenantAccountRole.is_privileged_role(TenantAccountRole.NORMAL)
|
|
assert not TenantAccountRole.is_privileged_role(TenantAccountRole.EDITOR)
|
|
assert not TenantAccountRole.is_privileged_role('')
|