public abstract class BaseBugReport
extends java.lang.Object
MySQL AB, 2008 Sun Microsystems, 2009 Oracle Corporation really appreciates repeatable testcases when reporting bugs, so we're giving you this class to make that job a bit easier (and standarized).
To create a testcase, create a class that inherits from this class (com.mysql.cj.jdbc.util.BaseBugReport), and override the methods 'setUp', 'tearDown' and 'runTest'.
In the 'setUp' method, create code that creates your tables, and populates them with any data needed to demonstrate the bug.
In the 'runTest' method, create code that demonstrates the bug using the tables and data you created in the 'setUp' method.
In the 'tearDown' method, drop any tables you created in the 'setUp' method.
In any of the above three methods, you should use one of the variants of the 'getConnection' method to create a JDBC connection to MySQL, which will use the default JDBC URL of 'jdbc:mysql:///test'.
If you need to use a JDBC URL that is different than 'jdbc:mysql:///test', then override the method 'getUrl' as well.
Use the 'assertTrue' methods to create conditions that must be met in your testcase demonstrating the behavior you are expecting (vs. the behavior you are observing, which is why you are most likely filing a bug report).
Finally, create a 'main' method that creates a new instance of your testcase, and calls the 'run' method:
public static void main(String[] args) throws Exception { new MyBugReport().run(); }
When filing a potential bug with MySQL Connector/J at http://bugs.mysql.com/ or on the bugs mailing list, please include the code that you have just written using this class.
Constructor and Description |
---|
BaseBugReport()
Constructor for this BugReport, sets up JDBC driver used to create
connections.
|
Modifier and Type | Method and Description |
---|---|
protected void |
assertTrue(boolean condition)
Throws an exception if condition evalutates to 'false'.
|
protected void |
assertTrue(java.lang.String message,
boolean condition)
Throws an exception with the given message if condition evalutates to
'false'.
|
java.sql.Connection |
getConnection()
Provides a connection to the JDBC URL specified in getUrl().
|
java.sql.Connection |
getConnection(java.lang.String url)
Returns a connection using the given URL.
|
java.sql.Connection |
getConnection(java.lang.String url,
java.util.Properties props)
Returns a connection using the given URL and properties.
|
java.sql.Connection |
getNewConnection()
Use this if you need to get a new connection for your bug report (i.e.
|
java.lang.String |
getUrl()
Provides the JDBC URL to use to demonstrate the bug.
|
void |
run()
Runs the testcase by calling the setUp(), runTest() and tearDown()
methods.
|
abstract void |
runTest()
Override this method with code that demonstrates the bug.
|
abstract void |
setUp()
Override this method with code that sets up the testcase for
demonstrating your bug (creating tables, populating data, etc).
|
abstract void |
tearDown()
Override this method with code that cleans up anything created in the
setUp() method.
|
public BaseBugReport()
public abstract void setUp() throws java.lang.Exception
java.lang.Exception
- if an error occurs during the 'setUp' phase.public abstract void tearDown() throws java.lang.Exception
java.lang.Exception
- if an error occurs during the 'tearDown' phase.public abstract void runTest() throws java.lang.Exception
java.lang.Exception
- if an error occurs during your test run.public final void run() throws java.lang.Exception
java.lang.Exception
- if an error occurs in any of the aforementioned methods.protected final void assertTrue(java.lang.String message, boolean condition) throws java.lang.Exception
message
- the message to use in the exceptioncondition
- the condition to test forjava.lang.Exception
- if !conditionprotected final void assertTrue(boolean condition) throws java.lang.Exception
condition
- the condition to test forjava.lang.Exception
- if !conditionpublic java.lang.String getUrl()
public final java.sql.Connection getConnection() throws java.sql.SQLException
java.sql.SQLException
- if an error is caused while creating the connection.public final java.sql.Connection getNewConnection() throws java.sql.SQLException
java.sql.SQLException
- if an error is caused while creating the connection.public final java.sql.Connection getConnection(java.lang.String url) throws java.sql.SQLException
url
- the JDBC URL to usejava.sql.SQLException
- if an error occurs getting the connection.public final java.sql.Connection getConnection(java.lang.String url, java.util.Properties props) throws java.sql.SQLException
url
- the JDBC URL to useprops
- the JDBC properties to usejava.sql.SQLException
- if an error occurs getting the connection.