如何在SoapUI中获得响应附件的大小?



我正在通过SoapUI(不是Pro)中WSDL定义的接口执行一系列文件上传和下载。用于验证这些附件的内置断言是不够的。我发现了一些Groovy代码,它允许我获取上传附件的大小。

import com.eviware.soapui.impl.wsdl.support.RequestFileAttachment
def uploadsize = testRunner.testCase.getTestStepByName("Upload File (200KB)").testRequest.getAttachmentAt(0).getSize()

我正在寻找可比较的代码来获取下载附件的大小。HTTP报头指定内容类型为"multipart/related"和UTF-8。附件本身是"Content-Type: application/octet-stream n Content-Transfer-Encoding: binary"

我试过下面的代码片段,但它没有给我附件的大小,只是响应的大小。

def downloadsize = testRunner.testCase.getTestStepByName("Download File (200KB) (Logged)").testRequest.response.contentAsString.size()

由于SoapUI Groovy类的文档非常复杂,所以我使用自省来找出我正在使用的是哪种类:

log.info testRunner.testCase.getTestStepByName("Download File (200KB) (Logged)").testRequest.class.name
log.info testRunner.testCase.getTestStepByName("Download File (200KB) (Logged)").testRequest.response.class.name

收益率:

com.eviware.soapui.impl.wsdl.teststeps.WsdlTestRequest
com.eviware.soapui.impl.wsdl.submit.transports.http.support.attachments.WsdlMimeMessageResponse

现在不需要猜测要查找哪个类了

附件大小的结果代码为:

def downloadsize = testRunner.testCase.getTestStepByName("Download File (200KB) (Logged)").testRequest.response.getAttachments()[0].getSize()

相关内容

  • 没有找到相关文章

最新更新