frisby.js .post() - 在正文中发送xml时出现问题

时间:2016-08-11 20:15:12

标签: node.js frisby.js inrule

我试图用frisby.js测试一些API。我通过.post()方法发送一个xml块时遇到了麻烦。我可以在Postman中做到这一点。

这是我的代码:

var xml_body = envSetup.ENV_DATA.inrule.xml_post_kia1;

frisby.create('InRule 02 Verify XML Post')
  .addHeaders({
    'Accept': 'application/xml',
    'Authorization': 'Basic <some internal token>',
    'Content-Length': xml_body.length,
    'Content-Type': 'application/xml'
  })
  .post(envSetup.URL + '/' + resource + '?action=basic', xml_body)
  .inspectRequest()

  .inspectBody()
  .expectStatus(200)
  .expectHeaderContains('Content-Type', 'application/xml')

.toss(); // InRule 02

这是输出:

$ jasmine-node --color --verbose --config ENV inrule spec/inrule_spec.js
{ json: false,
  uri: 'http://dev.<company_api>/api/rules?action=basic',
  body: null,
  method: 'POST',
  headers:
   { accept: 'application/xml',
     authorization: 'Basic <some internal token>',
     'content-length': '787',
     'content-type': 'application/xml' },
  inspectOnFailure: false,
  baseUri: '',
  timeout: 5000 }
<RuleResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://<company_api>/resources/rules"><EntityData i:nil="true" /><Error>Unhandled Exception: Rules controller caught Exception: Object reference not set to an instance of an object.</Error><LogDetailLocation i:nil="true" /><ResponseText>Error Occurred</ResponseText><RuleApplication i:nil="true" /><Status>5</Status><StatusDescription i:nil="true" /></RuleResponse>

Frisby Test: InRule 01 Verify Get - 253 ms

        [ GET http://dev.<company_api>/api/rules?action=basic ] - 253 ms

Frisby Test: InRule 02 Verify Schema (Post) - 24 ms

        [ POST http://dev.<company_api>/api/rules?action=basic ] - 23 ms

Failures:

  1) Frisby Test: InRule 02 Verify Schema (Post)
        [ POST http://dev.<company_api>/api/rules?action=basic ]
   Message:
     Expected 500 to equal 200.
   Stacktrace:
     Error: Expected 500 to equal 200.
    at null.<anonymous> (H:\frisby\esb\node_modules\frisby\lib\frisby.js:493:42)
    at null.<anonymous> (H:\frisby\esb\node_modules\frisby\lib\frisby.js:1074:43)
    at Timer.listOnTimeout (timers.js:92:15)

Finished in 0.278 seconds
2 tests, 5 assertions, 1 failure, 0 skipped

我尝试过/没有'Content-Length'

我试过'Content-Type':'application / xml'和'Content-Type':'application / xml; charset = UTF-8'

我认为问题在于.inspectRequest()正在显示

body: null,

当我查看NodeJS请求的成功邮递员“生成代码”时,它显示了一个正文:

var options = { method: 'POST',
  url: 'http://dev.rules.itagroupservices.int/api/rules',
  qs: { action: 'basic' },
  headers: 
   { 'postman-token': '69bf39bc-3a6e-f1ea-7d8c-319ebbd41eef',
     'cache-control': 'no-cache',
     accept: 'application/xml',
     authorization: 'Basic <some internal token>',
     'content-type': 'application/xml' },
  body: '<RuleRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance"\r\n\t\txmlns="http://<company_api>/resources/rules">\r\n  \r\n  <EntityData>\r\n<![CDATA[bunch of xml data]]>\r\n    \r\n  </EntityData>\r\n</RuleRequest>' };

我不知道为什么frisby没有显示身体(因此没有发送一个?),即使我把xml_body放在应该去的地方。

2 个答案:

答案 0 :(得分:0)

虽然不能直接回答我的问题,但如果其他人遇到同样的问题......你可以放心frisby然后退一步使用jasmine-node - 并在你的朋友中_spec.js档案! Node.js有一个request包,可以让你发布任何内容,所以你只需执行一个Jasmine describe / it。

describe('Stuff', function() {

  it('DoIt', function(done) {
    var options = {
      method: 'POST',
      url: envSetup.URL + '/' + resource,
      qs: { action: 'basic' },
      headers:
       { accept: 'application/xml',
         authorization: yourAuthorization,
         'content-type': 'application/xml' },
      body: xml_variable
    };

    request(options, function (error, response, body) {
      if (error) throw new Error(error);
      //console.log(body);
      expect(response.statusCode).toBe(200);
      done();
    });
  });
});

这将成功将XML发布到API并以body的形式获得响应。我宁愿能够在frisby.js中做到这一点,所以我仍然对人们的解决方案持开放态度。

答案 1 :(得分:0)

以下是官方答案:为了发送XML,您必须将请求正文作为标题的一部分发送。

frisby.create('Post XML to api')
  .post(someUrl, {}, {
    headers: headers4,
    body: xml1
    }
  )
  //.inspectRequest()

  //.inspectBody()
  .expectHeaderContains('Content-Type', 'application/xml')
  .expectStatus(200)
.toss();

您可以看到.post(url, body, header)格式的{}使用{}将身体部分留空。然后在第三个.post变量中,你给它一个body: xmlVariable

此处的另一个例子是:https://github.com/vlucas/frisby/issues/290