You are viewing a plain text version of this content. The canonical link for it is here.
Posted to derby-dev@db.apache.org by "Bryan Pendleton (JIRA)" <ji...@apache.org> on 2010/01/31 20:53:34 UTC

[jira] Commented: (DERBY-3852) J2EEDataSourceTest may ignore some failures

    [ https://issues.apache.org/jira/browse/DERBY-3852?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12806861#action_12806861 ] 

Bryan Pendleton commented on DERBY-3852:
----------------------------------------

It looks like this problem was fixed as part of the fix for DERBY-3853, by revision 764217. I think we can close this one.

> J2EEDataSourceTest may ignore some failures
> -------------------------------------------
>
>                 Key: DERBY-3852
>                 URL: https://issues.apache.org/jira/browse/DERBY-3852
>             Project: Derby
>          Issue Type: Bug
>          Components: Test
>    Affects Versions: 10.5.1.1
>            Reporter: Knut Anders Hatlen
>            Priority: Minor
>
> I noticed that the method testConnectionErrorEvent() in J2EEDataSourceTest had many occurrences of code that was structured like this:
>   try {
>     // do something with a connection
>   } catch (SQLException e) {
>     assertSQLState("...", e);
>   }
> This code will only fail if an unexpected exception is thrown, not if the code in the try block fails to throw any exception at all.
> It may be that we can fix this by adding a call to fail() at the end of each try block. It may also be the case that the code is written like this because it is expected to throw exception with the embedded driver and succeed with the client driver (or the other way around). If the latter is the case, this should be made explicit, for instance by writing it like this:
>   try {
>     // do something with a connection
>     assertFalse(usingEmbedded(), "should have failed with the embedded driver");
>   } catch (SQLException e) {
>     if (!usingEmbedded()) {
>       throw e;
>     }
>     assertSQLState("...", e);
>   }

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.