MetadataTest.java
35.2 KB
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
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
/*
Copyright (c) 2002, 2016, Oracle and/or its affiliates. All rights reserved.
The MySQL Connector/J is licensed under the terms of the GPLv2
<http://www.gnu.org/licenses/old-licenses/gpl-2.0.html>, like most MySQL Connectors.
There are special exceptions to the terms and conditions of the GPLv2 as it is applied to
this software, see the FOSS License Exception
<http://www.mysql.com/about/legal/licensing/foss-exception.html>.
This program is free software; you can redistribute it and/or modify it under the terms
of the GNU General Public License as published by the Free Software Foundation; version 2
of the License.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this
program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth
Floor, Boston, MA 02110-1301 USA
*/
package testsuite.simple;
import java.sql.Connection;
import java.sql.DatabaseMetaData;
import java.sql.ResultSet;
import java.sql.ResultSetMetaData;
import java.sql.SQLException;
import java.sql.Statement;
import java.sql.Types;
import java.util.HashSet;
import java.util.List;
import java.util.Properties;
import java.util.Set;
import com.mysql.jdbc.StringUtils;
import testsuite.BaseTestCase;
/**
* Tests DatabaseMetaData methods.
*/
public class MetadataTest extends BaseTestCase {
/**
* Creates a new MetadataTest object.
*
* @param name
*/
public MetadataTest(String name) {
super(name);
}
/**
* Runs all test cases in this test suite
*
* @param args
*/
public static void main(String[] args) {
junit.textui.TestRunner.run(MetadataTest.class);
}
@Override
public void setUp() throws Exception {
super.setUp();
}
public void testForeignKeys() throws SQLException {
try {
createTestTable();
DatabaseMetaData dbmd = this.conn.getMetaData();
this.rs = dbmd.getImportedKeys(null, null, "child");
while (this.rs.next()) {
String pkColumnName = this.rs.getString("PKCOLUMN_NAME");
String fkColumnName = this.rs.getString("FKCOLUMN_NAME");
assertTrue("Primary Key not returned correctly ('" + pkColumnName + "' != 'parent_id')", pkColumnName.equalsIgnoreCase("parent_id"));
assertTrue("Foreign Key not returned correctly ('" + fkColumnName + "' != 'parent_id_fk')", fkColumnName.equalsIgnoreCase("parent_id_fk"));
}
this.rs.close();
this.rs = dbmd.getExportedKeys(null, null, "parent");
while (this.rs.next()) {
String pkColumnName = this.rs.getString("PKCOLUMN_NAME");
String fkColumnName = this.rs.getString("FKCOLUMN_NAME");
String fkTableName = this.rs.getString("FKTABLE_NAME");
assertTrue("Primary Key not returned correctly ('" + pkColumnName + "' != 'parent_id')", pkColumnName.equalsIgnoreCase("parent_id"));
assertTrue("Foreign Key table not returned correctly for getExportedKeys ('" + fkTableName + "' != 'child')",
fkTableName.equalsIgnoreCase("child"));
assertTrue("Foreign Key not returned correctly for getExportedKeys ('" + fkColumnName + "' != 'parent_id_fk')",
fkColumnName.equalsIgnoreCase("parent_id_fk"));
}
this.rs.close();
this.rs = dbmd.getCrossReference(null, null, "cpd_foreign_3", null, null, "cpd_foreign_4");
assertTrue(this.rs.next());
String pkColumnName = this.rs.getString("PKCOLUMN_NAME");
String pkTableName = this.rs.getString("PKTABLE_NAME");
String fkColumnName = this.rs.getString("FKCOLUMN_NAME");
String fkTableName = this.rs.getString("FKTABLE_NAME");
String deleteAction = cascadeOptionToString(this.rs.getInt("DELETE_RULE"));
String updateAction = cascadeOptionToString(this.rs.getInt("UPDATE_RULE"));
assertEquals(pkColumnName, "cpd_foreign_1_id");
assertEquals(pkTableName, "cpd_foreign_3");
assertEquals(fkColumnName, "cpd_foreign_1_id");
assertEquals(fkTableName, "cpd_foreign_4");
assertEquals(deleteAction, "NO ACTION");
assertEquals(updateAction, "CASCADE");
this.rs.close();
this.rs = null;
} finally {
if (this.rs != null) {
this.rs.close();
this.rs = null;
}
this.stmt.executeUpdate("DROP TABLE IF EXISTS child");
this.stmt.executeUpdate("DROP TABLE IF EXISTS parent");
this.stmt.executeUpdate("DROP TABLE IF EXISTS cpd_foreign_4");
this.stmt.executeUpdate("DROP TABLE IF EXISTS cpd_foreign_3");
this.stmt.executeUpdate("DROP TABLE IF EXISTS cpd_foreign_2");
this.stmt.executeUpdate("DROP TABLE IF EXISTS cpd_foreign_1");
this.stmt.executeUpdate("DROP TABLE IF EXISTS fktable2");
this.stmt.executeUpdate("DROP TABLE IF EXISTS fktable1");
}
}
public void testGetPrimaryKeys() throws SQLException {
try {
createTable("multikey", "(d INT NOT NULL, b INT NOT NULL, a INT NOT NULL, c INT NOT NULL, PRIMARY KEY (d, b, a, c))");
DatabaseMetaData dbmd = this.conn.getMetaData();
this.rs = dbmd.getPrimaryKeys(this.conn.getCatalog(), "", "multikey");
short[] keySeqs = new short[4];
String[] columnNames = new String[4];
int i = 0;
while (this.rs.next()) {
this.rs.getString("TABLE_NAME");
columnNames[i] = this.rs.getString("COLUMN_NAME");
this.rs.getString("PK_NAME");
keySeqs[i] = this.rs.getShort("KEY_SEQ");
i++;
}
if ((keySeqs[0] != 3) && (keySeqs[1] != 2) && (keySeqs[2] != 4) && (keySeqs[3] != 1)) {
fail("Keys returned in wrong order");
}
} finally {
if (this.rs != null) {
try {
this.rs.close();
} catch (SQLException sqlEx) {
/* ignore */
}
}
}
}
private static String cascadeOptionToString(int option) {
switch (option) {
case DatabaseMetaData.importedKeyCascade:
return "CASCADE";
case DatabaseMetaData.importedKeySetNull:
return "SET NULL";
case DatabaseMetaData.importedKeyRestrict:
return "RESTRICT";
case DatabaseMetaData.importedKeyNoAction:
return "NO ACTION";
}
return "SET DEFAULT";
}
private void createTestTable() throws SQLException {
//Needed for previous runs that did not clean-up
this.stmt.executeUpdate("DROP TABLE IF EXISTS child");
this.stmt.executeUpdate("DROP TABLE IF EXISTS parent");
this.stmt.executeUpdate("DROP TABLE IF EXISTS multikey");
this.stmt.executeUpdate("DROP TABLE IF EXISTS cpd_foreign_4");
this.stmt.executeUpdate("DROP TABLE IF EXISTS cpd_foreign_3");
this.stmt.executeUpdate("DROP TABLE IF EXISTS cpd_foreign_2");
this.stmt.executeUpdate("DROP TABLE IF EXISTS cpd_foreign_1");
this.stmt.executeUpdate("DROP TABLE IF EXISTS fktable2");
this.stmt.executeUpdate("DROP TABLE IF EXISTS fktable1");
createTable("parent", "(parent_id INT NOT NULL, PRIMARY KEY (parent_id))", "INNODB");
createTable("child", "(child_id INT, parent_id_fk INT, INDEX par_ind (parent_id_fk), FOREIGN KEY (parent_id_fk) REFERENCES parent(parent_id)) ",
"INNODB");
// Test compound foreign keys
try {
createTable("cpd_foreign_1", "(id int(8) not null auto_increment primary key,name varchar(255) not null unique,key (id))", "InnoDB");
} catch (SQLException sqlEx) {
if (sqlEx.getMessage().indexOf("max key length") != -1) {
createTable("cpd_foreign_1", "(id int(8) not null auto_increment primary key,name varchar(180) not null unique,key (id))", "InnoDB");
}
}
createTable("cpd_foreign_2", "(id int(8) not null auto_increment primary key,key (id),name varchar(255)) ", "InnoDB");
createTable("cpd_foreign_3",
"(cpd_foreign_1_id int(8) not null,cpd_foreign_2_id int(8) not null,key(cpd_foreign_1_id),"
+ "key(cpd_foreign_2_id),primary key (cpd_foreign_1_id, cpd_foreign_2_id),"
+ "foreign key (cpd_foreign_1_id) references cpd_foreign_1(id),foreign key (cpd_foreign_2_id) references cpd_foreign_2(id)) ",
"InnoDB");
createTable("cpd_foreign_4",
"(cpd_foreign_1_id int(8) not null,cpd_foreign_2_id int(8) not null,key(cpd_foreign_1_id),"
+ "key(cpd_foreign_2_id),primary key (cpd_foreign_1_id, cpd_foreign_2_id),foreign key (cpd_foreign_1_id, cpd_foreign_2_id) "
+ "references cpd_foreign_3(cpd_foreign_1_id, cpd_foreign_2_id) ON DELETE RESTRICT ON UPDATE CASCADE) ",
"InnoDB");
createTable("fktable1", "(TYPE_ID int not null, TYPE_DESC varchar(32), primary key(TYPE_ID))", "InnoDB");
createTable("fktable2", "(KEY_ID int not null, COF_NAME varchar(32), PRICE float, TYPE_ID int, primary key(KEY_ID), "
+ "index(TYPE_ID), foreign key(TYPE_ID) references fktable1(TYPE_ID)) ", "InnoDB");
}
/**
* Tests the implementation of metadata for views.
*
* This test automatically detects whether or not the server it is running
* against supports the creation of views.
*
* @throws SQLException
* if the test fails.
*/
public void testViewMetaData() throws SQLException {
try {
this.rs = this.conn.getMetaData().getTableTypes();
while (this.rs.next()) {
if ("VIEW".equalsIgnoreCase(this.rs.getString(1))) {
this.stmt.executeUpdate("DROP VIEW IF EXISTS vTestViewMetaData");
createTable("testViewMetaData", "(field1 INT)");
this.stmt.executeUpdate("CREATE VIEW vTestViewMetaData AS SELECT field1 FROM testViewMetaData");
ResultSet tablesRs = null;
try {
tablesRs = this.conn.getMetaData().getTables(this.conn.getCatalog(), null, "%ViewMetaData", new String[] { "TABLE", "VIEW" });
assertTrue(tablesRs.next());
assertTrue("testViewMetaData".equalsIgnoreCase(tablesRs.getString(3)));
assertTrue(tablesRs.next());
assertTrue("vTestViewMetaData".equalsIgnoreCase(tablesRs.getString(3)));
} finally {
if (tablesRs != null) {
tablesRs.close();
}
}
try {
tablesRs = this.conn.getMetaData().getTables(this.conn.getCatalog(), null, "%ViewMetaData", new String[] { "TABLE" });
assertTrue(tablesRs.next());
assertTrue("testViewMetaData".equalsIgnoreCase(tablesRs.getString(3)));
assertTrue(!tablesRs.next());
} finally {
if (tablesRs != null) {
tablesRs.close();
}
}
break;
}
}
} finally {
if (this.rs != null) {
this.rs.close();
}
this.stmt.executeUpdate("DROP VIEW IF EXISTS vTestViewMetaData");
}
}
/**
* Tests detection of read-only fields when the server is 4.1.0 or newer.
*
* @throws Exception
* if the test fails.
*/
public void testRSMDIsReadOnly() throws Exception {
try {
this.rs = this.stmt.executeQuery("SELECT 1");
ResultSetMetaData rsmd = this.rs.getMetaData();
if (versionMeetsMinimum(4, 1)) {
assertTrue(rsmd.isReadOnly(1));
try {
createTable("testRSMDIsReadOnly", "(field1 INT)");
this.stmt.executeUpdate("INSERT INTO testRSMDIsReadOnly VALUES (1)");
this.rs = this.stmt.executeQuery("SELECT 1, field1 + 1, field1 FROM testRSMDIsReadOnly");
rsmd = this.rs.getMetaData();
assertTrue(rsmd.isReadOnly(1));
assertTrue(rsmd.isReadOnly(2));
assertTrue(!rsmd.isReadOnly(3));
} finally {
}
} else {
assertTrue(rsmd.isReadOnly(1) == false);
}
} finally {
if (this.rs != null) {
this.rs.close();
}
}
}
public void testBitType() throws Exception {
if (versionMeetsMinimum(5, 0, 3)) {
try {
createTable("testBitType", "(field1 BIT, field2 BIT, field3 BIT)");
this.stmt.executeUpdate("INSERT INTO testBitType VALUES (1, 0, NULL)");
this.rs = this.stmt.executeQuery("SELECT field1, field2, field3 FROM testBitType");
this.rs.next();
assertTrue(((Boolean) this.rs.getObject(1)).booleanValue());
assertTrue(!((Boolean) this.rs.getObject(2)).booleanValue());
assertEquals(this.rs.getObject(3), null);
System.out.println(this.rs.getObject(1) + ", " + this.rs.getObject(2) + ", " + this.rs.getObject(3));
this.rs = this.conn.prepareStatement("SELECT field1, field2, field3 FROM testBitType").executeQuery();
this.rs.next();
assertTrue(((Boolean) this.rs.getObject(1)).booleanValue());
assertTrue(!((Boolean) this.rs.getObject(2)).booleanValue());
assertEquals(this.rs.getObject(3), null);
byte[] asBytesTrue = this.rs.getBytes(1);
byte[] asBytesFalse = this.rs.getBytes(2);
byte[] asBytesNull = this.rs.getBytes(3);
assertEquals(asBytesTrue[0], 1);
assertEquals(asBytesFalse[0], 0);
assertEquals(asBytesNull, null);
createTable("testBitField", "(field1 BIT(9))");
this.rs = this.stmt.executeQuery("SELECT field1 FROM testBitField");
System.out.println(this.rs.getMetaData().getColumnClassName(1));
} finally {
}
}
}
public void testSupportsSelectForUpdate() throws Exception {
boolean supportsForUpdate = this.conn.getMetaData().supportsSelectForUpdate();
if (this.versionMeetsMinimum(4, 0)) {
assertTrue(supportsForUpdate);
} else {
assertTrue(!supportsForUpdate);
}
}
public void testTinyint1IsBit() throws Exception {
String tableName = "testTinyint1IsBit";
// Can't use 'BIT' or boolean
createTable(tableName, "(field1 TINYINT(1))");
this.stmt.executeUpdate("INSERT INTO " + tableName + " VALUES (1)");
Properties props = new Properties();
props.setProperty("tinyint1IsBit", "true");
props.setProperty("transformedBitIsBoolean", "true");
Connection boolConn = getConnectionWithProps(props);
this.rs = boolConn.createStatement().executeQuery("SELECT field1 FROM " + tableName);
checkBitOrBooleanType(false);
this.rs = boolConn.prepareStatement("SELECT field1 FROM " + tableName).executeQuery();
checkBitOrBooleanType(false);
this.rs = boolConn.getMetaData().getColumns(boolConn.getCatalog(), null, tableName, "field1");
assertTrue(this.rs.next());
if (versionMeetsMinimum(4, 1)) {
assertEquals(Types.BOOLEAN, this.rs.getInt("DATA_TYPE"));
} else {
assertEquals(Types.BIT, this.rs.getInt("DATA_TYPE"));
}
if (versionMeetsMinimum(4, 1)) {
assertEquals("BOOLEAN", this.rs.getString("TYPE_NAME"));
} else {
assertEquals("BIT", this.rs.getString("TYPE_NAME"));
}
props.clear();
props.setProperty("transformedBitIsBoolean", "false");
props.setProperty("tinyint1IsBit", "true");
Connection bitConn = getConnectionWithProps(props);
this.rs = bitConn.createStatement().executeQuery("SELECT field1 FROM " + tableName);
checkBitOrBooleanType(true);
this.rs = bitConn.prepareStatement("SELECT field1 FROM " + tableName).executeQuery();
checkBitOrBooleanType(true);
this.rs = bitConn.getMetaData().getColumns(boolConn.getCatalog(), null, tableName, "field1");
assertTrue(this.rs.next());
assertEquals(Types.BIT, this.rs.getInt("DATA_TYPE"));
assertEquals("BIT", this.rs.getString("TYPE_NAME"));
}
private void checkBitOrBooleanType(boolean usingBit) throws SQLException {
assertTrue(this.rs.next());
assertEquals("java.lang.Boolean", this.rs.getObject(1).getClass().getName());
if (!usingBit) {
if (versionMeetsMinimum(4, 1)) {
assertEquals(Types.BOOLEAN, this.rs.getMetaData().getColumnType(1));
} else {
assertEquals(Types.BIT, this.rs.getMetaData().getColumnType(1));
}
} else {
assertEquals(Types.BIT, this.rs.getMetaData().getColumnType(1));
}
assertEquals("java.lang.Boolean", this.rs.getMetaData().getColumnClassName(1));
}
/**
* Tests the implementation of Information Schema for primary keys.
*/
public void testGetPrimaryKeysUsingInfoShcema() throws Exception {
if (versionMeetsMinimum(5, 0, 7)) {
createTable("t1", "(c1 int(1) primary key)");
Properties props = new Properties();
props.put("useInformationSchema", "true");
Connection conn1 = null;
try {
conn1 = getConnectionWithProps(props);
DatabaseMetaData metaData = conn1.getMetaData();
this.rs = metaData.getPrimaryKeys(null, null, "t1");
this.rs.next();
assertEquals("t1", this.rs.getString("TABLE_NAME"));
assertEquals("c1", this.rs.getString("COLUMN_NAME"));
} finally {
if (conn1 != null) {
conn1.close();
}
}
}
}
/**
* Tests the implementation of Information Schema for index info.
*/
public void testGetIndexInfoUsingInfoSchema() throws Exception {
if (versionMeetsMinimum(5, 0, 7)) {
createTable("t1", "(c1 int(1))");
this.stmt.executeUpdate("CREATE INDEX index1 ON t1 (c1)");
Connection conn1 = null;
try {
conn1 = getConnectionWithProps("useInformationSchema=true");
DatabaseMetaData metaData = conn1.getMetaData();
this.rs = metaData.getIndexInfo(conn1.getCatalog(), null, "t1", false, true);
this.rs.next();
assertEquals("t1", this.rs.getString("TABLE_NAME"));
assertEquals("c1", this.rs.getString("COLUMN_NAME"));
assertEquals("1", this.rs.getString("NON_UNIQUE"));
assertEquals("index1", this.rs.getString("INDEX_NAME"));
} finally {
if (conn1 != null) {
conn1.close();
}
}
}
}
/**
* Tests the implementation of Information Schema for columns.
*/
public void testGetColumnsUsingInfoSchema() throws Exception {
if (versionMeetsMinimum(5, 0, 7)) {
createTable("t1", "(c1 char(1))");
Properties props = new Properties();
props.put("useInformationSchema", "true");
Connection conn1 = null;
try {
conn1 = getConnectionWithProps(props);
DatabaseMetaData metaData = conn1.getMetaData();
this.rs = metaData.getColumns(null, null, "t1", null);
this.rs.next();
assertEquals("t1", this.rs.getString("TABLE_NAME"));
assertEquals("c1", this.rs.getString("COLUMN_NAME"));
assertEquals("CHAR", this.rs.getString("TYPE_NAME"));
assertEquals("1", this.rs.getString("COLUMN_SIZE"));
} finally {
if (conn1 != null) {
conn1.close();
}
}
}
}
/**
* Tests the implementation of Information Schema for tables.
*/
public void testGetTablesUsingInfoSchema() throws Exception {
if (versionMeetsMinimum(5, 0, 7)) {
createTable("`t1-1`", "(c1 char(1))");
createTable("`t1-2`", "(c1 char(1))");
createTable("`t2`", "(c1 char(1))");
Set<String> tableNames = new HashSet<String>();
tableNames.add("t1-1");
tableNames.add("t1-2");
Properties props = new Properties();
props.put("useInformationSchema", "true");
Connection conn1 = null;
try {
conn1 = getConnectionWithProps(props);
DatabaseMetaData metaData = conn1.getMetaData();
// pattern matching for table name
this.rs = metaData.getTables(null, null, "t1-_", null);
while (this.rs.next()) {
assertTrue(tableNames.remove(this.rs.getString("TABLE_NAME")));
}
assertTrue(tableNames.isEmpty());
} finally {
if (conn1 != null) {
conn1.close();
}
}
}
}
/**
* Tests the implementation of Information Schema for column privileges.
*/
public void testGetColumnPrivilegesUsingInfoSchema() throws Exception {
String dontRunPropertyName = "com.mysql.jdbc.testsuite.cantGrant";
if (!runTestIfSysPropDefined(dontRunPropertyName)) {
if (versionMeetsMinimum(5, 0, 7)) {
Properties props = new Properties();
props.put("useInformationSchema", "true");
Connection conn1 = null;
Statement stmt1 = null;
String userHostQuoted = null;
boolean grantFailed = true;
try {
conn1 = getConnectionWithProps(props);
stmt1 = conn1.createStatement();
createTable("t1", "(c1 int)");
this.rs = stmt1.executeQuery("SELECT USER()");
this.rs.next();
String user = this.rs.getString(1);
List<String> userHost = StringUtils.split(user, "@", false);
if (userHost.size() < 2) {
fail("This test requires a JDBC URL with a user, and won't work with the anonymous user. "
+ "You can skip this test by setting the system property " + dontRunPropertyName);
}
userHostQuoted = "'" + userHost.get(0) + "'@'" + userHost.get(1) + "'";
try {
stmt1.executeUpdate("GRANT update (c1) on t1 to " + userHostQuoted);
grantFailed = false;
} catch (SQLException sqlEx) {
fail("This testcase needs to be run with a URL that allows the user to issue GRANTs "
+ " in the current database. You can skip this test by setting the system property \"" + dontRunPropertyName + "\".");
}
if (!grantFailed) {
DatabaseMetaData metaData = conn1.getMetaData();
this.rs = metaData.getColumnPrivileges(null, null, "t1", null);
this.rs.next();
assertEquals("t1", this.rs.getString("TABLE_NAME"));
assertEquals("c1", this.rs.getString("COLUMN_NAME"));
assertEquals(userHostQuoted, this.rs.getString("GRANTEE"));
assertEquals("UPDATE", this.rs.getString("PRIVILEGE"));
}
} finally {
if (stmt1 != null) {
if (!grantFailed) {
stmt1.executeUpdate("REVOKE UPDATE (c1) ON t1 FROM " + userHostQuoted);
}
stmt1.close();
}
if (conn1 != null) {
conn1.close();
}
}
}
}
}
/**
* Tests the implementation of Information Schema for description
* of stored procedures available in a catalog.
*/
public void testGetProceduresUsingInfoSchema() throws Exception {
if (versionMeetsMinimum(5, 0, 7)) {
createProcedure("sp1", "()\n BEGIN\nSELECT 1;end\n");
Properties props = new Properties();
props.put("useInformationSchema", "true");
Connection conn1 = null;
try {
conn1 = getConnectionWithProps(props);
DatabaseMetaData metaData = conn1.getMetaData();
this.rs = metaData.getProcedures(null, null, "sp1");
this.rs.next();
assertEquals("sp1", this.rs.getString("PROCEDURE_NAME"));
assertEquals("1", this.rs.getString("PROCEDURE_TYPE"));
} finally {
if (conn1 != null) {
conn1.close();
}
}
}
}
/**
* Tests the implementation of Information Schema for foreign key.
*/
public void testGetCrossReferenceUsingInfoSchema() throws Exception {
if (versionMeetsMinimum(5, 0, 7)) {
this.stmt.executeUpdate("DROP TABLE IF EXISTS child");
this.stmt.executeUpdate("DROP TABLE If EXISTS parent");
this.stmt.executeUpdate("CREATE TABLE parent(id INT NOT NULL, PRIMARY KEY (id)) ENGINE=INNODB");
this.stmt.executeUpdate(
"CREATE TABLE child(id INT, parent_id INT, " + "FOREIGN KEY (parent_id) REFERENCES parent(id) ON DELETE SET NULL) ENGINE=INNODB");
Properties props = new Properties();
props.put("useInformationSchema", "true");
Connection conn1 = null;
try {
conn1 = getConnectionWithProps(props);
DatabaseMetaData metaData = conn1.getMetaData();
this.rs = metaData.getCrossReference(null, null, "parent", null, null, "child");
this.rs.next();
assertEquals("parent", this.rs.getString("PKTABLE_NAME"));
assertEquals("id", this.rs.getString("PKCOLUMN_NAME"));
assertEquals("child", this.rs.getString("FKTABLE_NAME"));
assertEquals("parent_id", this.rs.getString("FKCOLUMN_NAME"));
} finally {
this.stmt.executeUpdate("DROP TABLE IF EXISTS child");
this.stmt.executeUpdate("DROP TABLE If EXISTS parent");
if (conn1 != null) {
conn1.close();
}
}
}
}
/**
* Tests the implementation of Information Schema for foreign key.
*/
public void testGetExportedKeysUsingInfoSchema() throws Exception {
if (versionMeetsMinimum(5, 0, 7)) {
this.stmt.executeUpdate("DROP TABLE IF EXISTS child");
this.stmt.executeUpdate("DROP TABLE If EXISTS parent");
this.stmt.executeUpdate("CREATE TABLE parent(id INT NOT NULL, PRIMARY KEY (id)) ENGINE=INNODB");
this.stmt.executeUpdate(
"CREATE TABLE child(id INT, parent_id INT, " + "FOREIGN KEY (parent_id) REFERENCES parent(id) ON DELETE SET NULL) ENGINE=INNODB");
Properties props = new Properties();
props.put("useInformationSchema", "true");
Connection conn1 = null;
try {
conn1 = getConnectionWithProps(props);
DatabaseMetaData metaData = conn1.getMetaData();
this.rs = metaData.getExportedKeys(null, null, "parent");
this.rs.next();
assertEquals("parent", this.rs.getString("PKTABLE_NAME"));
assertEquals("id", this.rs.getString("PKCOLUMN_NAME"));
assertEquals("child", this.rs.getString("FKTABLE_NAME"));
assertEquals("parent_id", this.rs.getString("FKCOLUMN_NAME"));
} finally {
this.stmt.executeUpdate("DROP TABLE IF EXISTS child");
this.stmt.executeUpdate("DROP TABLE If EXISTS parent");
if (conn1 != null) {
conn1.close();
}
}
}
}
/**
* Tests the implementation of Information Schema for foreign key.
*/
public void testGetImportedKeysUsingInfoSchema() throws Exception {
if (versionMeetsMinimum(5, 0, 7)) {
this.stmt.executeUpdate("DROP TABLE IF EXISTS child");
this.stmt.executeUpdate("DROP TABLE If EXISTS parent");
this.stmt.executeUpdate("CREATE TABLE parent(id INT NOT NULL, PRIMARY KEY (id)) ENGINE=INNODB");
this.stmt.executeUpdate(
"CREATE TABLE child(id INT, parent_id INT, " + "FOREIGN KEY (parent_id) REFERENCES parent(id) ON DELETE SET NULL) ENGINE=INNODB");
Properties props = new Properties();
props.put("useInformationSchema", "true");
Connection conn1 = null;
try {
conn1 = getConnectionWithProps(props);
DatabaseMetaData metaData = conn1.getMetaData();
this.rs = metaData.getImportedKeys(null, null, "child");
this.rs.next();
assertEquals("parent", this.rs.getString("PKTABLE_NAME"));
assertEquals("id", this.rs.getString("PKCOLUMN_NAME"));
assertEquals("child", this.rs.getString("FKTABLE_NAME"));
assertEquals("parent_id", this.rs.getString("FKCOLUMN_NAME"));
} finally {
this.stmt.executeUpdate("DROP TABLE IF EXISTS child");
this.stmt.executeUpdate("DROP TABLE If EXISTS parent");
if (conn1 != null) {
conn1.close();
}
}
}
}
/**
* WL#411 - Generated columns.
*
* Test for new syntax and support in DatabaseMetaData.getColumns().
*
* New syntax for CREATE TABLE, introduced in MySQL 5.7.6:
* -col_name data_type [GENERATED ALWAYS] AS (expression) [VIRTUAL | STORED] [UNIQUE [KEY]] [COMMENT comment] [[NOT] NULL] [[PRIMARY] KEY]
*/
public void testGeneratedColumns() throws Exception {
if (!versionMeetsMinimum(5, 7, 6)) {
return;
}
// Test GENERATED columns syntax.
createTable("pythagorean_triple",
"(side_a DOUBLE NULL, side_b DOUBLE NULL, "
+ "side_c_vir DOUBLE AS (SQRT(side_a * side_a + side_b * side_b)) VIRTUAL UNIQUE KEY COMMENT 'hypotenuse - virtual', "
+ "side_c_sto DOUBLE GENERATED ALWAYS AS (SQRT(POW(side_a, 2) + POW(side_b, 2))) STORED UNIQUE KEY COMMENT 'hypotenuse - stored' NOT NULL "
+ "PRIMARY KEY)");
// Test data for generated columns.
assertEquals(1, this.stmt.executeUpdate("INSERT INTO pythagorean_triple (side_a, side_b) VALUES (3, 4)"));
this.rs = this.stmt.executeQuery("SELECT * FROM pythagorean_triple");
assertTrue(this.rs.next());
assertEquals(3d, this.rs.getDouble(1));
assertEquals(4d, this.rs.getDouble(2));
assertEquals(5d, this.rs.getDouble(3));
assertEquals(5d, this.rs.getDouble(4));
assertEquals(3d, this.rs.getDouble("side_a"));
assertEquals(4d, this.rs.getDouble("side_b"));
assertEquals(5d, this.rs.getDouble("side_c_sto"));
assertEquals(5d, this.rs.getDouble("side_c_vir"));
assertFalse(this.rs.next());
for (String connProps : new String[] { "useInformationSchema=false", "useInformationSchema=true" }) {
Connection testConn = null;
testConn = getConnectionWithProps(connProps);
DatabaseMetaData dbmd = testConn.getMetaData();
String test = "Case [" + connProps + "]";
// Test columns metadata.
this.rs = dbmd.getColumns(null, null, "pythagorean_triple", "%");
assertTrue(test, this.rs.next());
assertEquals(test, "side_a", this.rs.getString("COLUMN_NAME"));
assertEquals(test, "YES", this.rs.getString("IS_NULLABLE"));
assertEquals(test, "NO", this.rs.getString("IS_AUTOINCREMENT"));
assertEquals(test, "NO", this.rs.getString("IS_GENERATEDCOLUMN"));
assertTrue(test, this.rs.next());
assertEquals(test, "side_b", this.rs.getString("COLUMN_NAME"));
assertEquals(test, "YES", this.rs.getString("IS_NULLABLE"));
assertEquals(test, "NO", this.rs.getString("IS_AUTOINCREMENT"));
assertEquals(test, "NO", this.rs.getString("IS_GENERATEDCOLUMN"));
assertTrue(test, this.rs.next());
assertEquals(test, "side_c_vir", this.rs.getString("COLUMN_NAME"));
assertEquals(test, "YES", this.rs.getString("IS_NULLABLE"));
assertEquals(test, "NO", this.rs.getString("IS_AUTOINCREMENT"));
assertEquals(test, "YES", this.rs.getString("IS_GENERATEDCOLUMN"));
assertTrue(test, this.rs.next());
assertEquals(test, "side_c_sto", this.rs.getString("COLUMN_NAME"));
assertEquals(test, "NO", this.rs.getString("IS_NULLABLE"));
assertEquals(test, "NO", this.rs.getString("IS_AUTOINCREMENT"));
assertEquals(test, "YES", this.rs.getString("IS_GENERATEDCOLUMN"));
assertFalse(test, this.rs.next());
// Test primary keys metadata.
this.rs = dbmd.getPrimaryKeys(null, null, "pythagorean_triple");
assertTrue(test, this.rs.next());
assertEquals(test, "side_c_sto", this.rs.getString("COLUMN_NAME"));
assertEquals(test, "PRIMARY", this.rs.getString("PK_NAME"));
assertFalse(test, this.rs.next());
// Test indexes metadata.
this.rs = dbmd.getIndexInfo(null, null, "pythagorean_triple", false, true);
assertTrue(test, this.rs.next());
assertEquals(test, "PRIMARY", this.rs.getString("INDEX_NAME"));
assertEquals(test, "side_c_sto", this.rs.getString("COLUMN_NAME"));
assertTrue(test, this.rs.next());
assertEquals(test, "side_c_sto", this.rs.getString("INDEX_NAME"));
assertEquals(test, "side_c_sto", this.rs.getString("COLUMN_NAME"));
assertTrue(test, this.rs.next());
assertEquals(test, "side_c_vir", this.rs.getString("INDEX_NAME"));
assertEquals(test, "side_c_vir", this.rs.getString("COLUMN_NAME"));
assertFalse(test, this.rs.next());
testConn.close();
}
}
}