Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
4da51bfd
Commit
4da51bfd
authored
23 years ago
by
Dave Cramer
Browse files
Options
Downloads
Patches
Plain Diff
Added some rudimentary table and column tests
added a setup/teardown to create and drop the connection, and table
parent
710a711a
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/interfaces/jdbc/org/postgresql/test/jdbc2/DatabaseMetaDataTest.java
+35
-25
35 additions, 25 deletions
.../jdbc/org/postgresql/test/jdbc2/DatabaseMetaDataTest.java
with
35 additions
and
25 deletions
src/interfaces/jdbc/org/postgresql/test/jdbc2/DatabaseMetaDataTest.java
+
35
−
25
View file @
4da51bfd
...
@@ -9,12 +9,13 @@ import java.sql.*;
...
@@ -9,12 +9,13 @@ import java.sql.*;
*
*
* PS: Do you know how difficult it is to type on a train? ;-)
* PS: Do you know how difficult it is to type on a train? ;-)
*
*
* $Id: DatabaseMetaDataTest.java,v 1.
4
200
1/11/19 22:33:39 momjian
Exp $
* $Id: DatabaseMetaDataTest.java,v 1.
5
200
2/04/16 15:25:17 davec
Exp $
*/
*/
public
class
DatabaseMetaDataTest
extends
TestCase
public
class
DatabaseMetaDataTest
extends
TestCase
{
{
private
Connection
con
;
/*
/*
* Constructor
* Constructor
*/
*/
...
@@ -23,6 +24,17 @@ public class DatabaseMetaDataTest extends TestCase
...
@@ -23,6 +24,17 @@ public class DatabaseMetaDataTest extends TestCase
super
(
name
);
super
(
name
);
}
}
protected
void
setUp
()
throws
Exception
{
con
=
JDBC2Tests
.
openDB
();
JDBC2Tests
.
createTable
(
con
,
"testmetadata"
,
"id int4, name text, updated timestamp"
);
}
protected
void
tearDown
()
throws
Exception
{
JDBC2Tests
.
dropTable
(
con
,
"testmetadata"
);
JDBC2Tests
.
closeDB
(
con
);
}
/*
/*
* The spec says this may return null, but we always do!
* The spec says this may return null, but we always do!
*/
*/
...
@@ -30,12 +42,32 @@ public class DatabaseMetaDataTest extends TestCase
...
@@ -30,12 +42,32 @@ public class DatabaseMetaDataTest extends TestCase
{
{
try
try
{
{
Connection
con
=
JDBC2Tests
.
openDB
();
DatabaseMetaData
dbmd
=
con
.
getMetaData
();
DatabaseMetaData
dbmd
=
con
.
getMetaData
();
assertNotNull
(
dbmd
);
assertNotNull
(
dbmd
);
JDBC2Tests
.
closeDB
(
con
);
ResultSet
rs
=
dbmd
.
getTables
(
null
,
null
,
"test%"
,
new
String
[]
{
"TABLE"
});
assertTrue
(
rs
.
next
()
);
assertTrue
(
rs
.
getString
(
"TABLE_NAME"
).
equals
(
"testmetadata"
)
);
rs
.
close
();
rs
=
dbmd
.
getColumns
(
""
,
""
,
"test%"
,
"%"
);
assertTrue
(
rs
.
next
()
);
assertTrue
(
rs
.
getString
(
"TABLE_NAME"
).
equals
(
"testmetadata"
)
);
assertTrue
(
rs
.
getString
(
"COLUMN_NAME"
).
equals
(
"id"
)
);
assertTrue
(
rs
.
getInt
(
"DATA_TYPE"
)
==
java
.
sql
.
Types
.
INTEGER
);
assertTrue
(
rs
.
next
()
);
assertTrue
(
rs
.
getString
(
"TABLE_NAME"
).
equals
(
"testmetadata"
)
);
assertTrue
(
rs
.
getString
(
"COLUMN_NAME"
).
equals
(
"name"
)
);
assertTrue
(
rs
.
getInt
(
"DATA_TYPE"
)
==
java
.
sql
.
Types
.
VARCHAR
);
assertTrue
(
rs
.
next
()
);
assertTrue
(
rs
.
getString
(
"TABLE_NAME"
).
equals
(
"testmetadata"
)
);
assertTrue
(
rs
.
getString
(
"COLUMN_NAME"
).
equals
(
"updated"
)
);
assertTrue
(
rs
.
getInt
(
"DATA_TYPE"
)
==
java
.
sql
.
Types
.
TIMESTAMP
);
}
}
catch
(
SQLException
ex
)
catch
(
SQLException
ex
)
{
{
...
@@ -50,7 +82,6 @@ public class DatabaseMetaDataTest extends TestCase
...
@@ -50,7 +82,6 @@ public class DatabaseMetaDataTest extends TestCase
{
{
try
try
{
{
Connection
con
=
JDBC2Tests
.
openDB
();
DatabaseMetaData
dbmd
=
con
.
getMetaData
();
DatabaseMetaData
dbmd
=
con
.
getMetaData
();
assertNotNull
(
dbmd
);
assertNotNull
(
dbmd
);
...
@@ -76,7 +107,6 @@ public class DatabaseMetaDataTest extends TestCase
...
@@ -76,7 +107,6 @@ public class DatabaseMetaDataTest extends TestCase
assertTrue
(!
dbmd
.
supportsIntegrityEnhancementFacility
());
assertTrue
(!
dbmd
.
supportsIntegrityEnhancementFacility
());
JDBC2Tests
.
closeDB
(
con
);
}
}
catch
(
SQLException
ex
)
catch
(
SQLException
ex
)
{
{
...
@@ -89,7 +119,6 @@ public class DatabaseMetaDataTest extends TestCase
...
@@ -89,7 +119,6 @@ public class DatabaseMetaDataTest extends TestCase
{
{
try
try
{
{
Connection
con
=
JDBC2Tests
.
openDB
();
DatabaseMetaData
dbmd
=
con
.
getMetaData
();
DatabaseMetaData
dbmd
=
con
.
getMetaData
();
assertNotNull
(
dbmd
);
assertNotNull
(
dbmd
);
...
@@ -98,7 +127,6 @@ public class DatabaseMetaDataTest extends TestCase
...
@@ -98,7 +127,6 @@ public class DatabaseMetaDataTest extends TestCase
assertTrue
(
dbmd
.
supportsFullOuterJoins
());
assertTrue
(
dbmd
.
supportsFullOuterJoins
());
assertTrue
(
dbmd
.
supportsLimitedOuterJoins
());
assertTrue
(
dbmd
.
supportsLimitedOuterJoins
());
JDBC2Tests
.
closeDB
(
con
);
}
}
catch
(
SQLException
ex
)
catch
(
SQLException
ex
)
{
{
...
@@ -110,7 +138,6 @@ public class DatabaseMetaDataTest extends TestCase
...
@@ -110,7 +138,6 @@ public class DatabaseMetaDataTest extends TestCase
{
{
try
try
{
{
Connection
con
=
JDBC2Tests
.
openDB
();
DatabaseMetaData
dbmd
=
con
.
getMetaData
();
DatabaseMetaData
dbmd
=
con
.
getMetaData
();
assertNotNull
(
dbmd
);
assertNotNull
(
dbmd
);
...
@@ -118,7 +145,6 @@ public class DatabaseMetaDataTest extends TestCase
...
@@ -118,7 +145,6 @@ public class DatabaseMetaDataTest extends TestCase
assertTrue
(!
dbmd
.
supportsPositionedDelete
());
assertTrue
(!
dbmd
.
supportsPositionedDelete
());
assertTrue
(!
dbmd
.
supportsPositionedUpdate
());
assertTrue
(!
dbmd
.
supportsPositionedUpdate
());
JDBC2Tests
.
closeDB
(
con
);
}
}
catch
(
SQLException
ex
)
catch
(
SQLException
ex
)
{
{
...
@@ -130,7 +156,6 @@ public class DatabaseMetaDataTest extends TestCase
...
@@ -130,7 +156,6 @@ public class DatabaseMetaDataTest extends TestCase
{
{
try
try
{
{
Connection
con
=
JDBC2Tests
.
openDB
();
DatabaseMetaData
dbmd
=
con
.
getMetaData
();
DatabaseMetaData
dbmd
=
con
.
getMetaData
();
assertNotNull
(
dbmd
);
assertNotNull
(
dbmd
);
...
@@ -151,7 +176,6 @@ public class DatabaseMetaDataTest extends TestCase
...
@@ -151,7 +176,6 @@ public class DatabaseMetaDataTest extends TestCase
assertTrue
(
dbmd
.
supportsNonNullableColumns
());
assertTrue
(
dbmd
.
supportsNonNullableColumns
());
JDBC2Tests
.
closeDB
(
con
);
}
}
catch
(
SQLException
ex
)
catch
(
SQLException
ex
)
{
{
...
@@ -163,7 +187,6 @@ public class DatabaseMetaDataTest extends TestCase
...
@@ -163,7 +187,6 @@ public class DatabaseMetaDataTest extends TestCase
{
{
try
try
{
{
Connection
con
=
JDBC2Tests
.
openDB
();
DatabaseMetaData
dbmd
=
con
.
getMetaData
();
DatabaseMetaData
dbmd
=
con
.
getMetaData
();
assertNotNull
(
dbmd
);
assertNotNull
(
dbmd
);
...
@@ -171,7 +194,6 @@ public class DatabaseMetaDataTest extends TestCase
...
@@ -171,7 +194,6 @@ public class DatabaseMetaDataTest extends TestCase
assertTrue
(!
dbmd
.
usesLocalFilePerTable
());
assertTrue
(!
dbmd
.
usesLocalFilePerTable
());
assertTrue
(!
dbmd
.
usesLocalFiles
());
assertTrue
(!
dbmd
.
usesLocalFiles
());
JDBC2Tests
.
closeDB
(
con
);
}
}
catch
(
SQLException
ex
)
catch
(
SQLException
ex
)
{
{
...
@@ -183,7 +205,6 @@ public class DatabaseMetaDataTest extends TestCase
...
@@ -183,7 +205,6 @@ public class DatabaseMetaDataTest extends TestCase
{
{
try
try
{
{
Connection
con
=
JDBC2Tests
.
openDB
();
DatabaseMetaData
dbmd
=
con
.
getMetaData
();
DatabaseMetaData
dbmd
=
con
.
getMetaData
();
assertNotNull
(
dbmd
);
assertNotNull
(
dbmd
);
...
@@ -200,7 +221,6 @@ public class DatabaseMetaDataTest extends TestCase
...
@@ -200,7 +221,6 @@ public class DatabaseMetaDataTest extends TestCase
assertTrue
(
dbmd
.
getIdentifierQuoteString
().
equals
(
"\""
));
assertTrue
(
dbmd
.
getIdentifierQuoteString
().
equals
(
"\""
));
JDBC2Tests
.
closeDB
(
con
);
}
}
catch
(
SQLException
ex
)
catch
(
SQLException
ex
)
{
{
...
@@ -212,7 +232,6 @@ public class DatabaseMetaDataTest extends TestCase
...
@@ -212,7 +232,6 @@ public class DatabaseMetaDataTest extends TestCase
{
{
try
try
{
{
Connection
con
=
JDBC2Tests
.
openDB
();
DatabaseMetaData
dbmd
=
con
.
getMetaData
();
DatabaseMetaData
dbmd
=
con
.
getMetaData
();
assertNotNull
(
dbmd
);
assertNotNull
(
dbmd
);
...
@@ -223,7 +242,6 @@ public class DatabaseMetaDataTest extends TestCase
...
@@ -223,7 +242,6 @@ public class DatabaseMetaDataTest extends TestCase
// we can't drop columns (yet)
// we can't drop columns (yet)
assertTrue
(!
dbmd
.
supportsAlterTableWithDropColumn
());
assertTrue
(!
dbmd
.
supportsAlterTableWithDropColumn
());
JDBC2Tests
.
closeDB
(
con
);
}
}
catch
(
SQLException
ex
)
catch
(
SQLException
ex
)
{
{
...
@@ -235,7 +253,6 @@ public class DatabaseMetaDataTest extends TestCase
...
@@ -235,7 +253,6 @@ public class DatabaseMetaDataTest extends TestCase
{
{
try
try
{
{
Connection
con
=
JDBC2Tests
.
openDB
();
DatabaseMetaData
dbmd
=
con
.
getMetaData
();
DatabaseMetaData
dbmd
=
con
.
getMetaData
();
assertNotNull
(
dbmd
);
assertNotNull
(
dbmd
);
...
@@ -254,7 +271,6 @@ public class DatabaseMetaDataTest extends TestCase
...
@@ -254,7 +271,6 @@ public class DatabaseMetaDataTest extends TestCase
assertTrue
(
dbmd
.
supportsGroupByUnrelated
());
assertTrue
(
dbmd
.
supportsGroupByUnrelated
());
assertTrue
(
dbmd
.
supportsGroupByBeyondSelect
());
// needs checking
assertTrue
(
dbmd
.
supportsGroupByBeyondSelect
());
// needs checking
JDBC2Tests
.
closeDB
(
con
);
}
}
catch
(
SQLException
ex
)
catch
(
SQLException
ex
)
{
{
...
@@ -266,7 +282,6 @@ public class DatabaseMetaDataTest extends TestCase
...
@@ -266,7 +282,6 @@ public class DatabaseMetaDataTest extends TestCase
{
{
try
try
{
{
Connection
con
=
JDBC2Tests
.
openDB
();
DatabaseMetaData
dbmd
=
con
.
getMetaData
();
DatabaseMetaData
dbmd
=
con
.
getMetaData
();
assertNotNull
(
dbmd
);
assertNotNull
(
dbmd
);
...
@@ -274,7 +289,6 @@ public class DatabaseMetaDataTest extends TestCase
...
@@ -274,7 +289,6 @@ public class DatabaseMetaDataTest extends TestCase
assertTrue
(
dbmd
.
getURL
().
equals
(
JDBC2Tests
.
getURL
()));
assertTrue
(
dbmd
.
getURL
().
equals
(
JDBC2Tests
.
getURL
()));
assertTrue
(
dbmd
.
getUserName
().
equals
(
JDBC2Tests
.
getUser
()));
assertTrue
(
dbmd
.
getUserName
().
equals
(
JDBC2Tests
.
getUser
()));
JDBC2Tests
.
closeDB
(
con
);
}
}
catch
(
SQLException
ex
)
catch
(
SQLException
ex
)
{
{
...
@@ -286,7 +300,6 @@ public class DatabaseMetaDataTest extends TestCase
...
@@ -286,7 +300,6 @@ public class DatabaseMetaDataTest extends TestCase
{
{
try
try
{
{
Connection
con
=
JDBC2Tests
.
openDB
();
assertTrue
(
con
instanceof
org
.
postgresql
.
Connection
);
assertTrue
(
con
instanceof
org
.
postgresql
.
Connection
);
org
.
postgresql
.
Connection
pc
=
(
org
.
postgresql
.
Connection
)
con
;
org
.
postgresql
.
Connection
pc
=
(
org
.
postgresql
.
Connection
)
con
;
...
@@ -297,7 +310,6 @@ public class DatabaseMetaDataTest extends TestCase
...
@@ -297,7 +310,6 @@ public class DatabaseMetaDataTest extends TestCase
assertTrue
(
dbmd
.
getDatabaseProductVersion
().
startsWith
(
Integer
.
toString
(
pc
.
this_driver
.
getMajorVersion
())
+
"."
+
Integer
.
toString
(
pc
.
this_driver
.
getMinorVersion
())));
assertTrue
(
dbmd
.
getDatabaseProductVersion
().
startsWith
(
Integer
.
toString
(
pc
.
this_driver
.
getMajorVersion
())
+
"."
+
Integer
.
toString
(
pc
.
this_driver
.
getMinorVersion
())));
assertTrue
(
dbmd
.
getDriverName
().
equals
(
"PostgreSQL Native Driver"
));
assertTrue
(
dbmd
.
getDriverName
().
equals
(
"PostgreSQL Native Driver"
));
JDBC2Tests
.
closeDB
(
con
);
}
}
catch
(
SQLException
ex
)
catch
(
SQLException
ex
)
{
{
...
@@ -309,7 +321,6 @@ public class DatabaseMetaDataTest extends TestCase
...
@@ -309,7 +321,6 @@ public class DatabaseMetaDataTest extends TestCase
{
{
try
try
{
{
Connection
con
=
JDBC2Tests
.
openDB
();
assertTrue
(
con
instanceof
org
.
postgresql
.
Connection
);
assertTrue
(
con
instanceof
org
.
postgresql
.
Connection
);
org
.
postgresql
.
Connection
pc
=
(
org
.
postgresql
.
Connection
)
con
;
org
.
postgresql
.
Connection
pc
=
(
org
.
postgresql
.
Connection
)
con
;
...
@@ -321,7 +332,6 @@ public class DatabaseMetaDataTest extends TestCase
...
@@ -321,7 +332,6 @@ public class DatabaseMetaDataTest extends TestCase
assertTrue
(
dbmd
.
getDriverMinorVersion
()
==
pc
.
this_driver
.
getMinorVersion
());
assertTrue
(
dbmd
.
getDriverMinorVersion
()
==
pc
.
this_driver
.
getMinorVersion
());
JDBC2Tests
.
closeDB
(
con
);
}
}
catch
(
SQLException
ex
)
catch
(
SQLException
ex
)
{
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment