1

frisby.js でいくつかの API をテストしようとしています。メソッド経由で xml のブロックを送信する際に問題が発生しました.post()。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 Request の成功した Postman 'Generate Code' を見ると、本文が表示されます。

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>' };

xml_bodyフリスビーがどこに行くべきかを設定しているにもかかわらず、なぜフリスビーが体を表示していないのか(したがって、体を送信していないのですか?)わかりません。

4

2 に答える 2

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ので、私はまだ人々の解決策を受け入れています.

于 2016-08-12T13:59:15.213 に答える
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)ます。次に、3 番目の .post 変数で、body: xmlVariable

別の例: https://github.com/vlucas/frisby/issues/290

于 2016-08-12T19:31:30.763 に答える