2019-11-21 19:44:44 +00:00
import pytest
from helpers . cluster import ClickHouseCluster
from helpers . test_tools import assert_eq_with_retry
import os
import re
import time
cluster = ClickHouseCluster ( __file__ )
2020-02-07 19:31:09 +00:00
instance = cluster . add_instance ( ' instance1 ' , config_dir = " configs " , with_zookeeper = True )
instance2 = cluster . add_instance ( ' instance2 ' , config_dir = " configs " , with_zookeeper = True )
2019-11-21 19:44:44 +00:00
def copy_policy_xml ( local_file_name , reload_immediately = True ) :
script_dir = os . path . dirname ( os . path . realpath ( __file__ ) )
instance . copy_file_to_container ( os . path . join ( script_dir , local_file_name ) , ' /etc/clickhouse-server/users.d/row_policy.xml ' )
2020-02-07 19:31:09 +00:00
instance2 . copy_file_to_container ( os . path . join ( script_dir , local_file_name ) , ' /etc/clickhouse-server/users.d/row_policy.xml ' )
2019-11-21 19:44:44 +00:00
if reload_immediately :
instance . query ( " SYSTEM RELOAD CONFIG " )
@pytest.fixture ( scope = " module " , autouse = True )
def started_cluster ( ) :
try :
cluster . start ( )
instance . query ( '''
2020-03-18 17:38:52 +00:00
CREATE DATABASE mydb ENGINE = Ordinary ;
2019-11-21 19:44:44 +00:00
CREATE TABLE mydb . filtered_table1 ( a UInt8 , b UInt8 ) ENGINE MergeTree ORDER BY a ;
INSERT INTO mydb . filtered_table1 values ( 0 , 0 ) , ( 0 , 1 ) , ( 1 , 0 ) , ( 1 , 1 ) ;
2020-01-10 16:53:47 +00:00
CREATE TABLE mydb . table ( a UInt8 , b UInt8 ) ENGINE MergeTree ORDER BY a ;
INSERT INTO mydb . table values ( 0 , 0 ) , ( 0 , 1 ) , ( 1 , 0 ) , ( 1 , 1 ) ;
2019-11-21 19:44:44 +00:00
CREATE TABLE mydb . filtered_table2 ( a UInt8 , b UInt8 , c UInt8 , d UInt8 ) ENGINE MergeTree ORDER BY a ;
INSERT INTO mydb . filtered_table2 values ( 0 , 0 , 0 , 0 ) , ( 1 , 2 , 3 , 4 ) , ( 4 , 3 , 2 , 1 ) , ( 0 , 0 , 6 , 0 ) ;
CREATE TABLE mydb . filtered_table3 ( a UInt8 , b UInt8 , c UInt16 ALIAS a + b ) ENGINE MergeTree ORDER BY a ;
INSERT INTO mydb . filtered_table3 values ( 0 , 0 ) , ( 0 , 1 ) , ( 1 , 0 ) , ( 1 , 1 ) ;
2020-01-10 16:53:47 +00:00
CREATE TABLE mydb . ` . filtered_table4 ` ( a UInt8 , b UInt8 , c UInt16 ALIAS a + b ) ENGINE MergeTree ORDER BY a ;
INSERT INTO mydb . ` . filtered_table4 ` values ( 0 , 0 ) , ( 0 , 1 ) , ( 1 , 0 ) , ( 1 , 1 ) ;
2019-11-21 19:44:44 +00:00
''' )
2020-02-07 19:31:09 +00:00
instance2 . query ( '''
2020-03-18 17:38:52 +00:00
CREATE DATABASE mydb ENGINE = Ordinary ;
2020-02-07 19:31:09 +00:00
CREATE TABLE mydb . filtered_table1 ( a UInt8 , b UInt8 ) ENGINE MergeTree ORDER BY a ;
INSERT INTO mydb . filtered_table1 values ( 0 , 0 ) , ( 0 , 1 ) , ( 1 , 0 ) , ( 1 , 1 ) ;
CREATE TABLE mydb . table ( a UInt8 , b UInt8 ) ENGINE MergeTree ORDER BY a ;
INSERT INTO mydb . table values ( 0 , 0 ) , ( 0 , 1 ) , ( 1 , 0 ) , ( 1 , 1 ) ;
CREATE TABLE mydb . filtered_table2 ( a UInt8 , b UInt8 , c UInt8 , d UInt8 ) ENGINE MergeTree ORDER BY a ;
INSERT INTO mydb . filtered_table2 values ( 0 , 0 , 0 , 0 ) , ( 1 , 2 , 3 , 4 ) , ( 4 , 3 , 2 , 1 ) , ( 0 , 0 , 6 , 0 ) ;
CREATE TABLE mydb . filtered_table3 ( a UInt8 , b UInt8 , c UInt16 ALIAS a + b ) ENGINE MergeTree ORDER BY a ;
INSERT INTO mydb . filtered_table3 values ( 0 , 0 ) , ( 0 , 1 ) , ( 1 , 0 ) , ( 1 , 1 ) ;
CREATE TABLE mydb . ` . filtered_table4 ` ( a UInt8 , b UInt8 , c UInt16 ALIAS a + b ) ENGINE MergeTree ORDER BY a ;
INSERT INTO mydb . ` . filtered_table4 ` values ( 0 , 0 ) , ( 0 , 1 ) , ( 1 , 0 ) , ( 1 , 1 ) ;
''' )
2020-01-10 09:24:05 +00:00
2019-11-21 19:44:44 +00:00
yield cluster
finally :
cluster . shutdown ( )
@pytest.fixture ( autouse = True )
def reset_policies ( ) :
try :
yield
finally :
copy_policy_xml ( ' normal_filters.xml ' )
instance . query ( " DROP POLICY IF EXISTS pA, pB ON mydb.filtered_table1 " )
def test_smoke ( ) :
assert instance . query ( " SELECT * FROM mydb.filtered_table1 " ) == " 1 \t 0 \n 1 \t 1 \n "
assert instance . query ( " SELECT * FROM mydb.filtered_table2 " ) == " 0 \t 0 \t 0 \t 0 \n 0 \t 0 \t 6 \t 0 \n "
assert instance . query ( " SELECT * FROM mydb.filtered_table3 " ) == " 0 \t 1 \n 1 \t 0 \n "
assert instance . query ( " SELECT a FROM mydb.filtered_table1 " ) == " 1 \n 1 \n "
assert instance . query ( " SELECT b FROM mydb.filtered_table1 " ) == " 0 \n 1 \n "
assert instance . query ( " SELECT a FROM mydb.filtered_table1 WHERE a = 1 " ) == " 1 \n 1 \n "
2020-01-10 09:24:05 +00:00
assert instance . query ( " SELECT a FROM mydb.filtered_table1 WHERE a IN (1) " ) == " 1 \n 1 \n "
2019-11-21 19:44:44 +00:00
assert instance . query ( " SELECT a = 1 FROM mydb.filtered_table1 " ) == " 1 \n 1 \n "
assert instance . query ( " SELECT a FROM mydb.filtered_table3 " ) == " 0 \n 1 \n "
assert instance . query ( " SELECT b FROM mydb.filtered_table3 " ) == " 1 \n 0 \n "
assert instance . query ( " SELECT c FROM mydb.filtered_table3 " ) == " 1 \n 1 \n "
assert instance . query ( " SELECT a + b FROM mydb.filtered_table3 " ) == " 1 \n 1 \n "
assert instance . query ( " SELECT a FROM mydb.filtered_table3 WHERE c = 1 " ) == " 0 \n 1 \n "
assert instance . query ( " SELECT c = 1 FROM mydb.filtered_table3 " ) == " 1 \n 1 \n "
assert instance . query ( " SELECT a + b = 1 FROM mydb.filtered_table3 " ) == " 1 \n 1 \n "
def test_join ( ) :
assert instance . query ( " SELECT * FROM mydb.filtered_table1 as t1 ANY LEFT JOIN mydb.filtered_table1 as t2 ON t1.a = t2.b " ) == " 1 \t 0 \t 1 \t 1 \n 1 \t 1 \t 1 \t 1 \n "
assert instance . query ( " SELECT * FROM mydb.filtered_table1 as t2 ANY RIGHT JOIN mydb.filtered_table1 as t1 ON t2.b = t1.a " ) == " 1 \t 1 \t 1 \t 0 \n "
def test_cannot_trick_row_policy_with_keyword_with ( ) :
assert instance . query ( " WITH 0 AS a SELECT * FROM mydb.filtered_table1 " ) == " 1 \t 0 \n 1 \t 1 \n "
2020-04-20 14:44:21 +00:00
assert instance . query ( " WITH 0 AS a SELECT a, b FROM mydb.filtered_table1 " ) == " 0 \t 0 \n 0 \t 1 \n "
assert instance . query ( " WITH 0 AS a SELECT a FROM mydb.filtered_table1 " ) == " 0 \n 0 \n "
2019-11-21 19:44:44 +00:00
assert instance . query ( " WITH 0 AS a SELECT b FROM mydb.filtered_table1 " ) == " 0 \n 1 \n "
def test_prewhere_not_supported ( ) :
expected_error = " PREWHERE is not supported if the table is filtered by row-level security "
assert expected_error in instance . query_and_get_error ( " SELECT * FROM mydb.filtered_table1 PREWHERE 1 " )
assert expected_error in instance . query_and_get_error ( " SELECT * FROM mydb.filtered_table2 PREWHERE 1 " )
assert expected_error in instance . query_and_get_error ( " SELECT * FROM mydb.filtered_table3 PREWHERE 1 " )
2020-04-08 21:10:00 +00:00
# However PREWHERE should still work for user without filtering.
assert instance . query ( " SELECT * FROM mydb.filtered_table1 PREWHERE 1 " , user = " another " ) == " 0 \t 0 \n 0 \t 1 \n 1 \t 0 \n 1 \t 1 \n "
2019-11-21 19:44:44 +00:00
2020-01-10 16:53:47 +00:00
def test_single_table_name ( ) :
copy_policy_xml ( ' tag_with_table_name.xml ' )
assert instance . query ( " SELECT * FROM mydb.table " ) == " 1 \t 0 \n 1 \t 1 \n "
assert instance . query ( " SELECT * FROM mydb.filtered_table2 " ) == " 0 \t 0 \t 0 \t 0 \n 0 \t 0 \t 6 \t 0 \n "
assert instance . query ( " SELECT * FROM mydb.filtered_table3 " ) == " 0 \t 1 \n 1 \t 0 \n "
assert instance . query ( " SELECT a FROM mydb.table " ) == " 1 \n 1 \n "
assert instance . query ( " SELECT b FROM mydb.table " ) == " 0 \n 1 \n "
assert instance . query ( " SELECT a FROM mydb.table WHERE a = 1 " ) == " 1 \n 1 \n "
assert instance . query ( " SELECT a = 1 FROM mydb.table " ) == " 1 \n 1 \n "
assert instance . query ( " SELECT a FROM mydb.filtered_table3 " ) == " 0 \n 1 \n "
assert instance . query ( " SELECT b FROM mydb.filtered_table3 " ) == " 1 \n 0 \n "
assert instance . query ( " SELECT c FROM mydb.filtered_table3 " ) == " 1 \n 1 \n "
assert instance . query ( " SELECT a + b FROM mydb.filtered_table3 " ) == " 1 \n 1 \n "
assert instance . query ( " SELECT a FROM mydb.filtered_table3 WHERE c = 1 " ) == " 0 \n 1 \n "
assert instance . query ( " SELECT c = 1 FROM mydb.filtered_table3 " ) == " 1 \n 1 \n "
assert instance . query ( " SELECT a + b = 1 FROM mydb.filtered_table3 " ) == " 1 \n 1 \n "
def test_custom_table_name ( ) :
copy_policy_xml ( ' multiple_tags_with_table_names.xml ' )
assert instance . query ( " SELECT * FROM mydb.table " ) == " 1 \t 0 \n 1 \t 1 \n "
assert instance . query ( " SELECT * FROM mydb.filtered_table2 " ) == " 0 \t 0 \t 0 \t 0 \n 0 \t 0 \t 6 \t 0 \n "
assert instance . query ( " SELECT * FROM mydb.`.filtered_table4` " ) == " 0 \t 1 \n 1 \t 0 \n "
assert instance . query ( " SELECT a FROM mydb.table " ) == " 1 \n 1 \n "
assert instance . query ( " SELECT b FROM mydb.table " ) == " 0 \n 1 \n "
assert instance . query ( " SELECT a FROM mydb.table WHERE a = 1 " ) == " 1 \n 1 \n "
assert instance . query ( " SELECT a = 1 FROM mydb.table " ) == " 1 \n 1 \n "
assert instance . query ( " SELECT a FROM mydb.`.filtered_table4` " ) == " 0 \n 1 \n "
assert instance . query ( " SELECT b FROM mydb.`.filtered_table4` " ) == " 1 \n 0 \n "
assert instance . query ( " SELECT c FROM mydb.`.filtered_table4` " ) == " 1 \n 1 \n "
assert instance . query ( " SELECT a + b FROM mydb.`.filtered_table4` " ) == " 1 \n 1 \n "
assert instance . query ( " SELECT a FROM mydb.`.filtered_table4` WHERE c = 1 " ) == " 0 \n 1 \n "
assert instance . query ( " SELECT c = 1 FROM mydb.`.filtered_table4` " ) == " 1 \n 1 \n "
assert instance . query ( " SELECT a + b = 1 FROM mydb.`.filtered_table4` " ) == " 1 \n 1 \n "
2019-11-21 19:44:44 +00:00
def test_change_of_users_xml_changes_row_policies ( ) :
copy_policy_xml ( ' normal_filters.xml ' )
assert instance . query ( " SELECT * FROM mydb.filtered_table1 " ) == " 1 \t 0 \n 1 \t 1 \n "
assert instance . query ( " SELECT * FROM mydb.filtered_table2 " ) == " 0 \t 0 \t 0 \t 0 \n 0 \t 0 \t 6 \t 0 \n "
assert instance . query ( " SELECT * FROM mydb.filtered_table3 " ) == " 0 \t 1 \n 1 \t 0 \n "
copy_policy_xml ( ' all_rows.xml ' )
assert instance . query ( " SELECT * FROM mydb.filtered_table1 " ) == " 0 \t 0 \n 0 \t 1 \n 1 \t 0 \n 1 \t 1 \n "
assert instance . query ( " SELECT * FROM mydb.filtered_table2 " ) == " 0 \t 0 \t 0 \t 0 \n 0 \t 0 \t 6 \t 0 \n 1 \t 2 \t 3 \t 4 \n 4 \t 3 \t 2 \t 1 \n "
assert instance . query ( " SELECT * FROM mydb.filtered_table3 " ) == " 0 \t 0 \n 0 \t 1 \n 1 \t 0 \n 1 \t 1 \n "
copy_policy_xml ( ' no_rows.xml ' )
assert instance . query ( " SELECT * FROM mydb.filtered_table1 " ) == " "
assert instance . query ( " SELECT * FROM mydb.filtered_table2 " ) == " "
assert instance . query ( " SELECT * FROM mydb.filtered_table3 " ) == " "
copy_policy_xml ( ' normal_filters.xml ' )
assert instance . query ( " SELECT * FROM mydb.filtered_table1 " ) == " 1 \t 0 \n 1 \t 1 \n "
assert instance . query ( " SELECT * FROM mydb.filtered_table2 " ) == " 0 \t 0 \t 0 \t 0 \n 0 \t 0 \t 6 \t 0 \n "
assert instance . query ( " SELECT * FROM mydb.filtered_table3 " ) == " 0 \t 1 \n 1 \t 0 \n "
copy_policy_xml ( ' no_filters.xml ' )
assert instance . query ( " SELECT * FROM mydb.filtered_table1 " ) == " 0 \t 0 \n 0 \t 1 \n 1 \t 0 \n 1 \t 1 \n "
assert instance . query ( " SELECT * FROM mydb.filtered_table2 " ) == " 0 \t 0 \t 0 \t 0 \n 0 \t 0 \t 6 \t 0 \n 1 \t 2 \t 3 \t 4 \n 4 \t 3 \t 2 \t 1 \n "
assert instance . query ( " SELECT * FROM mydb.filtered_table3 " ) == " 0 \t 0 \n 0 \t 1 \n 1 \t 0 \n 1 \t 1 \n "
copy_policy_xml ( ' normal_filters.xml ' )
assert instance . query ( " SELECT * FROM mydb.filtered_table1 " ) == " 1 \t 0 \n 1 \t 1 \n "
assert instance . query ( " SELECT * FROM mydb.filtered_table2 " ) == " 0 \t 0 \t 0 \t 0 \n 0 \t 0 \t 6 \t 0 \n "
assert instance . query ( " SELECT * FROM mydb.filtered_table3 " ) == " 0 \t 1 \n 1 \t 0 \n "
def test_reload_users_xml_by_timer ( ) :
copy_policy_xml ( ' normal_filters.xml ' )
assert instance . query ( " SELECT * FROM mydb.filtered_table1 " ) == " 1 \t 0 \n 1 \t 1 \n "
assert instance . query ( " SELECT * FROM mydb.filtered_table2 " ) == " 0 \t 0 \t 0 \t 0 \n 0 \t 0 \t 6 \t 0 \n "
assert instance . query ( " SELECT * FROM mydb.filtered_table3 " ) == " 0 \t 1 \n 1 \t 0 \n "
time . sleep ( 1 ) # The modification time of the 'row_policy.xml' file should be different.
copy_policy_xml ( ' all_rows.xml ' , False )
assert_eq_with_retry ( instance , " SELECT * FROM mydb.filtered_table1 " , " 0 \t 0 \n 0 \t 1 \n 1 \t 0 \n 1 \t 1 " )
assert_eq_with_retry ( instance , " SELECT * FROM mydb.filtered_table2 " , " 0 \t 0 \t 0 \t 0 \n 0 \t 0 \t 6 \t 0 \n 1 \t 2 \t 3 \t 4 \n 4 \t 3 \t 2 \t 1 " )
assert_eq_with_retry ( instance , " SELECT * FROM mydb.filtered_table3 " , " 0 \t 0 \n 0 \t 1 \n 1 \t 0 \n 1 \t 1 " )
time . sleep ( 1 ) # The modification time of the 'row_policy.xml' file should be different.
copy_policy_xml ( ' normal_filters.xml ' , False )
assert_eq_with_retry ( instance , " SELECT * FROM mydb.filtered_table1 " , " 1 \t 0 \n 1 \t 1 " )
assert_eq_with_retry ( instance , " SELECT * FROM mydb.filtered_table2 " , " 0 \t 0 \t 0 \t 0 \n 0 \t 0 \t 6 \t 0 " )
assert_eq_with_retry ( instance , " SELECT * FROM mydb.filtered_table3 " , " 0 \t 1 \n 1 \t 0 " )
2019-12-03 18:19:11 +00:00
def test_introspection ( ) :
assert instance . query ( " SELECT currentRowPolicies( ' mydb ' , ' filtered_table1 ' ) " ) == " [ ' default ' ] \n "
assert instance . query ( " SELECT currentRowPolicies( ' mydb ' , ' filtered_table2 ' ) " ) == " [ ' default ' ] \n "
assert instance . query ( " SELECT currentRowPolicies( ' mydb ' , ' filtered_table3 ' ) " ) == " [ ' default ' ] \n "
2020-02-18 02:36:29 +00:00
assert instance . query ( " SELECT arraySort(currentRowPolicies()) " ) == " [( ' mydb ' , ' filtered_table1 ' , ' default ' ),( ' mydb ' , ' filtered_table2 ' , ' default ' ),( ' mydb ' , ' filtered_table3 ' , ' default ' ),( ' mydb ' , ' local ' , ' default ' )] \n "
2019-12-03 18:19:11 +00:00
policy1 = " mydb \t filtered_table1 \t default \t default ON mydb.filtered_table1 \t 9e8a8f62-4965-2b5e-8599-57c7b99b3549 \t users.xml \t 0 \t a = 1 \t \t \t \t \n "
policy2 = " mydb \t filtered_table2 \t default \t default ON mydb.filtered_table2 \t cffae79d-b9bf-a2ef-b798-019c18470b25 \t users.xml \t 0 \t a + b < 1 or c - d > 5 \t \t \t \t \n "
policy3 = " mydb \t filtered_table3 \t default \t default ON mydb.filtered_table3 \t 12fc5cef-e3da-3940-ec79-d8be3911f42b \t users.xml \t 0 \t c = 1 \t \t \t \t \n "
2020-02-18 02:36:29 +00:00
policy4 = " mydb \t local \t default \t default ON mydb.local \t cdacaeb5-1d97-f99d-2bb0-4574f290629c \t users.xml \t 0 \t 1 \t \t \t \t \n "
2019-12-03 18:19:11 +00:00
assert instance . query ( " SELECT * from system.row_policies WHERE has(currentRowPolicyIDs( ' mydb ' , ' filtered_table1 ' ), id) ORDER BY table, name " ) == policy1
assert instance . query ( " SELECT * from system.row_policies WHERE has(currentRowPolicyIDs( ' mydb ' , ' filtered_table2 ' ), id) ORDER BY table, name " ) == policy2
assert instance . query ( " SELECT * from system.row_policies WHERE has(currentRowPolicyIDs( ' mydb ' , ' filtered_table3 ' ), id) ORDER BY table, name " ) == policy3
2020-02-18 02:36:29 +00:00
assert instance . query ( " SELECT * from system.row_policies WHERE has(currentRowPolicyIDs( ' mydb ' , ' local ' ), id) ORDER BY table, name " ) == policy4
assert instance . query ( " SELECT * from system.row_policies WHERE has(currentRowPolicyIDs(), id) ORDER BY table, name " ) == policy1 + policy2 + policy3 + policy4
2019-11-29 17:22:56 +00:00
def test_dcl_introspection ( ) :
2020-02-18 02:36:29 +00:00
assert instance . query ( " SHOW POLICIES ON mydb.filtered_table1 " ) == " another \n default \n "
2019-11-29 17:22:56 +00:00
assert instance . query ( " SHOW POLICIES CURRENT ON mydb.filtered_table2 " ) == " default \n "
2020-02-18 02:36:29 +00:00
assert instance . query ( " SHOW POLICIES " ) == " another ON mydb.filtered_table1 \n another ON mydb.filtered_table2 \n another ON mydb.filtered_table3 \n another ON mydb.local \n default ON mydb.filtered_table1 \n default ON mydb.filtered_table2 \n default ON mydb.filtered_table3 \n default ON mydb.local \n "
assert instance . query ( " SHOW POLICIES CURRENT " ) == " default ON mydb.filtered_table1 \n default ON mydb.filtered_table2 \n default ON mydb.filtered_table3 \n default ON mydb.local \n "
2019-11-29 17:22:56 +00:00
2020-04-02 18:31:59 +00:00
assert instance . query ( " SHOW CREATE POLICY default ON mydb.filtered_table1 " ) == " CREATE ROW POLICY default ON mydb.filtered_table1 FOR SELECT USING a = 1 TO default \n "
assert instance . query ( " SHOW CREATE POLICY default ON mydb.filtered_table2 " ) == " CREATE ROW POLICY default ON mydb.filtered_table2 FOR SELECT USING ((a + b) < 1) OR ((c - d) > 5) TO default \n "
assert instance . query ( " SHOW CREATE POLICY default ON mydb.filtered_table3 " ) == " CREATE ROW POLICY default ON mydb.filtered_table3 FOR SELECT USING c = 1 TO default \n "
assert instance . query ( " SHOW CREATE POLICY default ON mydb.local " ) == " CREATE ROW POLICY default ON mydb.local FOR SELECT USING 1 TO default \n "
2019-11-29 17:22:56 +00:00
copy_policy_xml ( ' all_rows.xml ' )
2020-02-18 02:36:29 +00:00
assert instance . query ( " SHOW POLICIES CURRENT " ) == " default ON mydb.filtered_table1 \n default ON mydb.filtered_table2 \n default ON mydb.filtered_table3 \n "
2020-04-02 18:31:59 +00:00
assert instance . query ( " SHOW CREATE POLICY default ON mydb.filtered_table1 " ) == " CREATE ROW POLICY default ON mydb.filtered_table1 FOR SELECT USING 1 TO default \n "
assert instance . query ( " SHOW CREATE POLICY default ON mydb.filtered_table2 " ) == " CREATE ROW POLICY default ON mydb.filtered_table2 FOR SELECT USING 1 TO default \n "
assert instance . query ( " SHOW CREATE POLICY default ON mydb.filtered_table3 " ) == " CREATE ROW POLICY default ON mydb.filtered_table3 FOR SELECT USING 1 TO default \n "
2019-11-29 17:22:56 +00:00
copy_policy_xml ( ' no_rows.xml ' )
2020-02-18 02:36:29 +00:00
assert instance . query ( " SHOW POLICIES CURRENT " ) == " default ON mydb.filtered_table1 \n default ON mydb.filtered_table2 \n default ON mydb.filtered_table3 \n "
2020-04-02 18:31:59 +00:00
assert instance . query ( " SHOW CREATE POLICY default ON mydb.filtered_table1 " ) == " CREATE ROW POLICY default ON mydb.filtered_table1 FOR SELECT USING NULL TO default \n "
assert instance . query ( " SHOW CREATE POLICY default ON mydb.filtered_table2 " ) == " CREATE ROW POLICY default ON mydb.filtered_table2 FOR SELECT USING NULL TO default \n "
assert instance . query ( " SHOW CREATE POLICY default ON mydb.filtered_table3 " ) == " CREATE ROW POLICY default ON mydb.filtered_table3 FOR SELECT USING NULL TO default \n "
2019-11-29 17:22:56 +00:00
copy_policy_xml ( ' no_filters.xml ' )
assert instance . query ( " SHOW POLICIES " ) == " "
def test_dcl_management ( ) :
copy_policy_xml ( ' no_filters.xml ' )
assert instance . query ( " SHOW POLICIES " ) == " "
instance . query ( " CREATE POLICY pA ON mydb.filtered_table1 FOR SELECT USING a<b " )
2020-02-18 02:36:29 +00:00
assert instance . query ( " SELECT * FROM mydb.filtered_table1 " ) == " "
2019-11-29 17:22:56 +00:00
assert instance . query ( " SHOW POLICIES CURRENT ON mydb.filtered_table1 " ) == " "
assert instance . query ( " SHOW POLICIES ON mydb.filtered_table1 " ) == " pA \n "
instance . query ( " ALTER POLICY pA ON mydb.filtered_table1 TO default " )
assert instance . query ( " SELECT * FROM mydb.filtered_table1 " ) == " 0 \t 1 \n "
assert instance . query ( " SHOW POLICIES CURRENT ON mydb.filtered_table1 " ) == " pA \n "
instance . query ( " ALTER POLICY pA ON mydb.filtered_table1 FOR SELECT USING a>b " )
assert instance . query ( " SELECT * FROM mydb.filtered_table1 " ) == " 1 \t 0 \n "
instance . query ( " ALTER POLICY pA ON mydb.filtered_table1 RENAME TO pB " )
assert instance . query ( " SELECT * FROM mydb.filtered_table1 " ) == " 1 \t 0 \n "
assert instance . query ( " SHOW POLICIES CURRENT ON mydb.filtered_table1 " ) == " pB \n "
2020-04-02 18:31:59 +00:00
assert instance . query ( " SHOW CREATE POLICY pB ON mydb.filtered_table1 " ) == " CREATE ROW POLICY pB ON mydb.filtered_table1 FOR SELECT USING a > b TO default \n "
2019-11-29 17:22:56 +00:00
instance . query ( " DROP POLICY pB ON mydb.filtered_table1 " )
assert instance . query ( " SELECT * FROM mydb.filtered_table1 " ) == " 0 \t 0 \n 0 \t 1 \n 1 \t 0 \n 1 \t 1 \n "
assert instance . query ( " SHOW POLICIES " ) == " "
def test_users_xml_is_readonly ( ) :
assert re . search ( " storage is readonly " , instance . query_and_get_error ( " DROP POLICY default ON mydb.filtered_table1 " ) )
2020-02-07 19:31:09 +00:00
def test_miscellaneous_engines ( ) :
copy_policy_xml ( ' normal_filters.xml ' )
# ReplicatedMergeTree
instance . query ( " DROP TABLE mydb.filtered_table1 " )
instance . query ( " CREATE TABLE mydb.filtered_table1 (a UInt8, b UInt8) ENGINE ReplicatedMergeTree( ' /clickhouse/tables/00-00/filtered_table1 ' , ' replica1 ' ) ORDER BY a " )
instance . query ( " INSERT INTO mydb.filtered_table1 values (0, 0), (0, 1), (1, 0), (1, 1) " )
assert instance . query ( " SELECT * FROM mydb.filtered_table1 " ) == " 1 \t 0 \n 1 \t 1 \n "
# CollapsingMergeTree
instance . query ( " DROP TABLE mydb.filtered_table1 " )
instance . query ( " CREATE TABLE mydb.filtered_table1 (a UInt8, b Int8) ENGINE CollapsingMergeTree(b) ORDER BY a " )
instance . query ( " INSERT INTO mydb.filtered_table1 values (0, 1), (0, 1), (1, 1), (1, 1) " )
assert instance . query ( " SELECT * FROM mydb.filtered_table1 " ) == " 1 \t 1 \n 1 \t 1 \n "
# ReplicatedCollapsingMergeTree
instance . query ( " DROP TABLE mydb.filtered_table1 " )
instance . query ( " CREATE TABLE mydb.filtered_table1 (a UInt8, b Int8) ENGINE ReplicatedCollapsingMergeTree( ' /clickhouse/tables/00-00/filtered_table1 ' , ' replica1 ' , b) ORDER BY a " )
instance . query ( " INSERT INTO mydb.filtered_table1 values (0, 1), (0, 1), (1, 1), (1, 1) " )
assert instance . query ( " SELECT * FROM mydb.filtered_table1 " ) == " 1 \t 1 \n 1 \t 1 \n "
# DistributedMergeTree
instance . query ( " DROP TABLE IF EXISTS mydb.not_filtered_table " )
instance . query ( " CREATE TABLE mydb.not_filtered_table (a UInt8, b UInt8) ENGINE Distributed( ' test_local_cluster ' , mydb, local) " )
instance . query ( " CREATE TABLE mydb.local (a UInt8, b UInt8) ENGINE MergeTree ORDER BY a " )
instance2 . query ( " CREATE TABLE mydb.local (a UInt8, b UInt8) ENGINE MergeTree ORDER BY a " )
instance . query ( " INSERT INTO mydb.local values (2, 0), (2, 1), (1, 0), (1, 1) " )
instance2 . query ( " INSERT INTO mydb.local values (3, 0), (3, 1), (1, 0), (1, 1) " )
assert instance . query ( " SELECT * FROM mydb.not_filtered_table " , user = " another " ) == " 1 \t 0 \n 1 \t 1 \n 1 \t 0 \n 1 \t 1 \n "
assert instance . query ( " SELECT sum(a), b FROM mydb.not_filtered_table GROUP BY b ORDER BY b " , user = " another " ) == " 2 \t 0 \n 2 \t 1 \n "