~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysql-test/t/user_limits.test

  • Committer: brian
  • Date: 2008-06-25 05:29:13 UTC
  • Revision ID: brian@localhost.localdomain-20080625052913-6upwo0jsrl4lnapl
clean slate

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# Test behavior of various per-account limits (aka quotas)
 
3
#
 
4
 
 
5
# Requires privileges to be enabled
 
6
-- source include/not_embedded.inc
 
7
 
 
8
# Prepare play-ground 
 
9
--disable_warnings
 
10
drop table if exists t1;
 
11
--enable_warnings
 
12
create table t1 (i int);
 
13
# Just be sure that nothing will bother us
 
14
delete from mysql.user where user like 'mysqltest\_%';
 
15
delete from mysql.db where user like 'mysqltest\_%';
 
16
delete from mysql.tables_priv where user like 'mysqltest\_%';
 
17
delete from mysql.columns_priv where user like 'mysqltest\_%';
 
18
flush privileges;
 
19
 
 
20
# Limits doesn't work with prepared statements (yet)
 
21
--disable_ps_protocol
 
22
 
 
23
# Test of MAX_QUERIES_PER_HOUR limit
 
24
grant usage on *.* to mysqltest_1@localhost with max_queries_per_hour 2;
 
25
# This ensures that counters are reset and makes test scheduling independent
 
26
flush user_resources;
 
27
connect (mqph, localhost, mysqltest_1,,);
 
28
connection mqph;
 
29
select * from t1;
 
30
select * from t1;
 
31
--error 1226
 
32
select * from t1;
 
33
connect (mqph2, localhost, mysqltest_1,,);
 
34
connection mqph2;
 
35
--error 1226
 
36
select * from t1;
 
37
# cleanup
 
38
connection default;
 
39
drop user mysqltest_1@localhost;
 
40
disconnect mqph;
 
41
disconnect mqph2;
 
42
 
 
43
# Test of MAX_UPDATES_PER_HOUR limit
 
44
grant usage on *.* to mysqltest_1@localhost with max_updates_per_hour 2;
 
45
flush user_resources;
 
46
connect (muph, localhost, mysqltest_1,,);
 
47
connection muph;
 
48
select * from t1;
 
49
select * from t1;
 
50
select * from t1;
 
51
delete from t1;
 
52
delete from t1;
 
53
--error 1226
 
54
delete from t1;
 
55
select * from t1;
 
56
connect (muph2, localhost, mysqltest_1,,);
 
57
connection muph2;
 
58
--error 1226
 
59
delete from t1;
 
60
select * from t1;
 
61
# Cleanup
 
62
connection default;
 
63
drop user mysqltest_1@localhost;
 
64
disconnect muph;
 
65
disconnect muph2;
 
66
 
 
67
# Test of MAX_CONNECTIONS_PER_HOUR limit
 
68
grant usage on *.* to mysqltest_1@localhost with max_connections_per_hour 2;
 
69
flush user_resources;
 
70
connect (mcph1, localhost, mysqltest_1,,);
 
71
connection mcph1;
 
72
select * from t1;
 
73
connect (mcph2, localhost, mysqltest_1,,);
 
74
connection mcph2;
 
75
select * from t1;
 
76
--replace_result $MASTER_MYPORT MYSQL_PORT $MASTER_MYSOCK MYSQL_SOCK
 
77
--error 1226
 
78
connect (mcph3, localhost, mysqltest_1,,);
 
79
# Old connection is still ok
 
80
select * from t1;
 
81
# Let us try to close old connections and try again. This will also test that
 
82
# counters are not thrown away if there are no connections for this user.
 
83
disconnect mcph1;
 
84
disconnect mcph2;
 
85
--replace_result $MASTER_MYPORT MYSQL_PORT $MASTER_MYSOCK MYSQL_SOCK
 
86
--error 1226
 
87
connect (mcph3, localhost, mysqltest_1,,);
 
88
# Cleanup
 
89
connection default;
 
90
drop user mysqltest_1@localhost;
 
91
 
 
92
# Test of MAX_USER_CONNECTIONS limit
 
93
# We need this to reset internal mqh_used variable
 
94
flush privileges;
 
95
grant usage on *.* to mysqltest_1@localhost with max_user_connections 2;
 
96
flush user_resources;
 
97
connect (muc1, localhost, mysqltest_1,,);
 
98
connection muc1;
 
99
select * from t1;
 
100
connect (muc2, localhost, mysqltest_1,,);
 
101
connection muc2;
 
102
select * from t1;
 
103
--replace_result $MASTER_MYPORT MYSQL_PORT $MASTER_MYSOCK MYSQL_SOCK
 
104
--error 1226
 
105
connect (muc3, localhost, mysqltest_1,,);
 
106
# Closing of one of connections should help
 
107
disconnect muc1;
 
108
connect (muc3, localhost, mysqltest_1,,);
 
109
select * from t1;
 
110
# Changing of limit should also help (and immediately) 
 
111
connection default;
 
112
grant usage on *.* to mysqltest_1@localhost with max_user_connections 3;
 
113
flush user_resources;
 
114
connect (muc4, localhost, mysqltest_1,,);
 
115
connection muc4;
 
116
select * from t1;
 
117
--replace_result $MASTER_MYPORT MYSQL_PORT $MASTER_MYSOCK MYSQL_SOCK
 
118
--error 1226
 
119
connect (muc5, localhost, mysqltest_1,,);
 
120
# Clean up
 
121
connection default;
 
122
disconnect muc2;
 
123
disconnect muc3;
 
124
disconnect muc4;
 
125
drop user mysqltest_1@localhost;
 
126
 
 
127
# Now let us test interaction between global and per-account
 
128
# max_user_connections limits
 
129
select @@session.max_user_connections, @@global.max_user_connections;
 
130
# Local max_user_connections variable can't be set directly
 
131
# since this limit is per-account
 
132
--error 1229
 
133
set session max_user_connections= 2; 
 
134
# But it is ok to set global max_user_connections
 
135
set global max_user_connections= 2; 
 
136
select @@session.max_user_connections, @@global.max_user_connections;
 
137
# Let us check that global limit works
 
138
grant usage on *.* to mysqltest_1@localhost;
 
139
flush user_resources;
 
140
connect (muca1, localhost, mysqltest_1,,);
 
141
connection muca1;
 
142
select @@session.max_user_connections, @@global.max_user_connections;
 
143
connect (muca2, localhost, mysqltest_1,,);
 
144
connection muca2;
 
145
select * from t1;
 
146
--replace_result $MASTER_MYPORT MYSQL_PORT $MASTER_MYSOCK MYSQL_SOCK
 
147
--error 1203
 
148
connect (muca3, localhost, mysqltest_1,,);
 
149
# Now we are testing that per-account limit prevails over gloabl limit
 
150
connection default;
 
151
grant usage on *.* to mysqltest_1@localhost with max_user_connections 3;
 
152
flush user_resources;
 
153
connect (muca3, localhost, mysqltest_1,,);
 
154
connection muca3;
 
155
select @@session.max_user_connections, @@global.max_user_connections;
 
156
--replace_result $MASTER_MYPORT MYSQL_PORT $MASTER_MYSOCK MYSQL_SOCK
 
157
--error 1226
 
158
connect (muca4, localhost, mysqltest_1,,);
 
159
# Cleanup
 
160
connection default;
 
161
disconnect muca1;
 
162
disconnect muca2;
 
163
disconnect muca3;
 
164
set global max_user_connections= 0; 
 
165
drop user mysqltest_1@localhost;
 
166
--enable_ps_protocol
 
167
 
 
168
# Final cleanup
 
169
drop table t1;