/** * * Requires the database and tables setup in config/environments/test.js to exist * Ensure the user is present in the pgbouncer auth file too * TODO: Add OAuth tests. * * To run this test, ensure that cartodb_test_user_1_db metadata exists * in Redis for the vizzuality.cartodb.com domain * * SELECT 5 * HSET rails:users:vizzuality id 1 * HSET rails:users:vizzuality database_name cartodb_test_user_1_db * */ require('../../helper'); var server = require('../../../app/server')(); var assert = require('../../support/assert'); var redisUtils = require('../../support/redis_utils'); var querystring = require('querystring'); var metadataBackend = require('cartodb-redis')(redisUtils.getConfig()); var batchFactory = require('../../../batch'); describe('Use case 4: modify a pending job', function() { var batch = batchFactory(metadataBackend, redisUtils.getConfig()); before(function (done) { batch.start(); batch.on('ready', done); }); after(function (done) { batch.stop(); redisUtils.clean('batch:*', done); }); var runningJob = {}; var pendingJob = {}; it('Step 1, should create a job', function (done) { assert.response(server, { url: '/api/v2/sql/job?api_key=1234', headers: { 'host': 'vizzuality.cartodb.com', 'Content-Type': 'application/x-www-form-urlencoded' }, method: 'POST', data: querystring.stringify({ query: "SELECT * FROM untitle_table_4; select pg_sleep(3)" }) }, { status: 201 }, function(err, res) { runningJob = JSON.parse(res.body); done(); }); }); it('Step 2, should create another job', function (done) { assert.response(server, { url: '/api/v2/sql/job?api_key=1234', headers: { 'host': 'vizzuality.cartodb.com', 'Content-Type': 'application/x-www-form-urlencoded' }, method: 'POST', data: querystring.stringify({ query: "SELECT * FROM untitle_table_4" }) }, { status: 201 }, function(err, res) { pendingJob = JSON.parse(res.body); done(); }); }); it('Step 3, job should be pending', function (done){ var interval = setInterval(function () { assert.response(server, { url: '/api/v2/sql/job/' + pendingJob.job_id + '?api_key=1234', headers: { 'host': 'vizzuality.cartodb.com', 'Content-Type': 'application/x-www-form-urlencoded' }, method: 'GET' }, { status: 200 }, function(err, res) { var job = JSON.parse(res.body); if (job.status === "pending") { clearInterval(interval); done(); } else { clearInterval(interval); done(new Error('Job ' + job.job_id + ' is ' + job.status + ', expected to be pending')); } }); }, 50); }); it('Step 5, running job should be cancelled', function (done){ assert.response(server, { url: '/api/v2/sql/job/' + runningJob.job_id + '?api_key=1234', headers: { 'host': 'vizzuality.cartodb.com', 'Content-Type': 'application/x-www-form-urlencoded' }, method: 'DELETE' }, { status: 200 }, function(err, res) { var cancelledJob = JSON.parse(res.body); assert.equal(cancelledJob.status, "cancelled"); done(); }); }); });