2020-07-21 17:51:02 +00:00
#!/usr/bin/env python3
import sys
2020-10-15 20:23:49 +00:00
2020-07-21 17:51:02 +00:00
from testflows . core import *
2020-07-28 20:14:52 +00:00
append_path ( sys . path , " .. " )
2020-07-21 17:51:02 +00:00
from helpers . cluster import Cluster
from helpers . argparser import argparser
2020-10-21 22:04:09 +00:00
from rbac . requirements import SRS_006_ClickHouse_Role_Based_Access_Control
2020-07-21 17:51:02 +00:00
2020-10-15 20:23:49 +00:00
issue_14091 = " https://github.com/ClickHouse/ClickHouse/issues/14091 "
issue_14149 = " https://github.com/ClickHouse/ClickHouse/issues/14149 "
issue_14224 = " https://github.com/ClickHouse/ClickHouse/issues/14224 "
issue_14418 = " https://github.com/ClickHouse/ClickHouse/issues/14418 "
issue_14451 = " https://github.com/ClickHouse/ClickHouse/issues/14451 "
issue_14566 = " https://github.com/ClickHouse/ClickHouse/issues/14566 "
issue_14674 = " https://github.com/ClickHouse/ClickHouse/issues/14674 "
issue_14810 = " https://github.com/ClickHouse/ClickHouse/issues/14810 "
issue_15165 = " https://github.com/ClickHouse/ClickHouse/issues/15165 "
issue_15980 = " https://github.com/ClickHouse/ClickHouse/issues/15980 "
2020-11-07 00:48:29 +00:00
issue_16403 = " https://github.com/ClickHouse/ClickHouse/issues/16403 "
2020-12-01 04:58:45 +00:00
issue_17146 = " https://github.com/ClickHouse/ClickHouse/issues/17146 "
issue_17147 = " https://github.com/ClickHouse/ClickHouse/issues/17147 "
issue_17653 = " https://github.com/ClickHouse/ClickHouse/issues/17653 "
issue_17655 = " https://github.com/ClickHouse/ClickHouse/issues/17655 "
2020-12-04 17:36:32 +00:00
issue_17766 = " https://github.com/ClickHouse/ClickHouse/issues/17766 "
2021-01-13 14:55:48 +00:00
issue_18110 = " https://github.com/ClickHouse/ClickHouse/issues/18110 "
issue_18206 = " https://github.com/ClickHouse/ClickHouse/issues/18206 "
2021-03-01 16:29:42 +00:00
issue_21083 = " https://github.com/ClickHouse/ClickHouse/issues/21083 "
issue_21084 = " https://github.com/ClickHouse/ClickHouse/issues/21084 "
2020-07-30 19:44:41 +00:00
2020-07-21 17:51:02 +00:00
xfails = {
2020-07-30 19:44:41 +00:00
" syntax/show create quota/I show create quota current " :
[ ( Fail , " https://github.com/ClickHouse/ClickHouse/issues/12495 " ) ] ,
2020-10-15 20:23:49 +00:00
" views/:/create with subquery privilege granted directly or via role/: " :
[ ( Fail , issue_14091 ) ] ,
" views/:/create with join query privilege granted directly or via role/: " :
[ ( Fail , issue_14091 ) ] ,
" views/:/create with union query privilege granted directly or via role/: " :
[ ( Fail , issue_14091 ) ] ,
" views/:/create with join union subquery privilege granted directly or via role/: " :
[ ( Fail , issue_14091 ) ] ,
" views/:/create with nested views privilege granted directly or via role/: " :
[ ( Fail , issue_14091 ) ] ,
" views/view/select with join query privilege granted directly or via role/: " :
[ ( Fail , issue_14149 ) ] ,
" views/view/select with join union subquery privilege granted directly or via role/: " :
[ ( Fail , issue_14149 ) ] ,
" views/view/select with nested views privilege granted directly or via role/: " :
[ ( Fail , issue_14149 ) ] ,
" views/live view/refresh with privilege granted directly or via role/: " :
[ ( Fail , issue_14224 ) ] ,
" views/live view/refresh with privilege revoked directly or from role/: " :
[ ( Fail , issue_14224 ) ] ,
" views/live view/select: " :
[ ( Fail , issue_14418 ) ] ,
" views/live view/select:/: " :
[ ( Fail , issue_14418 ) ] ,
" views/materialized view/select with: " :
[ ( Fail , issue_14451 ) ] ,
" views/materialized view/select with:/: " :
[ ( Fail , issue_14451 ) ] ,
" views/materialized view/modify query: " :
[ ( Fail , issue_14674 ) ] ,
" views/materialized view/modify query:/: " :
[ ( Fail , issue_14674 ) ] ,
" views/materialized view/insert on source table privilege granted directly or via role/: " :
[ ( Fail , issue_14810 ) ] ,
" privileges/alter ttl/table_type=:/user with some privileges " :
[ ( Fail , issue_14566 ) ] ,
" privileges/alter ttl/table_type=:/role with some privileges " :
[ ( Fail , issue_14566 ) ] ,
" privileges/alter ttl/table_type=:/user with privileges on cluster " :
[ ( Fail , issue_14566 ) ] ,
" privileges/alter ttl/table_type=:/user with privileges from user with grant option " :
[ ( Fail , issue_14566 ) ] ,
" privileges/alter ttl/table_type=:/user with privileges from role with grant option " :
[ ( Fail , issue_14566 ) ] ,
" privileges/alter ttl/table_type=:/role with privileges from user with grant option " :
[ ( Fail , issue_14566 ) ] ,
" privileges/alter ttl/table_type=:/role with privileges from role with grant option " :
[ ( Fail , issue_14566 ) ] ,
" privileges/distributed table/:/special cases/insert with table on source table of materialized view: " :
[ ( Fail , issue_14810 ) ] ,
" privileges/distributed table/cluster tests/cluster= ' sharded* " :
[ ( Fail , issue_15165 ) ] ,
" privileges/distributed table/cluster tests/cluster=:/special cases/insert with table on source table of materialized view privilege granted directly or via role/: " :
[ ( Fail , issue_14810 ) ] ,
2020-10-19 19:49:03 +00:00
" views/materialized view/select from implicit target table privilege granted directly or via role/select from implicit target table, privilege granted directly " :
2020-10-15 20:23:49 +00:00
[ ( Fail , " .inner table is not created as expected " ) ] ,
2020-10-19 19:49:03 +00:00
" views/materialized view/insert on target table privilege granted directly or via role/insert on target table, privilege granted through a role " :
2020-10-15 20:23:49 +00:00
[ ( Fail , " .inner table is not created as expected " ) ] ,
2020-10-19 19:49:03 +00:00
" views/materialized view/select from implicit target table privilege granted directly or via role/select from implicit target table, privilege granted through a role " :
2020-10-15 20:23:49 +00:00
[ ( Fail , " .inner table is not created as expected " ) ] ,
2020-10-19 19:49:03 +00:00
" views/materialized view/insert on target table privilege granted directly or via role/insert on target table, privilege granted directly " :
2020-10-15 20:23:49 +00:00
[ ( Fail , " .inner table is not created as expected " ) ] ,
2020-10-19 19:49:03 +00:00
" views/materialized view/select from source table privilege granted directly or via role/select from implicit target table, privilege granted directly " :
2020-10-15 20:23:49 +00:00
[ ( Fail , " .inner table is not created as expected " ) ] ,
2020-10-19 19:49:03 +00:00
" views/materialized view/select from source table privilege granted directly or via role/select from implicit target table, privilege granted through a role " :
2020-10-15 20:23:49 +00:00
[ ( Fail , " .inner table is not created as expected " ) ] ,
2020-11-07 00:48:29 +00:00
" privileges/alter move/:/:/:/:/move partition to implicit target table of a materialized view " :
[ ( Fail , " .inner table is not created as expected " ) ] ,
" privileges/alter move/:/:/:/:/user without ALTER MOVE PARTITION privilege/ " :
[ ( Fail , issue_16403 ) ] ,
" privileges/alter move/:/:/:/:/user with revoked ALTER MOVE PARTITION privilege/ " :
[ ( Fail , issue_16403 ) ] ,
2020-11-13 18:44:32 +00:00
" privileges/create table/create with join query privilege granted directly or via role/: " :
2020-12-01 04:58:45 +00:00
[ ( Fail , issue_17653 ) ] ,
2020-11-13 18:44:32 +00:00
" privileges/create table/create with join union subquery privilege granted directly or via role/: " :
2020-12-01 04:58:45 +00:00
[ ( Fail , issue_17653 ) ] ,
2020-11-13 18:44:32 +00:00
" privileges/create table/create with nested tables privilege granted directly or via role/: " :
2020-12-01 04:58:45 +00:00
[ ( Fail , issue_17653 ) ] ,
" privileges/kill mutation/no privilege/kill mutation on cluster " :
[ ( Fail , issue_17146 ) ] ,
" privileges/kill query/privilege granted directly or via role/:/ " :
[ ( Fail , issue_17147 ) ] ,
" privileges/show dictionaries/:/check privilege/:/exists/EXISTS with privilege " :
[ ( Fail , issue_17655 ) ] ,
2021-01-13 14:55:48 +00:00
" privileges/public tables/sensitive tables " :
[ ( Fail , issue_18110 ) ] ,
" privileges/system merges/:/:/:/:/SYSTEM: " :
[ ( Fail , issue_18206 ) ] ,
" privileges/system ttl merges/:/:/:/:/SYSTEM: " :
[ ( Fail , issue_18206 ) ] ,
" privileges/system moves/:/:/:/:/SYSTEM: " :
[ ( Fail , issue_18206 ) ] ,
" privileges/system sends/:/:/:/:/SYSTEM: " :
[ ( Fail , issue_18206 ) ] ,
" privileges/system fetches/:/:/:/:/SYSTEM: " :
[ ( Fail , issue_18206 ) ] ,
" privileges/system restart replica/:/:/:/:/SYSTEM: " :
[ ( Fail , issue_18206 ) ] ,
" privileges/system replication queues/:/:/:/:/SYSTEM: " :
[ ( Fail , issue_18206 ) ] ,
2021-03-01 16:29:42 +00:00
" privileges/: row policy/nested live: " :
[ ( Fail , issue_21083 ) ] ,
" privileges/: row policy/nested mat: " :
[ ( Fail , issue_21084 ) ] ,
2020-10-15 20:23:49 +00:00
}
xflags = {
" privileges/alter index/table_type= ' ReplicatedVersionedCollapsingMergeTree-sharded_cluster ' /role with privileges from role with grant option/granted=:/I try to ALTER INDEX with given privileges/I check order by when privilege is granted " :
( SKIP , 0 )
2020-07-21 17:51:02 +00:00
}
@TestModule
@ArgumentParser ( argparser )
@XFails ( xfails )
2020-10-15 20:23:49 +00:00
@XFlags ( xflags )
2020-07-21 17:51:02 +00:00
@Name ( " rbac " )
2020-10-21 22:04:09 +00:00
@Specifications (
SRS_006_ClickHouse_Role_Based_Access_Control
)
2020-10-15 20:23:49 +00:00
def regression ( self , local , clickhouse_binary_path , stress = None , parallel = None ) :
2020-07-21 17:51:02 +00:00
""" RBAC regression.
"""
nodes = {
" clickhouse " :
( " clickhouse1 " , " clickhouse2 " , " clickhouse3 " )
}
with Cluster ( local , clickhouse_binary_path , nodes = nodes ) as cluster :
self . context . cluster = cluster
2020-10-15 20:23:49 +00:00
self . context . stress = stress
if parallel is not None :
self . context . parallel = parallel
2020-07-21 17:51:02 +00:00
2021-03-01 16:29:42 +00:00
Feature ( run = load ( " rbac.tests.syntax.feature " , " feature " ) )
Feature ( run = load ( " rbac.tests.privileges.feature " , " feature " ) )
Feature ( run = load ( " rbac.tests.views.feature " , " feature " ) )
2020-07-21 17:51:02 +00:00
if main ( ) :
regression ( )