我正在使用JMeter来测试web服务(SOAP),我正在测试的方法接受类型为file的参数。在SOAP UI中,这可以通过上传附件并为其提供ID来完成。
在soap请求中,像这样的东西将被放置:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ws="http://zk.payment.dkv.be/ws">
<soapenv:Header/>
<soapenv:Body>
<ws:wsMethod>
<file>cid:attachementID</file>
</ws:wsMethod>
</soapenv:Body>
</soapenv:Envelope>
我正在使用Jmeter 2.9,似乎这是不可能的,有人有一个解决方案吗?
干杯!
我建议创建启用附件处理的自定义Soap Sampler。解决方案(源,目标文件夹中的内置JAR)在github下:https://github.com/spinning10/JMeterSoapSampler
也请查看我们的测试博客:http://driven-by-tests.blogspot.be/
构建的jar(最新的,在Java 1.7下编译的)位于:https://github.com/spinning10/JMeterSoapSampler/blob/master/target/CustomSoapSampler-1.3.jar
如果您安装了"Plugin Manager",您也可以从以下站点下载此示例程序:http://jmeter-plugins.org/
所以在编写JMeter时没有解决上述问题的方法。好吧,不是通过直接发送附件,但有一个解决方案!
因为在最后都是关于标签之间的内容:
<file>"what is here??"</file>
这是关于上面标签之间的所有内容,这是对您的服务唯一重要的事情。然后变通方法:
<file><![CDATA[${yourContentJMeterVariableName}]]></file>
"yourContentJMeterVariableName"基本上是一个Jmeter变量,它必须由我们说的Beanshell预处理器(忽略所有导入)填充,如下所示:
try {
String path = "pathToYourContentFileOrAttachement";
String content = new Scanner(new File(path)).useDelimiter("\Z").next();
byte[] encoded = Base64.encodeBase64(content.getBytes());
vars.put("yourContentJMeterVariableName", new String(encoded));
} catch (FileNotFoundException e) {
log.error(e);
}
为了这篇文章的目的,我忽略了上面的导入,但不太明显的是:
import java.util.Scanner;
import org.apache.commons.codec.binary.Base64;
它们应该已经包含在jmeter的库中。就是这样!
我已经使用了Fico提到的类似解决方案,试试下面的代码。
File file = new File("C:\103861\A1940599.zip");
InputStream is = new FileInputStream(file);
long length = file.length();
if (length > Integer.MAX_VALUE) {
// File is too large
}
byte[] bytes = new byte[(int)length];
int offset = 0;
int numRead = 0;
while (offset < bytes.length && (numRead=is.read(bytes, offset, bytes.length-offset)) >= 0) {
offset += numRead;
}
if (offset < bytes.length) {
throw new IOException("Could not completely read file "+file.getName());
}
is.close();
String Attachment=Base64.encodeBase64String(bytes);
vars.put("SoapAttachment",Attachment);
在XML中使用SoapAttachment ${SoapAttachment}
注意-你可能不得不删除一些导入,因为我正在做校验和计算,所以我需要他们。