20

我正在使用supertest测试 Node.js API,但我无法解释为什么res.body对象超集返回为空。数据显示在res.text对象中,但没有res.body,知道如何解决这个问题吗?

我正在使用 Express 和body-parser

app.use(bodyParser.json());
app.use(bodyParser.json({ type: jsonMimeType }));
app.use(bodyParser.urlencoded({ extended: true }));

这是我正在测试的 API 方法:

app.get(apiPath + '/menu', function(req, res) {
  var expiration = getExpiration();

  res.set({
    'Content-Type': jsonMimeType,
    'Content-Length': jsonTestData.length,
    'Last-Modified': new Date(),
    'Expires': expiration,
    'ETag': null
  });

  res.json({ items: jsonTestData });
}

以下是我针对此 API 方法执行的测试:

describe('GET /menu', function() {
  describe('HTTP headers', function() {
    it('responds with the right MIME type', function(done) {
      request(app)
        .get(apiPath + '/menu')
        .set('Accept', 'application/vnd.burgers.api+json')
        .expect('Content-Type', 'application/vnd.burgers.api+json; charset=utf-8')
        .expect(200, done);
    });

    it('responds with the right expiration date', function(done) {
      var tomorrow = new Date();
      tomorrow.setDate(tomorrow.getDate() + 1);
      tomorrow.setHours(0,0,0,0);

      request(app)
        .get(apiPath + '/menu')
        .set('Accept', 'application/vnd.burgers.api+json; charset=utf-8')
        .expect('Expires', tomorrow.toUTCString())
        .expect(200, done);
    });

    it('responds with menu items', function(done) {
      request(app)
        .get(apiPath + '/menu')
        .set('Accept', 'application/vnd.burgers.api+json; charset=utf-8')
        .expect(200)
        .expect(function (res) {
          console.log(res);
          res.body.items.length.should.be.above(0);
        })
        .end(done);
    });
  });
});

我收到的失败:

1) GET /menu HTTP headers responds with menu items:
     TypeError: Cannot read property 'length' of undefined
      at /Users/brian/Development/demos/burgers/menu/test/MenuApiTest.js:42:25
      at Test.assert (/Users/brian/Development/demos/burgers/menu/node_modules/supertest/lib/test.js:213:13)
      at Server.assert (/Users/brian/Development/demos/burgers/menu/node_modules/supertest/lib/test.js:132:12)
      at Server.g (events.js:180:16)
      at Server.emit (events.js:92:17)
      at net.js:1276:10
      at process._tickDomainCallback (node.js:463:13)

最后,这是结果的摘录console.log(res)

...
text: '{"items":[{"id":"1","name":"cheeseburger","price":3},{"id":"2","name":"hamburger","price":2.5},{"id":"3","name":"veggie burger","price":3},{"id":"4","name":"large fries","price":2},{"id":"5","name":"medium fries","price":1.5},{"id":"6","name":"small fries","price":1},{"id":"7","name":"large drink","price":2.5},{"id":"8","name":"medium drink","price":2},{"id":"9","name":"small drink","price":1}]}',
  body: {},
...
4

5 回答 5

7

根据以下测试,您期望 'application/vnd.burgers.api+json; charset=utf-8' 作为内容类型:

request(app)
    .get(apiPath + '/menu')
    .set('Accept', 'application/vnd.burgers.api+json')
    .expect('Content-Type', 'application/vnd.burgers.api+json; charset=utf-8')
    .expect(200, done);

此快速路线还显示您将标头设置为某个自定义值 jsonMimeType:

app.get(apiPath + '/menu', function(req, res) {
  var expiration = getExpiration();

  res.set({
    'Content-Type': jsonMimeType,
    'Content-Length': jsonTestData.length,
    'Last-Modified': new Date(),
    'Expires': expiration,
    'ETag': null
  });

  res.json({ items: jsonTestData });
}

如果是这种情况,supertest 不会自动为您解析该 JSON。内容类型标头必须以字符串“application/json”开头。如果您不能做到这一点,那么您将不得不自己使用 JSON.parse 函数将该文本字符串转换为对象。

supertest 使用此文件来确定您是否正在发送 json。在后台,supertest 实际上启动了您的 express 服务器,通过 HTTP 发出一个请求,然后迅速将其关闭。在那次 HTTP 切换之后,该 HTTP 请求的客户端(基本上是superagent)不知道关于 'application/vnd.burgers.api+json; 的服务器配置的任何信息;字符集=utf-8'。它所知道的只是它通过标题告诉的内容,在这种情况下,是内容类型。

另外,我确实在我的机器上尝试了你的自定义标题,但我也得到了一个空的身体。

编辑:如评论中所述更新表格链接

于 2014-10-28T18:55:19.413 回答
5

这是旧的,但它帮助了我,所以我想我可能会分享一些知识。

根据 mattr 示例,我发现该信息实际上在 res.text 中,而不是 res.body 中。

我最终添加了一些特殊处理:

if(res.headers['content-type'] == 'myUniqueContentType' && res.body===undefined){ 
    res.body = JSON.parse(res.text);
}
于 2015-10-08T18:58:30.813 回答
0

我的问题是该.set()方法设置了请求标头,而.send()将使用您指定的 json 数据设置请求正文。

request("/localhost:3000")
    .post("/test")
    .type("json")
    .set({color: "red"}) //this does nothing!
    .expect(200)
    .end(function(res) {
        done();
    });

修复:

request("/localhost:3000")
    .post("/test")
    .type("json")
    .send({color: "red"}) //fixed!
    .expect(200)
    .end(function(res) {
        done();
    });
于 2015-12-16T06:10:50.037 回答
0

确保您的超测试请求具有“接受:应用程序/json”标头集

我注意到在我将请求标头设置为accept: application/json.

request(myServerObject)
    .get("/myJSONurl")
    .set("accept", "application/json") // This is the line you should set
    .end(function() {
       if (err) throw err
       console.log(res.body) // should have a value
    })
于 2021-10-22T21:54:37.580 回答
-2

添加

app.use(bodyParser.json({ type: 'application/*+json' }))

这将接受所有 json 内容类型:-)

于 2017-07-24T06:46:45.240 回答