Add tests for getting metadata (#183)
... and fix forbidden metadata response
This commit is contained in:
parent
f021093504
commit
8a759babf0
@ -135,8 +135,8 @@ module.exports = function(){
|
|||||||
that.req2params(req, this);
|
that.req2params(req, this);
|
||||||
},
|
},
|
||||||
function(err, data){
|
function(err, data){
|
||||||
if (err) throw err;
|
if (err) callback(err, null);
|
||||||
cartoData.getMapMetadata(data, callback);
|
else cartoData.getMapMetadata(data, callback);
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
@ -569,6 +569,59 @@ suite('server', function() {
|
|||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
/////////////////////////////////////////////////////////////////////////////////
|
||||||
|
//
|
||||||
|
// GET METADATA
|
||||||
|
//
|
||||||
|
/////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
test("does not provide metadata of private table to unauthenticated requests", function(done){
|
||||||
|
assert.response(server, {
|
||||||
|
headers: {host: 'localhost'},
|
||||||
|
url: '/tiles/test_table_private_1/map_metadata',
|
||||||
|
method: 'GET'
|
||||||
|
},{}, function(res) {
|
||||||
|
// FIXME: should be 401 instead
|
||||||
|
assert.equal(res.statusCode, 500, res.statusCode + ': ' + res.body);
|
||||||
|
done();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
test("does provide metadata of private table to authenticated requests", function(done){
|
||||||
|
assert.response(server, {
|
||||||
|
headers: {host: 'localhost'},
|
||||||
|
url: '/tiles/test_table_private_1/map_metadata?map_key=1234',
|
||||||
|
method: 'GET'
|
||||||
|
},{}, function(res) {
|
||||||
|
assert.equal(res.statusCode, 200, res.statusCode + ': ' + res.body);
|
||||||
|
done();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
test("does provide metadata of public table to unauthenticated requests", function(done){
|
||||||
|
assert.response(server, {
|
||||||
|
headers: {host: 'localhost'},
|
||||||
|
url: '/tiles/gadm4/map_metadata',
|
||||||
|
method: 'GET'
|
||||||
|
},{}, function(res) {
|
||||||
|
assert.equal(res.statusCode, 200, res.statusCode + ': ' + res.body);
|
||||||
|
// TODO: show metadata ?
|
||||||
|
done();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
test("does provide metadata of public table to authenticated requests", function(done){
|
||||||
|
assert.response(server, {
|
||||||
|
headers: {host: 'localhost'},
|
||||||
|
url: '/tiles/gadm4/map_metadata?map_key=1234',
|
||||||
|
method: 'GET'
|
||||||
|
},{}, function(res) {
|
||||||
|
assert.equal(res.statusCode, 200, res.statusCode + ': ' + res.body);
|
||||||
|
// TODO: show metadata ?
|
||||||
|
done();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
/////////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// DELETE CACHE
|
// DELETE CACHE
|
||||||
|
Loading…
Reference in New Issue
Block a user