2021-07-19 23:34:04 +00:00
|
|
|
import pytest
|
|
|
|
from helpers.cluster import ClickHouseCluster
|
|
|
|
|
|
|
|
cluster = ClickHouseCluster(__file__)
|
|
|
|
instance = cluster.add_instance('instance')
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture(scope="module", autouse=True)
|
|
|
|
def started_cluster():
|
|
|
|
try:
|
|
|
|
cluster.start()
|
|
|
|
yield cluster
|
|
|
|
|
|
|
|
finally:
|
|
|
|
cluster.shutdown()
|
|
|
|
|
2021-07-21 07:29:26 +00:00
|
|
|
def test_access_rights_for_funtion():
|
2021-07-19 23:34:04 +00:00
|
|
|
create_function_query = "CREATE FUNCTION MySum AS (a, b) -> a + b"
|
|
|
|
|
|
|
|
instance.query("CREATE USER A")
|
|
|
|
instance.query("CREATE USER B")
|
|
|
|
assert "it's necessary to have grant CREATE FUNCTION ON *.*" in instance.query_and_get_error(create_function_query, user = 'A')
|
|
|
|
|
|
|
|
instance.query("GRANT CREATE FUNCTION on *.* TO A")
|
2021-08-23 14:31:58 +00:00
|
|
|
|
2021-07-20 20:42:48 +00:00
|
|
|
instance.query(create_function_query, user = 'A')
|
2021-07-21 07:29:26 +00:00
|
|
|
assert instance.query("SELECT MySum(1, 2)") == "3\n"
|
2021-07-19 23:34:04 +00:00
|
|
|
|
2021-07-21 09:41:17 +00:00
|
|
|
assert "it's necessary to have grant DROP FUNCTION ON *.*" in instance.query_and_get_error("DROP FUNCTION MySum", user = 'B')
|
2021-07-19 23:34:04 +00:00
|
|
|
|
|
|
|
instance.query("GRANT DROP FUNCTION ON *.* TO B")
|
|
|
|
instance.query("DROP FUNCTION MySum", user = 'B')
|
2021-07-21 11:10:37 +00:00
|
|
|
assert "Unknown function MySum" in instance.query_and_get_error("SELECT MySum(1, 2)")
|
2021-07-19 23:34:04 +00:00
|
|
|
|
2021-07-21 13:04:52 +00:00
|
|
|
instance.query("REVOKE CREATE FUNCTION ON *.* FROM A")
|
2021-07-19 23:34:04 +00:00
|
|
|
assert "it's necessary to have grant CREATE FUNCTION ON *.*" in instance.query_and_get_error(create_function_query, user = 'A')
|
2021-08-23 14:31:58 +00:00
|
|
|
|
|
|
|
instance.query("DROP USER IF EXISTS A")
|
|
|
|
instance.query("DROP USER IF EXISTS B")
|