要求:从文件夹中读取xml文件,并将文件内容传递给Soap请求。
问题我正在尝试使用groovy脚本读取保存在文件夹中的文件,但无法读取文件的内容。尝试打印xml文件的内容时,我得到Null指针异常。
def fileList = []
new File("C:\\Users\\Documents\\Groovy Scripts\\requests").eachFile
{ f ->
if (f.isFile()&& f.name.endsWith('.xml'))
{
def filename = f.name[0..-5]
fileList.add(filename)
log.info filename
}
}
if (fileList.size() <1)
{
testRunner.fail("No request files found")
}
context.put('fileList', fileList)
def f = new File("C:\\Users\\Documents\\Groovy Scripts\\requests\\${context.fileList}.last().text")
log.info f
根据评论更新,添加问题。
我的测试用例包含3个步骤。第1步:从文件夹中读取xml文件。第2步:使用xml文件内容作为soap请求输入。步骤3:将输出文件夹中步骤2的响应保存为xml。
答案 0 :(得分:1)
据了解,您需要执行数据驱动的测试,其中请求保存在目录中。
以前,我们提供了一种方法here来循环数据并保存响应。
您现在可能需要的所有更改都是在第一步 - 读取目录,并循环访问您的文件并将文件内容设置为请求并运行soap请求步骤。
第1步的Groovy脚本:
import groovy.io.FileType
//change your input directory name below
def dir = new File('path/to/input/dir')
dir.eachFile (FileType.FILES) { file ->
//Get the step
def step = context.testCase.getTestStepAt(1)
//Set the file content as test step request
step.testRequest.requestContent = file.text
log.info "New request is set for step2 : ${request}"
//Run the step2
step.run(testRunner, context)
}
//By now all the orders got executed, now need to exit the step without additionally running step2
//So, jump to step2, index is 2
testRunner.gotoStep(2)
您可以继续使用上面提供的链接中提到的其余步骤。