1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224
|
#======================================================================
#
# Trigger Tests
# test cases for TRIGGER privilege on db, table and column level
#======================================================================
--disable_abort_on_error
###########################################
################ Section 3.5.3 ############
# Check for the db level of Triggers #
###########################################
# General setup to be used in all testcases
let $message= ######### Testcase for table level: ########;
--source include/show_msg.inc
--disable_warnings
drop database if exists priv_db;
--enable_warnings
create database priv_db;
use priv_db;
eval create table t1 (f1 char(20)) engine= $engine_type;
create User test_yesprivs@localhost;
set password for test_yesprivs@localhost = password('PWD');
revoke ALL PRIVILEGES, GRANT OPTION FROM test_yesprivs@localhost;
create User test_noprivs@localhost;
set password for test_noprivs@localhost = password('PWD');
revoke ALL PRIVILEGES, GRANT OPTION FROM test_noprivs@localhost;
connect (yes_privs,localhost,test_yesprivs,PWD,"*NO-ONE*",$MASTER_MYPORT,$MASTER_MYSOCK);
# next is to check that we connected above
connection yes_privs;
connect (no_privs,localhost,test_noprivs,PWD,"*NO-ONE*",$MASTER_MYPORT,$MASTER_MYSOCK);
# next is to check that we connected above
connection no_privs;
################ Section 3.5.3 ############
# Check for the table level of Triggers #
###########################################
# user has no trigger privilege->create trigger fail
let $message= no trigger privilege on table level for create:;
--source include/show_msg.inc
connection default;
select current_user;
--replace_column 6 #
show triggers;
grant select, insert, update on priv_db.t1 to test_yesprivs@localhost;
show grants for test_yesprivs@localhost;
grant select, update, insert on priv_db.t1 to test_noprivs@localhost;
show grants for test_noprivs@localhost;
connection yes_privs;
select current_user;
use priv_db;
show tables;
--error ER_TABLEACCESS_DENIED_ERROR
create trigger trg1_1 before INSERT on t1 for each row
set new.f1 = 'trig 1_1-no';
# no trigger execution, as trigger does'nt exist
connection no_privs;
select current_user;
use priv_db;
insert into t1 (f1) values ('insert1-yes');
select f1 from t1 order by f1;
connection default;
select current_user;
--replace_column 6 #
show triggers;
show tables;
insert into t1 (f1) values ('insert2-yes');
select f1 from t1 order by f1;
grant TRIGGER on priv_db.t1 to test_yesprivs@localhost;
show grants for test_yesprivs@localhost;
# user got trigger privilege->create trigger successful
let $message= trigger privilege on table level for create:;
--source include/show_msg.inc
connection yes_privs;
select current_user;
--replace_column 6 #
show triggers;
create trigger trg1_2 before INSERT on t1 for each row
set new.f1 = 'trig 1_2-yes';
# insert now executes the trigger
connection no_privs;
select current_user;
insert into t1 (f1) values ('insert3-no');
select f1 from t1 order by f1;
connection default;
select current_user;
insert into t1 (f1) values ('insert4-no');
select f1 from t1 order by f1;
revoke TRIGGER on priv_db.t1 from test_yesprivs@localhost;
show grants for test_yesprivs@localhost;
# revoke triggerprivilege->drop trigger fail
let $message= no trigger privilege on table level for drop:;
--source include/show_msg.inc
connection yes_privs;
select current_user;
--error ER_TABLEACCESS_DENIED_ERROR
drop trigger trg1_2;
# no trigger priv at activation time->insert fails
let $message= no trigger privilege at activation time:;
--source include/show_msg.inc
connection no_privs;
select current_user;
--error ER_TABLEACCESS_DENIED_ERROR
insert into t1 (f1) values ('insert5-no');
select f1 from t1 order by f1;
connection default;
select current_user;
grant TRIGGER on priv_db.t1 to test_yesprivs@localhost;
# trigger privilege at activation time->insert with trigger successful
let $message= trigger privilege at activation time:;
--source include/show_msg.inc
connection no_privs;
select current_user;
insert into t1 (f1) values ('insert6-no');
select f1 from t1 order by f1;
# trigger privilege->drop trigger successful
let $message= trigger privilege on table level for drop:;
--source include/show_msg.inc
connection yes_privs;
select current_user;
show grants for test_yesprivs@localhost;
drop trigger trg1_2;
# inserts without trigger
connection no_privs;
select current_user;
insert into t1 (f1) values ('insert7-yes');
select f1 from t1 order by f1;
connection default;
select current_user;
insert into t1 (f1) values ('insert8-yes');
select f1 from t1 order by f1;
# trigger privilege must be keep when mixinf tables with and without
# trigger privilege
let $message= switch to table without having trigger priv for it:;
--source include/show_msg.inc
eval create table t2 (f1 char(20)) engine= $engine_type;
# Adding the minimal priv to be able to set to the db
grant SELECT, INSERT, UPDATE on priv_db.t2 to test_yesprivs@localhost;
show grants for test_yesprivs@localhost;
grant SELECT, INSERT, UPDATE on priv_db.t2 to test_noprivs@localhost;
show grants for test_noprivs@localhost;
let $message= use table with trigger privilege and without...:;
--source include/show_msg.inc
connection yes_privs;
select current_user;
--error ER_TABLEACCESS_DENIED_ERROR
create trigger trg2_1 before INSERT on t2 for each row
set new.f1 = 'trig 2_1-no';
create trigger trg1_3 before INSERT on t1 for each row
set new.f1 = 'trig 1_3-yes';
--error ER_TABLEACCESS_DENIED_ERROR
create trigger trg2_2 before UPDATE on t2 for each row
set new.f1 = 'trig 2_2-no';
create trigger trg1_4 before UPDATE on t1 for each row
set new.f1 = 'trig 1_4-yes';
--replace_column 6 #
show triggers;
connection no_privs;
select current_user;
insert into t2 (f1) values ('insert9-yes');
select f1 from t2 order by f1;
insert into t1 (f1) values ('insert10-no');
select f1 from t1 order by f1;
disconnect no_privs;
connection yes_privs;
select current_user;
--error ER_TRG_DOES_NOT_EXIST
drop trigger trg2_1;
drop trigger trg1_3;
--error ER_TRG_DOES_NOT_EXIST
drop trigger trg2_2;
drop trigger trg1_4;
# Cleanup table level
--disable_warnings
disconnect yes_privs;
connection default;
select current_user;
--enable_warnings
# general Cleanup
--disable_warnings
drop database if exists priv_db;
drop user test_yesprivs@localhost;
drop user test_noprivs@localhost;
--enable_warnings
|