~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysql-test/t/connect.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
# This test is to check various cases of connections
 
2
# with right and wrong password, with and without database
 
3
# Unfortunately the check is incomplete as we can't connect without database
 
4
 
 
5
# This test makes no sense with the embedded server
 
6
--source include/not_embedded.inc
 
7
 
 
8
# check that CSV engine was compiled in, as the test relies on the presence
 
9
# of the log tables (which are CSV-based). By connect mysql; show tables;
 
10
--source include/have_csv.inc
 
11
 
 
12
--disable_warnings
 
13
drop table if exists t1,t2;
 
14
--enable_warnings
 
15
 
 
16
 
 
17
#connect (con1,localhost,root,,"");
 
18
#show tables;
 
19
connect (con1,localhost,root,,mysql);
 
20
show tables;
 
21
connect (con2,localhost,root,,test);
 
22
show tables;
 
23
 
 
24
--replace_result $MASTER_MYSOCK MASTER_SOCKET $MASTER_MYPORT MASTER_PORT
 
25
--error 1045
 
26
connect (fail_con,localhost,root,z,test2);
 
27
--replace_result $MASTER_MYSOCK MASTER_SOCKET $MASTER_MYPORT MASTER_PORT
 
28
--error 1045
 
29
connect (fail_con,localhost,root,z,);
 
30
 
 
31
grant ALL on *.* to test@localhost identified by "gambling";
 
32
grant ALL on *.* to test@127.0.0.1 identified by "gambling";
 
33
 
 
34
# Now check this user with different databases
 
35
#connect (con1,localhost,test,gambling,"");
 
36
#show tables;
 
37
connect (con3,localhost,test,gambling,mysql);
 
38
show tables;
 
39
connect (con4,localhost,test,gambling,test);
 
40
show tables;
 
41
 
 
42
--replace_result $MASTER_MYSOCK MASTER_SOCKET $MASTER_MYPORT MASTER_PORT
 
43
--error 1045
 
44
connect (fail_con,localhost,test,,test2);
 
45
--replace_result $MASTER_MYSOCK MASTER_SOCKET $MASTER_MYPORT MASTER_PORT
 
46
--error 1045
 
47
connect (fail_con,localhost,test,,"");
 
48
--replace_result $MASTER_MYSOCK MASTER_SOCKET $MASTER_MYPORT MASTER_PORT
 
49
--error 1045
 
50
connect (fail_con,localhost,test,zorro,test2);
 
51
--replace_result $MASTER_MYSOCK MASTER_SOCKET $MASTER_MYPORT MASTER_PORT
 
52
--error 1045
 
53
connect (fail_con,localhost,test,zorro,);
 
54
 
 
55
 
 
56
# check if old password version also works
 
57
update mysql.user set password=old_password("gambling2") where user=_binary"test";
 
58
flush privileges;
 
59
 
 
60
connect (con10,localhost,test,gambling2,);
 
61
connect (con5,localhost,test,gambling2,mysql);
 
62
connection con5;
 
63
set password="";
 
64
--error 1372
 
65
set password='gambling3';
 
66
set password=old_password('gambling3');
 
67
show tables;
 
68
connect (con6,localhost,test,gambling3,test);
 
69
show tables;
 
70
 
 
71
--replace_result $MASTER_MYSOCK MASTER_SOCKET $MASTER_MYPORT MASTER_PORT
 
72
--error 1045
 
73
connect (fail_con,localhost,test,,test2);
 
74
--replace_result $MASTER_MYSOCK MASTER_SOCKET $MASTER_MYPORT MASTER_PORT
 
75
--error 1045
 
76
connect (fail_con,localhost,test,,);
 
77
--replace_result $MASTER_MYSOCK MASTER_SOCKET $MASTER_MYPORT MASTER_PORT
 
78
--error 1045
 
79
connect (fail_con,localhost,test,zorro,test2);
 
80
--replace_result $MASTER_MYSOCK MASTER_SOCKET $MASTER_MYPORT MASTER_PORT
 
81
--error 1045
 
82
connect (fail_con,localhost,test,zorro,);
 
83
 
 
84
 
 
85
# remove user 'test' so that other tests which may use 'test'
 
86
# do not depend on this test.
 
87
 
 
88
delete from mysql.user where user=_binary"test";
 
89
flush privileges;
 
90
 
 
91
#
 
92
# Bug#12517: Clear user variables and replication events before 
 
93
#            closing temp tables in thread cleanup.
 
94
connect (con7,localhost,root,,test);
 
95
connection con7;
 
96
create table t1 (id integer not null auto_increment primary key);
 
97
create temporary table t2(id integer not null auto_increment primary key);
 
98
set @id := 1;
 
99
delete from t1 where id like @id;
 
100
disconnect con7;
 
101
--sleep 5
 
102
connection default;
 
103
drop table t1;
 
104
 
 
105
--disconnect con1
 
106
--disconnect con2
 
107
--disconnect con3
 
108
--disconnect con4
 
109
--disconnect con5
 
110
--disconnect con6
 
111
--disconnect con10
 
112
 
 
113
--echo # ------------------------------------------------------------------
 
114
--echo # -- End of 4.1 tests
 
115
--echo # ------------------------------------------------------------------
 
116
 
 
117
--echo # ------------------------------------------------------------------
 
118
--echo # -- End of 5.1 tests
 
119
--echo # ------------------------------------------------------------------