Xpath 或 xquery 并测试命令

发布于 2024-08-31 19:29:29 字数 284 浏览 5 评论 0原文

使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

鹿港小镇 2024-09-07 19:29:29

使用(XQuery 或 XPath 2.0):

not(code[. > following-sibling::code])

Use (XQuery or XPath 2.0):

not(code[. > following-sibling::code])
空气里的味道 2024-09-07 19:29:29

其他两种方式:

empty(
  for $x at $p in code
  where ($x > code[$p + 1])
  return $x
)

但是

deep-equal(for $x in code order by $x return $x/data(.), code/data(.))

迪米特的回答似乎是最干净的。

Two other ways:

empty(
  for $x at $p in code
  where ($x > code[$p + 1])
  return $x
)

and

deep-equal(for $x in code order by $x return $x/data(.), code/data(.))

But Dimitre's answer seems the cleanest.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文