利用groovy脚本获取soapui中请求和响应的值

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了利用groovy脚本获取soapui中请求和响应的值相关的知识,希望对你有一定的参考价值。

参考技术A 例如如下数据,calendar_id是需要根据返回值动态获取的,此时需要通过获得数组中的calendar_id
"calendar":
[
"calendar_id":"1705","showtime":"1288927800","endshowtime":"1288931400","allDay":false,
"calendar_id":"1706","showtime":"1288933200","endshowtime":"1288936800","allDay":false,
"calendar_id":"1709","showtime":"1288935600","endshowtime":"1288938900","allDay":false
]


在SoapUI中可以通过groovy脚本实现提取json数组数据,提取到数据后就可以遍历访问列表中的每条新闻正文了
1.新建一个REST请求步骤,获取接口返回的数据
2.新建一个DataSource步骤,选择Groovy方式
3.添加一个名为cal_id的Properties
4.groovy编辑框中输入实现代码

[java] view plain copy
import groovy.json.JsonSlurper

def xresponse = testRunner.testCase.testSteps["getCalendarListByCoid"].testRequest.response.contentAsString
def slurper = new JsonSlurper()
def re = slurper.parseText(xresponse)
def num=re.calendar.size()
def i = testRunner.testCase.testSteps["DataSource"].currentRow
if(i<num)

result["cal_id"]=String.valueOf(re.calendar_id.id[i])


5.新建一个Property Transfer步骤,将DataSource的cal_id传递给当前testCase的变量
6.新建 一个REST请求步骤,将得到的cal_id去请求另一个接口
7.新建一个DataSource Loop步骤,使DataSource与Property Transfer步骤循环,这样就可以遍历数组中的每个数据了

[reply]tz0705010216[/reply]
你好
以博文中的json为例,新增的groovy步骤则如下:
def xresponse = testRunner.testCase.testSteps["getCalendarListByCoid"].testRequest.response.contentAsString
def slurper = new JsonSlurper()
def re = slurper.parseText(xresponse)
def id = re.calendar.calendar_id[i] //i为json数组中的第i个子json对象
若为在脚本断言处添加groovy断言,则如下:
def xresponse = messageExchange.modelItem.testCase.testSteps["getCalendarListByCoid"].testRequest.response.contentAsString
def slurper = new JsonSlurper()
def result = slurper.parseText(xresponse)
def id = re.calendar.calendar_id[i] //i为json数组中的第i个子json对象

以上是关于利用groovy脚本获取soapui中请求和响应的值的主要内容,如果未能解决你的问题,请参考以下文章

SOAPUI中的Groovy脚本,用于在Soap请求中插入新标记

soapui-groovy脚本中文乱码及符号乱码响应乱码解决方案

soapui中的groovy脚本怎么写

soapUI groovy脚本groovy.lang.MissingMethodException

soapui-使用groovy脚本执行用例请求

SoapUI NG Pro v1.9发布,Groovy功能消除脚本困扰