mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
Add unit tests for HTTP Request encodeURI and error response
This commit is contained in:
parent
5f6fcb2bc0
commit
36e83d628e
@ -267,6 +267,9 @@ describe('HTTP Request Node', function() {
|
|||||||
url: req.originalUrl
|
url: req.originalUrl
|
||||||
});
|
});
|
||||||
})
|
})
|
||||||
|
testApp.get('/returnError/:code', function(req,res) {
|
||||||
|
res.status(parseInt(req.params.code)).json({gotError:req.params.code});
|
||||||
|
})
|
||||||
startServer(function(err) {
|
startServer(function(err) {
|
||||||
if (err) {
|
if (err) {
|
||||||
done(err);
|
done(err);
|
||||||
@ -1044,8 +1047,6 @@ describe('HTTP Request Node', function() {
|
|||||||
n1.receive({payload:"foo", requestTimeout: 100});
|
n1.receive({payload:"foo", requestTimeout: 100});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
it('should append query params to url - obj', function(done) {
|
it('should append query params to url - obj', function(done) {
|
||||||
var flow = [{id:"n1",type:"http request",wires:[["n2"]],method:"GET",paytoqs:true,ret:"obj",url:getTestURL('/getQueryParams')},
|
var flow = [{id:"n1",type:"http request",wires:[["n2"]],method:"GET",paytoqs:true,ret:"obj",url:getTestURL('/getQueryParams')},
|
||||||
{id:"n2", type:"helper"}];
|
{id:"n2", type:"helper"}];
|
||||||
@ -1068,6 +1069,84 @@ describe('HTTP Request Node', function() {
|
|||||||
n1.receive({payload:{a:1,b:2,c:3}});
|
n1.receive({payload:{a:1,b:2,c:3}});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
it('should send a msg for non-2xx response status - 400', function(done) {
|
||||||
|
var flow = [{id:"n1",type:"http request",wires:[["n2"]],method:"GET",ret:"obj",url:getTestURL('/returnError/400')},
|
||||||
|
{id:"n2", type:"helper"}];
|
||||||
|
helper.load(httpRequestNode, flow, function() {
|
||||||
|
var n1 = helper.getNode("n1");
|
||||||
|
var n2 = helper.getNode("n2");
|
||||||
|
n2.on("input", function(msg) {
|
||||||
|
try {
|
||||||
|
msg.should.have.property('payload',{ gotError: '400' });
|
||||||
|
msg.should.have.property('statusCode',400);
|
||||||
|
done();
|
||||||
|
} catch(err) {
|
||||||
|
done(err);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
n1.receive({});
|
||||||
|
})
|
||||||
|
});
|
||||||
|
it('should send a msg for non-2xx response status - 404', function(done) {
|
||||||
|
var flow = [{id:"n1",type:"http request",wires:[["n2"]],method:"GET",ret:"obj",url:getTestURL('/returnError/404')},
|
||||||
|
{id:"n2", type:"helper"}];
|
||||||
|
helper.load(httpRequestNode, flow, function() {
|
||||||
|
var n1 = helper.getNode("n1");
|
||||||
|
var n2 = helper.getNode("n2");
|
||||||
|
n2.on("input", function(msg) {
|
||||||
|
try {
|
||||||
|
msg.should.have.property('payload',{ gotError: '404' });
|
||||||
|
msg.should.have.property('statusCode',404);
|
||||||
|
done();
|
||||||
|
} catch(err) {
|
||||||
|
done(err);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
n1.receive({});
|
||||||
|
})
|
||||||
|
});
|
||||||
|
it('should send a msg for non-2xx response status - 500', function(done) {
|
||||||
|
var flow = [{id:"n1",type:"http request",wires:[["n2"]],method:"GET",ret:"obj",url:getTestURL('/returnError/500')},
|
||||||
|
{id:"n2", type:"helper"}];
|
||||||
|
helper.load(httpRequestNode, flow, function() {
|
||||||
|
var n1 = helper.getNode("n1");
|
||||||
|
var n2 = helper.getNode("n2");
|
||||||
|
n2.on("input", function(msg) {
|
||||||
|
try {
|
||||||
|
msg.should.have.property('payload',{ gotError: '500' });
|
||||||
|
msg.should.have.property('statusCode',500);
|
||||||
|
done();
|
||||||
|
} catch(err) {
|
||||||
|
done(err);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
n1.receive({});
|
||||||
|
})
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should encode the url to handle special characters', function(done) {
|
||||||
|
var flow = [{id:"n1",type:"http request",wires:[["n2"]],method:"GET",ret:"obj"},
|
||||||
|
{id:"n2", type:"helper"}];
|
||||||
|
helper.load(httpRequestNode, flow, function() {
|
||||||
|
var n1 = helper.getNode("n1");
|
||||||
|
var n2 = helper.getNode("n2");
|
||||||
|
n2.on("input", function(msg) {
|
||||||
|
try {
|
||||||
|
msg.should.have.property('payload',{
|
||||||
|
query:{ a: 'b', c:[ 'T24,0°|H80%|W S8,3m/s' ] },
|
||||||
|
url: '/getQueryParams?a=b&c%5B0%5D.Text=T24,0%C2%B0%7CH80%25%7CW%20S8,3m/s'
|
||||||
|
});
|
||||||
|
msg.should.have.property('statusCode',200);
|
||||||
|
msg.should.have.property('headers');
|
||||||
|
done();
|
||||||
|
} catch(err) {
|
||||||
|
done(err);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
n1.receive({url: getTestURL('/getQueryParams')+"?a=b&c[0].Text=T24,0°|H80%|W S8,3m/s"});
|
||||||
|
});
|
||||||
|
})
|
||||||
});
|
});
|
||||||
|
|
||||||
describe('HTTP header', function() {
|
describe('HTTP header', function() {
|
||||||
|
Loading…
Reference in New Issue
Block a user