首页 > 其他 > 详细

[SoapUI] 在某个测试步骤下面增加Script Assertion,运用 messageExchange 获取response content

时间:2015-07-14 13:13:04      阅读:184      评论:0      收藏:0      [点我收藏+]
import com.eviware.soapui.support.GroovyUtils
import com.eviware.soapui.support.XmlHolder
import org.w3c.dom.Node
import org.apache.commons.lang.StringUtils

def groovyUtils = new GroovyUtils(context)
def xmlHolder =groovyUtils.getXmlHolder(messageExchange.getResponseContent())

String xPath = "//clients/client"
Node[] nodeArray = xmlHolder.getDomNodes(xPath)
int actualCount = nodeArray.length
int expectedCount = context.expand(‘${#Project#ClientCount}‘).toInteger()
log.info "Actual : nodeArray.length of  "+xPath+" : "+actualCount
log.info "Expected : nodeArray.length  is : "+expectedCount
assert actualCount==expectedCount

  

[SoapUI] 在某个测试步骤下面增加Script Assertion,运用 messageExchange 获取response content

原文:http://www.cnblogs.com/MasterMonkInTemple/p/4644950.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!