mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 15:42:02 +00:00
45 lines
1.2 KiB
Python
45 lines
1.2 KiB
Python
import pytest
|
|
|
|
from helpers.cluster import ClickHouseCluster
|
|
|
|
cluster = ClickHouseCluster(__file__)
|
|
instance = cluster.add_instance(
|
|
"instance", user_configs=["configs/users.d/extra_users.xml"]
|
|
)
|
|
|
|
|
|
@pytest.fixture(scope="module", autouse=True)
|
|
def started_cluster():
|
|
try:
|
|
cluster.start()
|
|
yield cluster
|
|
|
|
finally:
|
|
cluster.shutdown()
|
|
|
|
|
|
def test_enabling_access_management():
|
|
instance.query("DROP USER IF EXISTS Alex")
|
|
|
|
instance.query("CREATE USER Alex", user="default")
|
|
assert (
|
|
instance.query("SHOW CREATE USER Alex", user="default")
|
|
== "CREATE USER Alex IDENTIFIED WITH no_password\n"
|
|
)
|
|
assert (
|
|
instance.query("SHOW CREATE USER Alex", user="readonly")
|
|
== "CREATE USER Alex IDENTIFIED WITH no_password\n"
|
|
)
|
|
assert "Not enough privileges" in instance.query_and_get_error(
|
|
"SHOW CREATE USER Alex", user="xyz"
|
|
)
|
|
|
|
assert "Cannot execute query in readonly mode" in instance.query_and_get_error(
|
|
"CREATE USER Robin", user="readonly"
|
|
)
|
|
assert "Not enough privileges" in instance.query_and_get_error(
|
|
"CREATE USER Robin", user="xyz"
|
|
)
|
|
|
|
instance.query("DROP USER IF EXISTS Alex")
|