Groovy和变量类型的问题

时间:2011-07-13 15:53:31

标签: groovy soapui

我正在尝试获取一段Groovy代码(使用SOAPUI),但是遇到了问题。

这个代码的作用是在属性文件中读取,然后在SOAPUI中设置一些属性。我把它放在SOAPUI测试用例的Groovy脚本测试步骤中,每次运行时,我希望它从不同的文件名读取,所以我在测试用例中有两个额外的属性,cur_request_number和max_request_number。

此代码假设每次递增cur_request_number,并检查它是否到达max_request_number,如果是,则将cur_request_number设置回1.它有效,但只有max_request_number为9或更低。如果它是10或更高,当它达到9或10时,cur_request_number ++似乎将它递增到字符串值,例如,分号。

换句话说,它假设读取(在每个周期):

testprop1.txt
testprop2.txt
.
.

我在下面发布的代码实际上并没有读取textpropX.txt文件,只是打印出它所读取的文件名,因为我还在调试。

我是Groovy的新手,所以我有点卡住了。我已经尝试添加toInteger(),但后来我遇到了不同的问题。

def cur_request_number = testRunner.testCase.getPropertyValue("cur_request_number");
def max_request_number = testRunner.testCase.getPropertyValue("max_request_number");
log.info "INITIAL cur_request_number=[" + cur_request_number + "]"
log.info "INITIAL max_request_number=[" + max_request_number + "]"

cur_request_number++;

log.info "BUMPED cur_request_number=[" + cur_request_number + "]"

if (cur_request_number == max_request_number) {
    log.info "In the IF about to reset cur_request_number to 1";
    cur_request_number = "1";
}

// set the cur_request_number property (either the incremented one, or "1")
testRunner.testCase.setPropertyValue("cur_request_number", cur_request_number);

cur_request_filename = "E:/SOAPUI-PROPS/testprops" + cur_request_number.toString() +".txt";
log.info "READING FROM Request file [" + cur_request_filename + "]"

props = new java.util.Properties ()
file = new File("E:/SOAPUI-PROPS/testprops.txt")
if(!file.exists()) {
    log.info "No file found at E:/SOAPUI-PROPS/testprops.txt"
}
else {
    log.info "max_request_number=[" + max_request_number + "]"

    log.info "In the ELSE, cur_request_number=[" + cur_request_number + "]"
    //testRunner.testCase.setPropertyValue("cur_request_number", cur_request_number);
    log.info "Found E:/SOAPUI-PROPS/testprops.txt"
    fis = new FileInputStream (file)
    props.load (fis)
    requestid = props.getProperty ( "requestid" )
    log.info "requestid = [" + requestid + "]"
    dnstring = props.getProperty ( "dnstring" )
    log.info "dnstring= [" + dnstring + "]"
    testRunner.testCase.setPropertyValue("requestid", requestid);
    context.requestid = requestid;
    log.info "Finished setting 'requestid' property"
    testRunner.testCase.setPropertyValue("dnstring", dnstring);
    context.dnstring = dnstring;
    log.info "Finished setting 'dnstring' property"
} 

如果有人能告诉我我做错了什么,我真的很感激。

谢谢, 吉姆

1 个答案:

答案 0 :(得分:5)

尝试更改

def cur_request_number = testRunner.testCase.getPropertyValue("cur_request_number");
def max_request_number = testRunner.testCase.getPropertyValue("max_request_number");

int cur_request_number = Integer.parseInt( testRunner.testCase.getPropertyValue("cur_request_number") )
int max_request_number = Integer.parseInt( testRunner.testCase.getPropertyValue("max_request_number") )

我怀疑它正在将某个属性文件中的数字作为字符串

读取

As you can seegetPropertyValue返回String