add named maps Create auth tests

This commit is contained in:
Eneko Lakasta 2018-04-12 12:43:41 +02:00
parent 9a3eb3e0fd
commit 9a7a8a3243
2 changed files with 94 additions and 9 deletions

View File

@ -422,9 +422,7 @@ describe('authorization', function() {
});
});
it.skip('should create and get a named map tile using a regular apikey token', function (done) {
const apikeyToken = 'regular1';
describe.only('Create Named Map', function () {
const template = {
version: '0.0.1',
name: 'auth-api-template',
@ -447,16 +445,72 @@ describe('authorization', function() {
}
};
const testClient = new TestClient(template, apikeyToken);
it('should create and get a named map tile using the master apikey token', function (done) {
const apikeyToken = 1234;
testClient.getTile(0, 0, 0, function (err, res, tile) {
assert.ifError(err);
const testClient = new TestClient(template, apikeyToken);
assert.equal(res.statusCode, 200);
assert.ok(tile instanceof mapnik.Image);
testClient.getTile(0, 0, 0, function (err, res, tile) {
assert.ifError(err);
testClient.drain(done);
assert.equal(res.statusCode, 200);
assert.ok(tile instanceof mapnik.Image);
testClient.drain(done);
});
});
it('should fail creating a named map using a regular apikey token', function (done) {
const apikeyToken = 'regular1';
const testClient = new TestClient(template, apikeyToken);
testClient.createTemplate({ response: { status: 403 } }, function (err, res, response) {
assert.ifError(err);
assert.equal(res.statusCode, 403);
assert.equal(response.errors.length, 1);
assert.ok(response.errors[0].match(/Forbidden/), response.errors[0]);
testClient.drain(done);
});
});
it('should fail creating a named map using the default apikey token', function (done) {
const apikeyToken = 'default_public';
const testClient = new TestClient(template, apikeyToken);
testClient.createTemplate({ response: { status: 403 } }, function (err, res, response) {
assert.ifError(err);
assert.equal(res.statusCode, 403);
assert.equal(response.errors.length, 1);
assert.ok(response.errors[0].match(/Forbidden/), response.errors[0]);
testClient.drain(done);
});
});
it('should fail creating a named map using a non-existent apikey token', function (done) {
const apikeyToken = 'wadus-wadus';
const testClient = new TestClient(template, apikeyToken);
testClient.createTemplate({ response: { status: 401 } }, function (err, res, response) {
assert.ifError(err);
assert.equal(res.statusCode, 401);
assert.equal(response.errors.length, 1);
assert.ok(response.errors[0].match(/Unauthorized/), response.errors[0]);
testClient.drain(done);
});
});
});
it.skip('should fail creating a named map using a regular apikey token and a private table', function (done) {

View File

@ -1367,3 +1367,34 @@ TestClient.prototype.getNamedTile = function (name, z, x, y, format, options, c
});
});
};
TestClient.prototype.createTemplate = function (params, callback) {
if (!this.apiKey) {
return callback(new Error('apiKey param is mandatory to create a new template'));
}
const createTemplateRequest = {
url: `/api/v1/map/named?${qs.stringify({ api_key: this.apiKey })}`,
method: 'POST',
headers: {
host: 'localhost',
'Content-Type': 'application/json'
},
data: JSON.stringify(this.template)
};
let createTemplateResponse = {
status: 200,
headers: {
'Content-Type': 'application/json; charset=utf-8'
}
};
if (params.response) {
createTemplateResponse = Object.assign(createTemplateResponse, params.response);
}
assert.response(this.server, createTemplateRequest, createTemplateResponse, (res, err) => {
return callback(err, res, JSON.parse(res.body));
});
};