mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-16 11:22:12 +00:00
Add one more test.
This commit is contained in:
parent
6bd7a74dad
commit
8a7a411547
@ -0,0 +1,7 @@
|
||||
CREATE USER user_03231 IDENTIFIED WITH no_password DEFAULT ROLE role_a_03231 SETTINGS custom_x = \'x\'
|
||||
GRANT role_a_03231 TO user_03231
|
||||
CREATE ROLE role_a_03231
|
||||
GRANT INSERT ON *.* TO role_a_03231
|
||||
GRANT role_b_03231 TO role_a_03231
|
||||
CREATE ROLE role_b_03231
|
||||
GRANT SELECT ON *.* TO role_b_03231
|
@ -0,0 +1,30 @@
|
||||
#!/usr/bin/env bash
|
||||
# Tags: no-fasttest, no-parallel
|
||||
# Tag no-fasttest: we restore from a zip-archived backup here.
|
||||
# Tag no-parallel: we drop and restore fixed users and roles.
|
||||
|
||||
CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
|
||||
# shellcheck source=../shell_config.sh
|
||||
. "$CURDIR"/../shell_config.sh
|
||||
|
||||
# In this test we restore from "/tests/queries/0_stateless/backups/old_backup_without_access_entities_dependents.zip"
|
||||
backup_name="$($CURDIR/helpers/install_predefined_backup.sh old_backup_without_access_entities_dependents.zip)"
|
||||
|
||||
${CLICKHOUSE_CLIENT} -m --query "
|
||||
DROP USER IF EXISTS user_03231;
|
||||
DROP ROLE IF EXISTS role_a_03231, role_b_03231;
|
||||
"
|
||||
|
||||
${CLICKHOUSE_CLIENT} --query "RESTORE ALL FROM Disk('backups', '${backup_name}') FORMAT Null"
|
||||
|
||||
${CLICKHOUSE_CLIENT} --query "SHOW CREATE USER user_03231"
|
||||
${CLICKHOUSE_CLIENT} --query "SHOW GRANTS FOR user_03231"
|
||||
${CLICKHOUSE_CLIENT} --query "SHOW CREATE ROLE role_a_03231"
|
||||
${CLICKHOUSE_CLIENT} --query "SHOW GRANTS FOR role_a_03231"
|
||||
${CLICKHOUSE_CLIENT} --query "SHOW CREATE ROLE role_b_03231"
|
||||
${CLICKHOUSE_CLIENT} --query "SHOW GRANTS FOR role_b_03231"
|
||||
|
||||
${CLICKHOUSE_CLIENT} -m --query "
|
||||
DROP USER user_03231;
|
||||
DROP ROLE role_a_03231, role_b_03231;
|
||||
"
|
Binary file not shown.
Loading…
Reference in New Issue
Block a user