ClickHouse/tests/integration/test_ldap_external_user_directory/test.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

184 lines
6.0 KiB
Python
Raw Normal View History

2023-09-29 07:16:14 +00:00
import logging
2024-09-27 10:19:39 +00:00
2023-09-29 07:16:14 +00:00
import pytest
2024-09-27 10:19:39 +00:00
2023-09-29 07:16:14 +00:00
from helpers.cluster import ClickHouseCluster
from helpers.test_tools import TSV
LDAP_ADMIN_BIND_DN = "cn=admin,dc=example,dc=org"
LDAP_ADMIN_PASSWORD = "clickhouse"
cluster = ClickHouseCluster(__file__)
2024-11-09 22:44:59 +00:00
instance1 = cluster.add_instance(
"instance1",
main_configs=["configs/ldap_with_role_mapping.xml", "configs/remote_servers.xml"],
macros={"shard": 1, "replica": "instance1"},
stay_alive=True,
with_ldap=True,
with_zookeeper=True,
)
instance2 = cluster.add_instance(
"instance2",
main_configs=["configs/remote_servers.xml"],
macros={"shard": 1, "replica": "instance2"},
stay_alive=True,
with_zookeeper=True,
2023-09-29 07:16:14 +00:00
)
2023-09-30 05:04:05 +00:00
2023-09-29 07:16:14 +00:00
@pytest.fixture(scope="module", autouse=True)
def ldap_cluster():
try:
cluster.start()
yield cluster
finally:
cluster.shutdown()
2023-09-30 05:04:05 +00:00
2023-09-29 07:16:14 +00:00
def add_ldap_group(ldap_cluster, group_cn, member_cn):
2023-09-30 05:04:05 +00:00
code, (stdout, stderr) = ldap_cluster.ldap_container.exec_run(
[
"sh",
"-c",
"""echo "dn: cn={group_cn},dc=example,dc=org
2023-09-29 07:16:14 +00:00
objectClass: top
objectClass: groupOfNames
member: cn={member_cn},ou=users,dc=example,dc=org" | \
ldapadd -H ldap://{host}:{port} -D "{admin_bind_dn}" -x -w {admin_password}
""".format(
2023-09-30 05:04:05 +00:00
host=ldap_cluster.ldap_host,
port=ldap_cluster.ldap_port,
admin_bind_dn=LDAP_ADMIN_BIND_DN,
admin_password=LDAP_ADMIN_PASSWORD,
group_cn=group_cn,
member_cn=member_cn,
),
],
2023-09-29 07:16:14 +00:00
demux=True,
)
2023-09-30 05:04:05 +00:00
logging.debug(
f"test_ldap_external_user_directory code:{code} stdout:{stdout}, stderr:{stderr}"
)
2023-09-29 07:16:14 +00:00
assert code == 0
def delete_ldap_group(ldap_cluster, group_cn):
code, (stdout, stderr) = ldap_cluster.ldap_container.exec_run(
[
"sh",
"-c",
"""ldapdelete -r 'cn={group_cn},dc=example,dc=org' \
-H ldap://{host}:{port} -D "{admin_bind_dn}" -x -w {admin_password}
""".format(
host=ldap_cluster.ldap_host,
port=ldap_cluster.ldap_port,
admin_bind_dn=LDAP_ADMIN_BIND_DN,
admin_password=LDAP_ADMIN_PASSWORD,
group_cn=group_cn,
),
],
demux=True,
)
logging.debug(
f"test_ldap_external_user_directory code:{code} stdout:{stdout}, stderr:{stderr}"
)
assert code == 0
2023-09-29 07:16:14 +00:00
def test_authentication_pass():
2024-11-09 22:44:59 +00:00
assert instance1.query(
"SELECT currentUser()", user="janedoe", password="qwerty"
2023-09-30 05:04:05 +00:00
) == TSV([["janedoe"]])
2023-09-29 07:16:14 +00:00
def test_authentication_fail():
# User doesn't exist.
2024-11-09 22:44:59 +00:00
assert "doesnotexist: Authentication failed" in instance1.query_and_get_error(
2023-09-29 07:16:14 +00:00
"SELECT currentUser()", user="doesnotexist"
)
# Wrong password.
2024-11-09 22:44:59 +00:00
assert "janedoe: Authentication failed" in instance1.query_and_get_error(
2023-09-29 07:16:14 +00:00
"SELECT currentUser()", user="janedoe", password="123"
)
2023-09-30 05:04:05 +00:00
2023-09-29 07:16:14 +00:00
def test_role_mapping(ldap_cluster):
2024-11-09 22:44:59 +00:00
instance1.query("DROP ROLE IF EXISTS role_1")
instance1.query("DROP ROLE IF EXISTS role_2")
instance1.query("DROP ROLE IF EXISTS role_3")
instance1.query("CREATE ROLE role_1")
instance1.query("CREATE ROLE role_2")
2023-09-29 07:16:14 +00:00
add_ldap_group(ldap_cluster, group_cn="clickhouse-role_1", member_cn="johndoe")
add_ldap_group(ldap_cluster, group_cn="clickhouse-role_2", member_cn="johndoe")
2024-11-09 22:44:59 +00:00
assert instance1.query(
2023-09-30 05:04:05 +00:00
"select currentUser()", user="johndoe", password="qwertz"
) == TSV([["johndoe"]])
2024-11-09 22:44:59 +00:00
assert instance1.query(
2023-09-30 05:04:05 +00:00
"select role_name from system.current_roles ORDER BY role_name",
user="johndoe",
password="qwertz",
) == TSV([["role_1"], ["role_2"]])
2023-09-29 07:16:14 +00:00
2024-11-09 22:44:59 +00:00
instance1.query("CREATE ROLE role_3")
2023-09-29 07:16:14 +00:00
add_ldap_group(ldap_cluster, group_cn="clickhouse-role_3", member_cn="johndoe")
# Check that non-existing role in ClickHouse is ignored during role update
2023-09-30 05:04:05 +00:00
# See https://github.com/ClickHouse/ClickHouse/issues/54318
2023-09-29 07:16:14 +00:00
add_ldap_group(ldap_cluster, group_cn="clickhouse-role_4", member_cn="johndoe")
2024-11-09 22:44:59 +00:00
assert instance1.query(
2023-09-30 05:04:05 +00:00
"select role_name from system.current_roles ORDER BY role_name",
user="johndoe",
password="qwertz",
) == TSV([["role_1"], ["role_2"], ["role_3"]])
2024-11-09 22:44:59 +00:00
instance1.query("DROP ROLE role_1")
instance1.query("DROP ROLE role_2")
instance1.query("DROP ROLE role_3")
delete_ldap_group(ldap_cluster, group_cn="clickhouse-role_1")
delete_ldap_group(ldap_cluster, group_cn="clickhouse-role_2")
delete_ldap_group(ldap_cluster, group_cn="clickhouse-role_3")
2024-09-18 20:59:56 +00:00
delete_ldap_group(ldap_cluster, group_cn="clickhouse-role_4")
2024-11-09 22:44:59 +00:00
def test_push_role_to_other_nodes(ldap_cluster):
instance1.query("DROP TABLE IF EXISTS distributed_table SYNC")
instance1.query("DROP TABLE IF EXISTS local_table SYNC")
instance2.query("DROP TABLE IF EXISTS local_table SYNC")
instance1.query("DROP ROLE IF EXISTS role_read")
instance1.query("CREATE ROLE role_read")
instance1.query("GRANT SELECT ON *.* TO role_read")
add_ldap_group(ldap_cluster, group_cn="clickhouse-role_read", member_cn="johndoe")
assert instance1.query(
"select currentUser()", user="johndoe", password="qwertz"
) == TSV([["johndoe"]])
2024-11-09 23:03:55 +00:00
instance1.query(
"CREATE TABLE IF NOT EXISTS local_table (id UInt32) ENGINE = MergeTree() ORDER BY id"
)
instance2.query(
"CREATE TABLE IF NOT EXISTS local_table (id UInt32) ENGINE = MergeTree() ORDER BY id"
)
2024-11-09 22:44:59 +00:00
instance2.query("INSERT INTO local_table VALUES (1), (2), (3)")
2024-11-09 23:03:55 +00:00
instance1.query(
"CREATE TABLE IF NOT EXISTS distributed_table AS local_table ENGINE = Distributed(test_ldap_cluster, default, local_table)"
)
2024-11-09 22:44:59 +00:00
2024-11-09 23:03:55 +00:00
result = instance1.query(
"SELECT sum(id) FROM distributed_table", user="johndoe", password="qwertz"
)
assert result.strip() == "6"
2024-11-09 22:44:59 +00:00
instance1.query("DROP TABLE IF EXISTS distributed_table SYNC")
instance1.query("DROP TABLE IF EXISTS local_table SYNC")
instance2.query("DROP TABLE IF EXISTS local_table SYNC")
instance2.query("DROP ROLE IF EXISTS role_read")