2018-10-24 21:42:33 +08:00
|
|
|
'use strict';
|
|
|
|
|
2013-01-16 18:16:38 +08:00
|
|
|
require('../../helper');
|
|
|
|
|
2019-10-04 00:24:39 +08:00
|
|
|
var server = require('../../../lib/server')();
|
2015-05-13 17:53:14 +08:00
|
|
|
var assert = require('../../support/assert');
|
|
|
|
var querystring = require('querystring');
|
2013-01-16 18:16:38 +08:00
|
|
|
|
2019-12-24 01:19:08 +08:00
|
|
|
describe('export.svg', function () {
|
|
|
|
it('GET /api/v1/sql with SVG format', function (done) {
|
|
|
|
var query = querystring.stringify({
|
|
|
|
q: 'SELECT 1 as cartodb_id, ST_MakeLine(ST_MakePoint(10, 10), ST_MakePoint(1034, 778)) AS the_geom ',
|
|
|
|
format: 'svg'
|
|
|
|
});
|
|
|
|
assert.response(server, {
|
|
|
|
url: '/api/v1/sql?' + query,
|
|
|
|
headers: { host: 'vizzuality.cartodb.com' },
|
|
|
|
method: 'GET'
|
|
|
|
}, { }, function (err, res) {
|
|
|
|
assert.equal(res.statusCode, 200, res.body);
|
|
|
|
var cd = res.headers['content-disposition'];
|
|
|
|
assert.ok(/filename=cartodb-query.svg/gi.test(cd), cd);
|
|
|
|
assert.equal(res.headers['content-type'], 'image/svg+xml; charset=utf-8');
|
|
|
|
assert.ok(res.body.indexOf('<path d="M 0 768 L 1024 0" />') > 0, res.body);
|
|
|
|
// TODO: test viewBox
|
|
|
|
done();
|
|
|
|
});
|
2013-01-16 18:16:38 +08:00
|
|
|
});
|
|
|
|
|
2019-12-24 01:19:08 +08:00
|
|
|
it('POST /api/v1/sql with SVG format', function (done) {
|
|
|
|
var query = querystring.stringify({
|
|
|
|
q: 'SELECT 1 as cartodb_id, ST_MakeLine(ST_MakePoint(10, 10), ST_MakePoint(1034, 778)) AS the_geom ',
|
|
|
|
format: 'svg'
|
|
|
|
});
|
|
|
|
assert.response(server, {
|
|
|
|
url: '/api/v1/sql',
|
|
|
|
data: query,
|
|
|
|
headers: { host: 'vizzuality.cartodb.com', 'Content-Type': 'application/x-www-form-urlencoded' },
|
|
|
|
method: 'POST'
|
|
|
|
}, { }, function (err, res) {
|
|
|
|
assert.equal(res.statusCode, 200, res.body);
|
|
|
|
var cd = res.headers['content-disposition'];
|
|
|
|
assert.equal(true, /^attachment/.test(cd), 'SVG is not disposed as attachment: ' + cd);
|
|
|
|
assert.ok(/filename=cartodb-query.svg/gi.test(cd), cd);
|
|
|
|
assert.equal(res.headers['content-type'], 'image/svg+xml; charset=utf-8');
|
|
|
|
assert.ok(res.body.indexOf('<path d="M 0 768 L 1024 0" />') > 0, res.body);
|
|
|
|
// TODO: test viewBox
|
|
|
|
done();
|
|
|
|
});
|
2013-01-16 18:16:38 +08:00
|
|
|
});
|
|
|
|
|
2019-12-24 01:19:08 +08:00
|
|
|
it('GET /api/v1/sql with SVG format and custom filename', function (done) {
|
|
|
|
var query = querystring.stringify({
|
|
|
|
q: 'SELECT 1 as cartodb_id, ST_MakeLine(ST_MakePoint(10, 10), ST_MakePoint(1034, 778)) AS the_geom ',
|
|
|
|
format: 'svg',
|
|
|
|
filename: 'mysvg'
|
|
|
|
});
|
|
|
|
assert.response(server, {
|
|
|
|
url: '/api/v1/sql?' + query,
|
|
|
|
headers: { host: 'vizzuality.cartodb.com' },
|
|
|
|
method: 'GET'
|
|
|
|
}, { }, function (err, res) {
|
|
|
|
assert.equal(res.statusCode, 200, res.body);
|
|
|
|
var cd = res.headers['content-disposition'];
|
|
|
|
assert.ok(/filename=mysvg.svg/gi.test(cd), cd);
|
|
|
|
assert.equal(res.headers['content-type'], 'image/svg+xml; charset=utf-8');
|
|
|
|
assert.ok(res.body.indexOf('<path d="M 0 768 L 1024 0" />') > 0, res.body);
|
|
|
|
// TODO: test viewBox
|
|
|
|
done();
|
|
|
|
});
|
2013-01-16 18:16:38 +08:00
|
|
|
});
|
|
|
|
|
2019-12-24 01:19:08 +08:00
|
|
|
it('GET /api/v1/sql with SVG format and centered point', function (done) {
|
|
|
|
var query = querystring.stringify({
|
|
|
|
q: 'SELECT 1 as cartodb_id, ST_MakePoint(5000, -54) AS the_geom ',
|
|
|
|
format: 'svg'
|
|
|
|
});
|
|
|
|
assert.response(server, {
|
|
|
|
url: '/api/v1/sql?' + query,
|
|
|
|
headers: { host: 'vizzuality.cartodb.com' },
|
|
|
|
method: 'GET'
|
|
|
|
}, { }, function (err, res) {
|
|
|
|
assert.equal(res.statusCode, 200, res.body);
|
|
|
|
var cd = res.headers['content-disposition'];
|
|
|
|
assert.ok(/filename=cartodb-query.svg/gi.test(cd), cd);
|
|
|
|
assert.equal(res.headers['content-type'], 'image/svg+xml; charset=utf-8');
|
|
|
|
assert.ok(res.body.indexOf('cx="0" cy="0"') > 0, res.body);
|
|
|
|
// TODO: test viewBox
|
|
|
|
// TODO: test radius
|
|
|
|
done();
|
|
|
|
});
|
2013-01-16 18:16:38 +08:00
|
|
|
});
|
|
|
|
|
2019-12-24 01:19:08 +08:00
|
|
|
it('GET /api/v1/sql with SVG format and trimmed decimals', function (done) {
|
|
|
|
var queryobj = {
|
|
|
|
q: "SELECT 1 as cartodb_id, 'LINESTRING(0 0, 1024 768, 500.123456 600.98765432)'::geometry AS the_geom ",
|
|
|
|
format: 'svg',
|
|
|
|
dp: 2
|
|
|
|
};
|
2016-09-15 02:54:24 +08:00
|
|
|
assert.response(server, {
|
2019-12-24 01:19:08 +08:00
|
|
|
url: '/api/v1/sql?' + querystring.stringify(queryobj),
|
|
|
|
headers: { host: 'vizzuality.cartodb.com' },
|
|
|
|
method: 'GET'
|
|
|
|
}, { }, function (err, res) {
|
|
|
|
assert.equal(res.statusCode, 200, res.body);
|
|
|
|
var cd = res.headers['content-disposition'];
|
|
|
|
assert.ok(/filename=cartodb-query.svg/gi.test(cd), cd);
|
|
|
|
assert.equal(res.headers['content-type'], 'image/svg+xml; charset=utf-8');
|
|
|
|
assert.ok(res.body.indexOf('<path d="M 0 768 L 1024 0 500.12 167.01" />') > 0, res.body);
|
|
|
|
// TODO: test viewBox
|
|
|
|
|
|
|
|
queryobj.dp = 3;
|
|
|
|
assert.response(server, {
|
|
|
|
url: '/api/v1/sql?' + querystring.stringify(queryobj),
|
|
|
|
headers: { host: 'vizzuality.cartodb.com' },
|
|
|
|
method: 'GET'
|
|
|
|
}, {}, function (err, res) {
|
|
|
|
assert.equal(res.statusCode, 200, res.body);
|
|
|
|
var cd = res.headers['content-disposition'];
|
|
|
|
assert.equal(true, /^attachment/.test(cd), 'SVG is not disposed as attachment: ' + cd);
|
|
|
|
assert.ok(/filename=cartodb-query.svg/gi.test(cd), cd);
|
|
|
|
assert.equal(res.headers['content-type'], 'image/svg+xml; charset=utf-8');
|
|
|
|
assert.ok(res.body.indexOf('<path d="M 0 768 L 1024 0 500.123 167.012" />') > 0, res.body);
|
|
|
|
// TODO: test viewBox
|
|
|
|
done();
|
|
|
|
});
|
2013-01-16 18:16:38 +08:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2019-12-24 01:19:08 +08:00
|
|
|
// Test adding "the_geom" to skipfields
|
|
|
|
// See http://github.com/Vizzuality/CartoDB-SQL-API/issues/73
|
|
|
|
it('SVG format with "the_geom" in skipfields', function (done) {
|
|
|
|
var query = querystring.stringify({
|
|
|
|
q: 'SELECT 1 as cartodb_id, ST_MakePoint(5000, -54) AS the_geom ',
|
|
|
|
format: 'svg',
|
|
|
|
skipfields: 'the_geom'
|
|
|
|
});
|
|
|
|
assert.response(server, {
|
|
|
|
url: '/api/v1/sql?' + query,
|
|
|
|
headers: { host: 'vizzuality.cartodb.com' },
|
|
|
|
method: 'GET'
|
|
|
|
}, { }, function (err, res) {
|
|
|
|
assert.equal(res.statusCode, 400, res.statusCode + ': ' + res.body);
|
|
|
|
assert.deepEqual(res.headers['content-type'], 'application/json; charset=utf-8');
|
|
|
|
assert.deepEqual(res.headers['content-disposition'], 'inline');
|
|
|
|
assert.deepEqual(JSON.parse(res.body), {
|
|
|
|
error: ['column "the_geom" does not exist']
|
|
|
|
});
|
|
|
|
done();
|
2013-01-21 17:06:51 +08:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2019-12-24 01:19:08 +08:00
|
|
|
it('SVG format with missing "the_geom" field', function (done) {
|
|
|
|
var query = querystring.stringify({
|
|
|
|
q: 'SELECT 1 as cartodb_id, ST_MakePoint(5000, -54) AS something_else ',
|
|
|
|
format: 'svg'
|
|
|
|
});
|
|
|
|
assert.response(server, {
|
|
|
|
url: '/api/v1/sql?' + query,
|
|
|
|
headers: { host: 'vizzuality.cartodb.com' },
|
|
|
|
method: 'GET'
|
|
|
|
}, { }, function (err, res) {
|
|
|
|
assert.equal(res.statusCode, 400, res.statusCode + ': ' + res.body);
|
|
|
|
assert.deepEqual(JSON.parse(res.body), {
|
|
|
|
error: ['column "the_geom" does not exist']
|
|
|
|
});
|
|
|
|
done();
|
2013-01-21 17:06:51 +08:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2019-12-24 01:19:08 +08:00
|
|
|
it('should close on error and error must be the only key in the body', function (done) {
|
2015-05-14 00:15:38 +08:00
|
|
|
assert.response(
|
2016-09-15 02:54:24 +08:00
|
|
|
server,
|
2015-05-14 00:15:38 +08:00
|
|
|
{
|
2019-12-24 01:19:08 +08:00
|
|
|
url: '/api/v1/sql?' + querystring.stringify({
|
|
|
|
q: 'SELECT the_geom, 100/(cartodb_id - 3) cdb_ratio FROM untitle_table_4',
|
2015-05-14 00:15:38 +08:00
|
|
|
format: 'svg'
|
|
|
|
}),
|
|
|
|
headers: {
|
|
|
|
host: 'vizzuality.cartodb.com'
|
|
|
|
},
|
|
|
|
method: 'GET'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
status: 400
|
|
|
|
},
|
2019-12-24 01:19:08 +08:00
|
|
|
function (err, res) {
|
2015-05-14 00:15:38 +08:00
|
|
|
var parsedBody = JSON.parse(res.body);
|
|
|
|
assert.deepEqual(Object.keys(parsedBody), ['error']);
|
2019-12-24 01:19:08 +08:00
|
|
|
assert.deepEqual(parsedBody.error, ['division by zero']);
|
2015-05-14 00:15:38 +08:00
|
|
|
done();
|
|
|
|
}
|
|
|
|
);
|
|
|
|
});
|
2013-01-16 18:16:38 +08:00
|
|
|
});
|