我正在将Nock与Mocha一起使用,并想检查请求中是否存在某些标头。我不在乎其他标头,也不在乎我要检查其存在性的标头的具体内容。是否有捷径可寻?如果缺少特定的标头,.matchHeader()
将通过,除非我指定所有标头字段,否则reqheaders
将失败。
答案 0 :(得分:1)
reqheaders
是正确的方法。
我不确定您遇到了什么问题,但并非所有标题都需要提供。只有比赛所需的那些。
reqheaders
的另一个不错的功能是该值可以是返回布尔值的函数。由于您不必关心标头的实际值,因此如果标头简单存在,则返回true
具有匹配的效果。
const scope = nock('http://www.example.com', {
reqheaders: {
'x-one': () => true,
}
}).get('/').reply(200, 'match!')
const reqOpts = {
hostname: 'www.example.com',
path: '/',
method: 'GET',
headers: {
'X-One': 'hello world',
'X-Two': 'foo bar',
'Content-Type': 'application/json',
}
}
const req = http.request(reqOpts, res => {
console.log("##### res status", res.statusCode)
res.on('data', (chunk) => {
console.log("##### chunk", chunk.toString())
})
})
req.end()
scope.done()