Xpath 或 xquery 并测试命令
使用 SoapUI(顺便说一下,WS 的一个很棒的工具),我得到了以下 xml 结果:
<code>c</code>
<code>b</code>
<code>a</code>
对于上面的示例,我想测试代码值是否为 asc 顺序。当然,对于这个示例,测试将像例外一样失败。
任何使用 xquery 或 xpath 的解决方案(如果需要,我可以在测试中使用 groovy)
提前致谢。
Using SoapUI (great tool for WS by the way), I have the following xml result :
<code>c</code>
<code>b</code>
<code>a</code>
For this sample above, i would like to test the code value are order asc. Of course, for this sample the test will fail like excepted.
Any solution with xquery or xpath (i can use groovy inside the test if necessary)
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用(XQuery 或 XPath 2.0):
Use (XQuery or XPath 2.0):
其他两种方式:
但是
迪米特的回答似乎是最干净的。
Two other ways:
and
But Dimitre's answer seems the cleanest.