aboutsummaryrefslogtreecommitdiff
path: root/bigtop-test-framework
diff options
context:
space:
mode:
authorDasha Boudnik <dasha@wandisco.com>2015-01-14 15:48:18 -0800
committerKonstantin Boudnik <cos@apache.org>2015-01-14 15:48:18 -0800
commit7f3a3dc8a53018090182cfcd09809665377acb12 (patch)
tree7f26627c57fe4d85d44879a006de153832e9861f /bigtop-test-framework
parent5fe581b22635267d8e3bf93f55fd079bc9368497 (diff)
BIGTOP-1593. Fix types in FailureVars
Signed-off-by: Konstantin Boudnik <cos@apache.org>
Diffstat (limited to 'bigtop-test-framework')
-rw-r--r--bigtop-test-framework/src/main/groovy/org/apache/bigtop/itest/failures/FailureExecutor.groovy6
-rw-r--r--bigtop-test-framework/src/main/groovy/org/apache/bigtop/itest/failures/FailureVars.groovy56
2 files changed, 31 insertions, 31 deletions
diff --git a/bigtop-test-framework/src/main/groovy/org/apache/bigtop/itest/failures/FailureExecutor.groovy b/bigtop-test-framework/src/main/groovy/org/apache/bigtop/itest/failures/FailureExecutor.groovy
index 79212b24..daad092b 100644
--- a/bigtop-test-framework/src/main/groovy/org/apache/bigtop/itest/failures/FailureExecutor.groovy
+++ b/bigtop-test-framework/src/main/groovy/org/apache/bigtop/itest/failures/FailureExecutor.groovy
@@ -15,9 +15,9 @@ import org.apache.bigtop.itest.shell.Shell
*/
public class FailureExecutor implements Runnable {
- private String restart = FailureVars.instance.getServiceRestart();
- private String kill = FailureVars.instance.getServiceKill();
- private String shutdown = FailureVars.instance.getNetworkShutdown();
+ private boolean restart = FailureVars.instance.getServiceRestart();
+ private boolean kill = FailureVars.instance.getServiceKill();
+ private boolean shutdown = FailureVars.instance.getNetworkShutdown();
private String testHost = FailureVars.instance.getTestHost();
private String testRemoteHost = FailureVars.instance.getTestRemoteHost();
private long failureDelay = FailureVars.instance.getFailureDelay();
diff --git a/bigtop-test-framework/src/main/groovy/org/apache/bigtop/itest/failures/FailureVars.groovy b/bigtop-test-framework/src/main/groovy/org/apache/bigtop/itest/failures/FailureVars.groovy
index 3b3f6af9..68513377 100644
--- a/bigtop-test-framework/src/main/groovy/org/apache/bigtop/itest/failures/FailureVars.groovy
+++ b/bigtop-test-framework/src/main/groovy/org/apache/bigtop/itest/failures/FailureVars.groovy
@@ -30,14 +30,14 @@ public class FailureVars {
private String propertyFile = System.getProperty("failurePropertiesFile");
private String testHost = "localhost";
private String testRemoteHost = "apache.org";
- private String runFailures = "false";
- private String serviceRestart = "false";
- private String serviceKill = "false";
- private String networkShutdown = "false";
+ private boolean runFailures = false;
+ private boolean serviceRestart = false;
+ private boolean serviceKill = false;
+ private boolean networkShutdown = false;
private String service = "crond";
- private String failureDelay = "0";
- private String startDelay = "0";
- private String killDuration = "0";
+ private long failureDelay = 0;
+ private long startDelay = 0;
+ private long killDuration = 0;
{
switch (OS.linux_flavor) {
@@ -73,22 +73,22 @@ public class FailureVars {
is.close();
testHost = props.getProperty("testhost");
testRemoteHost = props.getProperty("testremotehost");
- runFailures = props.getProperty("runall");
- serviceRestart = props.getProperty("servicerestart");
- serviceKill = props.getProperty("servicekill");
- networkShutdown = props.getProperty("networkshutdown");
+ runFailures = Boolean.parseBoolean(props.getProperty("runall"));
+ serviceRestart = Boolean.parseBoolean(props.getProperty("servicerestart"));
+ serviceKill = Boolean.parseBoolean(props.getPropery("servicekill"));
+ networkShutdown = Boolean.parseBoolean(props.getProperty("networkshutdown"));
service = props.getProperty("service");
- failureDelay = props.getProperty("failuredelay");
- startDelay = props.getProperty("startdelay");
- killDuration = props.getProperty("killduration");
+ failureDelay = Long.parseLong(props.getProperty("failuredelay"));
+ startDelay = Long.parseLong(props.getProperty("startdelay"));
+ killDuration = Long.parseLong(props.getProperty("killduration"));
}
catch(IOException ioe) {
System.out.println(ioe.getMessage());
}
}
- public void setKillDuration(String killDuration) {
- this.killDuration = Long.toString(killDuration);
+ public void setKillDuration(long killDuration) {
+ this.killDuration = killDuration;
}
public void setTestHost(String testHost) {
@@ -99,24 +99,24 @@ public class FailureVars {
this.testRemoteHost = testRemoteHost;
}
- public void setRunAll(String runFailures) {
+ public void setRunAll(boolean runFailures) {
this.runFailures = runFailures;
}
- public void setRestart(String serviceRestart) {
+ public void setRestart(boolean serviceRestart) {
this.serviceRestart = serviceRestart;
}
- public void setKill(String serviceKill) {
+ public void setKill(boolean serviceKill) {
this.serviceKill = serviceKill;
}
- public void setShutdown(String networkShutdown) {
+ public void setShutdown(boolean networkShutdown) {
this.networkShutdown = networkShutdown;
}
public void setFailureDelay(long failureDelay) {
- this.failureDelay = Long.toString(failureDelay);
+ this.failureDelay = failureDelay;
}
public void setService(String service) {
@@ -124,7 +124,7 @@ public class FailureVars {
}
public long getKillDuration() {
- return Long.parseLong(killDuration)*1000;
+ return killDuration*1000;
}
public String getTestHost() {
return testHost;
@@ -139,28 +139,28 @@ public class FailureVars {
}
public long getStartDelay() {
- return Long.parseLong(startDelay)*1000;
+ return startDelay*1000;
}
- public String getRunFailures() {
+ public boolean getRunFailures() {
return runFailures;
}
- public String getServiceRestart() {
+ public boolean getServiceRestart() {
return serviceRestart;
}
- public String getServiceKill() {
+ public boolean getServiceKill() {
return serviceKill;
}
- public String getNetworkShutdown() {
+ public boolean getNetworkShutdown() {
return networkShutdown;
}
public long getFailureDelay() {
- return Long.parseLong(failureDelay)*1000;
+ return failureDelay*1000;
}
int getSleepTime() {