我使用tsung测试web应用程序。请求时,服务器以xml响应。
我想做什么:如果发生错误,请在请求中使用tsung match标记。
如果发生错误,则xml响应如下:
<?xml version="1.0" encoding="UTF-8" ?>
<toto:root xmlns:toto="toto_url" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<toto:header>
<toto:trace-id>Testing</toto:trace-id>
<toto:timestamp>1420441279107</toto:timestamp>
<toto:command>MyServiceName</toto:command>
<toto:version>2.4</toto:version>
<toto:operation-id/>
<toto:calling-user>Tester</toto:calling-user>
<toto:calling-application>Tester</toto:calling-application>
<toto:calling-channel/>
<toto:locale-code>en</toto:locale-code>
<toto:country-code>EN</toto:country-code>
<toto:error>
<toto:applicative>
<toto:code>002</toto:code>
<toto:message>No record found</toto:message>
</toto:applicative>
</toto:error>
</toto:header>
<app:data xmlns:app="url_toto_service">
<app:totoNullPayload>
<app:result>OK</app:result>
</app:totoNullPayload>
</app:data>
我需要为错误代码值002和其他错误代码值登录match.log特定名称。
到目前为止,我有这个工作。当我在响应中获得值002时,它会记录匹配日志。问题是它匹配002值,即使它不在标签内。因此,它有时会匹配保存此值的常规xml响应。 002 008我的问题是如何匹配错误值以及它在标记内的事实?
tsung请求部分是:
<request subst="true">
<match name="Norecord" do="log" when="match" skip_headers="http" subst="true">002</match>
<match name="Request Error" do="log" when="match" skip_headers="http" subst="true">008</match>
<http url="/myApp/XmlHttpInbound" method="POST" version="1.1"
content_type="application/xml"
contents_from_file="/tmp/query.xml">
</http>
答案 0 :(得分:0)
更新:
Tsung测试计划指定为xml文件,因此您应该转义您希望作为响应的xml符号。要匹配标签内的002和008错误代码,您可以使用:
<request subst="true">
<match do="log" when="match" skip_headers="http" subst="true"><toto:code>002</toto:code></match>
<match do="log" when="match" skip_headers="http" subst="true"><toto:code>008</toto:code></match>
<http url="/myApp/XmlHttpInbound" method="POST" version="1.1"
content_type="application/xml"
contents_from_file="/tmp/query.xml">
</http>
</request>