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 "Myrna van Lunteren (JIRA)" <ji...@apache.org> on 2009/09/15 01:13:58 UTC

[jira] Resolved: (DERBY-4347) Provide a property to increase network server start timeout for JUnit tests

     [ https://issues.apache.org/jira/browse/DERBY-4347?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Myrna van Lunteren resolved DERBY-4347.
---------------------------------------

       Resolution: Fixed
    Fix Version/s: 10.6.0.0
                   10.5.3.1

backported 814815 from trunk to 10.5 with revision 814906.
I also added a section to http://wiki.apache.org/db-derby/DerbyJUnitTesting

> Provide a property to increase network server start  timeout  for JUnit tests
> -----------------------------------------------------------------------------
>
>                 Key: DERBY-4347
>                 URL: https://issues.apache.org/jira/browse/DERBY-4347
>             Project: Derby
>          Issue Type: Improvement
>          Components: Test
>    Affects Versions: 10.5.3.0, 10.6.0.0
>            Reporter: Kathey Marsden
>            Assignee: Myrna van Lunteren
>            Priority: Minor
>             Fix For: 10.5.3.1, 10.6.0.0
>
>         Attachments: DERBY-4347.diff, DERBY-4347.diffv2
>
>
>  Sometimes when running JUnit tests with jvm options that are known to slow things down significantly network server start timeouts can occur e.g.
> SecureServerTest( Opened = false, Authenticated= false, CustomDerbyProperties= null, WildCardHost= null )junit.framework.AssertionFailedError: Timed out waiting for network server to start:Spawned SpawnedNetworkServer exitCode=143
> 		 at org.apache.derbyTesting.junit.NetworkServerTestSetup.setUp(NetworkServerTestSetup.java:203)
> 		 at junit.extensions.TestSetup$1.protect(TestSetup.java:18)
> 		 at junit.extensions.TestSetup.run(TestSetup.java:23)
> 		 at org.apache.derbyTesting.junit.BaseTestSetup.run(BaseTestSetup.java:57)
> 		 at junit.extensions.TestDecorator.basicRun(TestDecorator.java:22)
> 		 at junit.extensions.TestSetup$1.protect(TestSetup.java:19)
> 		 at junit.extensions.TestSetup.run(TestSetup.java:23)
> 		 at junit.extensions.TestDecorator.basicRun(TestDecorator.java:22)
> 		 at junit.extensions.TestSetup$1.protect(TestSetup.java:19)
> 		 at junit.extensions.TestSetup.run(TestSetup.java:23)
> 		 at junit.extensions.TestDecorator.basicRun(TestDecorator.java:22)
> 		 at junit.extensions.TestSetup$1.protect(TestSetup.java:19)
> 		 at junit.extensions.TestSetup.run(TestSetup.java:23)
> The current wait time is 40 seconds and is set in org.apache.derbyTesting.junit.NetworkServerTestSetup
>  
> /** Setting maximum wait time to 40 seconds.   On some platforms
>      * it may take this long to start the server.  Increasing the wait
>      *  time should not adversely affect those
>      *  systems with fast port turnaround as the actual code loops for 
>      *  SLEEP_TIME intervals, so should never see WAIT_TIME.
>      */
>     private static final long WAIT_TIME = 40000;
>     
> It would be nice to have system property (maybe derby.tests.networkServerStartTimeout=<ms>)  to allow this to be configurable in environments where we expect the start to take longer.
> I am not sure if there are other timeouts in the tests for replication etc or if they all use this same setting.

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