In node.js, I have trouble making superagent and nock work together. If I use request instead of superagent, it works perfectly.
Here is a simple example where superagent fails to report the mocked data:
var agent = require('superagent');
var nock = require('nock');
nock('')
.get('/testapi.html')
.reply(200, {yes: 'it works !'});
agent
.get('.html')
.end(function(res){
console.log(res.text);
});
the res object has no 'text' property. Something went wrong.
Now if I do the same thing using request:
var request = require('request');
var nock = require('nock');
nock('')
.get('/testapi.html')
.reply(200, {yes: 'it works !'});
request('.html', function (error, response, body) {
if (!error && response.statusCode == 200) {
console.log(body)
}
})
The mocked content is displayed correctly.
We used superagent in the tests so I'd rather stick with it. Does anyone know how to make it work ?
Thank's a lot, Xavier
In node.js, I have trouble making superagent and nock work together. If I use request instead of superagent, it works perfectly.
Here is a simple example where superagent fails to report the mocked data:
var agent = require('superagent');
var nock = require('nock');
nock('http://thefabric.')
.get('/testapi.html')
.reply(200, {yes: 'it works !'});
agent
.get('http://thefabric./testapi.html')
.end(function(res){
console.log(res.text);
});
the res object has no 'text' property. Something went wrong.
Now if I do the same thing using request:
var request = require('request');
var nock = require('nock');
nock('http://thefabric.')
.get('/testapi.html')
.reply(200, {yes: 'it works !'});
request('http://thefabric./testapi.html', function (error, response, body) {
if (!error && response.statusCode == 200) {
console.log(body)
}
})
The mocked content is displayed correctly.
We used superagent in the tests so I'd rather stick with it. Does anyone know how to make it work ?
Thank's a lot, Xavier
Share Improve this question edited Aug 13, 2014 at 3:06 icedwater 4,8973 gold badges38 silver badges53 bronze badges asked Feb 4, 2013 at 14:50 xa4xa4 1951 silver badge7 bronze badges1 Answer
Reset to default 13My presumption is that Nock is responding with application/json
as the mime type since you're responding with {yes: 'it works'}
. Look at res.body
in Superagent. If this doesn't work, let me know and I'll take a closer look.
Edit:
Try this:
var agent = require('superagent');
var nock = require('nock');
nock('http://localhost')
.get('/testapi.html')
.reply(200, {yes: 'it works !'}, {'Content-Type': 'application/json'}); //<-- notice the mime type?
agent
.get('http://localhost/testapi.html')
.end(function(res){
console.log(res.text) //can use res.body if you wish
});
or...
var agent = require('superagent');
var nock = require('nock');
nock('http://localhost')
.get('/testapi.html')
.reply(200, {yes: 'it works !'});
agent
.get('http://localhost/testapi.html')
.buffer() //<--- notice the buffering call?
.end(function(res){
console.log(res.text)
});
Either one works now. Here's what I believe is going on. nock is not setting a mime type, and the default is assumed. I assume the default is application/octet-stream
. If that's the case, superagent then does not buffer the response to conserve memory. You must force it to buffer it. That's why if you specify a mime type, which your HTTP service should anyways, superagent knows what to do with application/json
and why if you can use either res.text
or res.body
(parsed JSON).