Merge pull request #996 from Megala21/test_case_fixes

Increasing the timeout in test cases
merge-requests/1/head
Ayyoob Hamza 8 years ago committed by GitHub
commit 0710e92640

@ -102,7 +102,8 @@ public class CarbonServerManagerExtension {
} }
}); });
ClientConnectionUtil.waitForPort(defaultHttpPort + this.portOffset, 300000L, false, (String)this.automationContext.getInstance().getHosts().get("default")); ClientConnectionUtil.waitForPort(defaultHttpPort + this.portOffset, DEFAULT_START_STOP_WAIT_MS, false, (String)this
.automationContext.getInstance().getHosts().get("default"));
long time = System.currentTimeMillis() + 60000L; long time = System.currentTimeMillis() + 60000L;
while(true) { while(true) {

@ -58,9 +58,10 @@ public class MobileDeviceManagementWithNoDevices extends TestBase {
while (!checkScopes(Constants.APIApplicationRegistration.PERMISSION_LIST)) { while (!checkScopes(Constants.APIApplicationRegistration.PERMISSION_LIST)) {
TimeUnit.SECONDS.sleep(5); TimeUnit.SECONDS.sleep(5);
long WAIT_TIME = 30000; long WAIT_TIME = 40000;
if (System.currentTimeMillis() - startTime > WAIT_TIME) { if (System.currentTimeMillis() - startTime > WAIT_TIME) {
Assert.fail("Required APIs are not deployed after waiting for " + WAIT_TIME + " time-out has happened"); Assert.fail("Required APIs are not deployed after waiting for " + WAIT_TIME + " ms time-out has "
+ "happened");
} }
} }
} }

Loading…
Cancel
Save