Windshaft-cartodb/test/support/test_helper.js

66 lines
1.8 KiB
JavaScript
Raw Normal View History

2011-09-05 07:00:41 +08:00
/**
* User: simon
* Date: 30/08/2011
* Time: 13:52
* Desc: Loads test specific variables
*/
var _ = require('underscore');
var assert = require('assert');
2014-08-15 01:54:45 +08:00
var LZMA = require('lzma').LZMA;
var lzmaWorker = new LZMA();
2011-09-05 07:00:41 +08:00
// set environment specific variables
global.environment = require(__dirname + '/../../config/environments/test');
2014-02-28 23:14:44 +08:00
process.env.NODE_ENV = 'test';
2011-09-05 07:00:41 +08:00
// Utility function to compress & encode LZMA
function lzma_compress_to_base64(payload, mode, callback) {
2014-08-15 01:54:45 +08:00
lzmaWorker.compress(payload, mode,
function(ints) {
ints = ints.map(function(c) { return String.fromCharCode(c + 128) }).join('')
var base64 = new Buffer(ints, 'binary').toString('base64');
callback(null, base64);
},
function(percent) {
//console.log("Compressing: " + percent + "%");
}
);
}
// Check that the response headers do not request caching
// Throws on failure
function checkNoCache(res) {
assert.ok(!res.headers.hasOwnProperty('x-cache-channel'));
assert.ok(!res.headers.hasOwnProperty('cache-control')); // is this correct ?
assert.ok(!res.headers.hasOwnProperty('last-modified')); // is this correct ?
}
/**
* Check that the response headers do not request caching
* @see checkNoCache
* @param res
*/
function checkCache(res) {
assert.ok(res.headers.hasOwnProperty('x-cache-channel'));
assert.ok(res.headers.hasOwnProperty('cache-control'));
assert.ok(res.headers.hasOwnProperty('last-modified'));
}
function checkSurrogateKey(res, expectedKey) {
assert.ok(res.headers.hasOwnProperty('surrogate-key'));
assert.equal(res.headers['surrogate-key'], expectedKey);
}
module.exports = {
lzma_compress_to_base64: lzma_compress_to_base64,
checkNoCache: checkNoCache,
checkSurrogateKey: checkSurrogateKey,
checkCache: checkCache
};
2011-09-05 07:00:41 +08:00