Uploaded image for project: 'Derby'
  1. Derby
  2. DERBY-3852

J2EEDataSourceTest may ignore some failures

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Minor
    • Resolution: Fixed
    • 10.5.1.1
    • 10.5.3.1, 10.6.1.0
    • Test
    • None
    • Newcomer

    Description

      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);
      }

      Attachments

        1. assert.diff
          0.7 kB
          Knut Anders Hatlen

        Issue Links

          Activity

            People

              knutanders Knut Anders Hatlen
              knutanders Knut Anders Hatlen
              Votes:
              0 Vote for this issue
              Watchers:
              0 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: