使用json响应REST API读取响应头



我正在使用frisby来自动化REST API测试。我的所有REST API都基于json并返回json响应。在其中一个需求中,我需要读取响应标头,获取响应标头,并为下一个请求设置它。使用json响应,我无法读取响应标头。下面是我测试的示例代码。

frisby.create("Check to make sure that user does exist")
                                            .get(hostURL + "/api/users/checkusername/" + username, user, {json: true}, {headers: {'Content-Type': 'application/json'}})
                                            .expectHeaderContains('content-type', 'application/json')
                                            .afterJSON(function (response) {
                                            //How to read session id from header
                                                //var sessionId = res.headers[constants.SESSION_ID_HEADER_KEY]; 
                                                var exist = response.exist;
                                                expect(exist).toBe(true);
                                                });

请帮忙。

您的代码实际上还可以,只是尝试使用"res"变量而不是响应。

frisby.create("Check to make sure that user does exist")
.get(hostURL + "/api/users/checkusername/" + username, user, {json: true}, {headers: {'Content-Type': 'application/json'}})
.expectHeaderContains('content-type', 'application/json')
.afterJSON(function (response) {
  var sessionId = response.headers[constants.SESSION_ID_HEADER_KEY]; 
  // Use the sessionId in other frisby.create(...) call
}).
toss();

另一种选择是使用after((,如下所示:

frisby.create("Check to make sure that user does exist")
.get(hostURL + "/api/users/checkusername/" + username, user, {json: true}, {headers: {'Content-Type': 'application/json'}})
.expectHeaderContains('content-type', 'application/json')
.after(function (err, res, body) {
  var obj = JSON.parse(body);
  var sessionId = obj.headers[constants.SESSION_ID_HEADER_KEY]; 
  // Use the sessionId in other frisby.create(...) call
}).
toss();

最新更新