0

我正在尝试将 smartrics-RestFixture-3.0-bin.zip 用于POST请求,但由于某种原因它失败了。看起来像是服务问题本身,但当我正在学习 Fitnees 时,不确定测试是否有任何问题。

任何人都可以分享一些细节,或者使用演示 REST API 使用 RestFixture/Wiki 格式的 POST 休息请求示例 - http://www.thomas-bayer.com/sqlrest/CUSTOMER/

我的基于 wiki 的 TC 如下所示 - (我正在尝试添加 ID = 20 的客户数据)

'''Trying to add customer 20 entry'''
!| smartrics.rest.fitnesse.fixture.FitRestFixture | http://www.thomas-bayer.com/sqlrest/CUSTOMER/ |
| setBody | <CUSTOMER xmlns:xlink="http://www.w3.org/1999/xlink"><ID>20</ID><FIRSTNAME>Anne1</FIRSTNAME><LASTNAME>Miller1</LASTNAME><STREET>201 Upland Pl.</STREET><CITY>Lyon1</CITY></CUSTOMER> |
| POST    | /20| 200 | | |

我得到以下错误:

<html><head><title>Apache Tomcat/7.0.26 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 500 - </h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u></u></p><p><b>description</b> <u>The server encountered an internal error () that prevented it from fulfilling this request.</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/7.0.26</h3></body></html>

请建议。谢谢!

更新日期:2015 年 4 月 6 日

我试图使用不正确的 POST 方法添加新的 CUSTOMER 条目,我应该使用 PUT 方法。今天当我尝试使用 PUT 方法添加新的客户条目时,我得到了同样的错误:(..

看起来只是 WEB 服务的问题。

4

2 回答 2

1

服务是否正常工作,如果您以其他方式将相同的正文发送给它,您会得到不同的响应吗?(当我将您的正文发送到相同的网址时,我会收到相同的错误。)

该错误似乎表明您正在调用的服务已损坏。有时这也可能是错误使用的结果。

就目前而言,您的问题似乎与 FitNesse 的关系不大,而与您正在使用的服务有关。

于 2015-04-03T10:15:54.277 回答
1

在我将 setHeaders 部分添加到我的 wiki 之前,我遇到了同样的错误。在 setBody 之后试试这个:

| setHeaders|内容类型:应用程序/xml|

希望这可以帮助。

于 2015-05-27T07:19:48.370 回答