我有一个要求,我的文件系统中有一个xml,我必须从该xml中读取标记值并填充在我的soap请求中。我完全不知道我该怎么做。
我写了一个groovy脚本来读取文件:
File file = new File("C:/Users/Desktop/abc.txt")
fileContent = file.getText()
现在我想从源xml中读取标记值并填充在soap请求xml标记中。
我的样本xml是
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" >
<soapenv:Header/>
<soapenv:Body>
<dto:dto>
<mon:abc>
<mon:HDR>
<mon:MESSAGE_ID>abcd</mon:MESSAGE_ID>
<mon:MSG_TIMESTAMP>2015-10-12T11:24:35-06:00</mon:MSG_TIMESTAMP>
</mon:HDR>
</mon:abc>
</dto:dto>
</soapenv:Body>
</soapenv:Envelope>
我必须从我的示例xml中读取message_id到我的soap请求消息id中。有人可以指导我该怎么做?
答案 0 :(得分:1)
以下是从给定文件中提取消息ID的groovy脚本
请注意,您提供的示例没有正确的数据,缺少名称空间。
import com.eviware.soapui.support.XmlHolder
//change the file path here
def xml = new File('/absolute/file/path').text
def holder = new XmlHolder(xml)
def messageId = holder.getNodeValue('//*:MESSAGE_ID')
assert messageId, "Message Id is empty or null"
log.info "MessageId is : ${messageId}"
如果您需要在同一测试用例的其他步骤中使用messageId
,请使用以下附加语句将其存储在测试用例级别属性中:
context.testCase.setPropertyValue('MESSAGE_ID', messageId)
稍后您可以使用其他步骤(groovy除外)作为${#TestCase#MESSAGE_ID}
在与context.expand('${#TestCase#MESSAGE_ID}')