carto/test/external.test.js

71 lines
3.1 KiB
JavaScript
Raw Normal View History

2011-01-25 23:47:31 +08:00
var External = require('mess/external');
var path = require('path'),
assert = require('assert'),
2011-01-25 23:56:00 +08:00
fs = require('fs'),
helper = require('./support/helper');
2011-01-25 23:47:31 +08:00
var env = {
data_dir: path.join(__dirname, 'data'),
local_data_dir: path.join(__dirname, 'external')
};
// Delete the data directory first to start with a clean slate.
2011-01-25 23:56:00 +08:00
helper.rmrf(env.data_dir);
2011-01-25 23:47:31 +08:00
exports['test External with local file'] = function(beforeExit) {
var context = { tests: 0 };
beforeExit(function() { assert.equal(context.tests, 1); });
new External(env, 'style.mss')
.on('complete', function(err, external) {
if (err) throw err;
assert.ok(external instanceof External)
helper.md5File(external.path(), '7e659de8be9aacf42c356774a60adf00', context);
});
};
exports['test External with remote file'] = function(beforeExit) {
var context = { tests: 0 };
beforeExit(function() { assert.equal(context.tests, 1); });
new External(env, 'http://tilemill-data.s3.amazonaws.com/ipsum.json')
.on('complete', function(err, external) {
if (err) throw err;
assert.ok(external instanceof External)
helper.md5File(external.path(), '651ea0ff31786e9be9012112b21573be', context);
});
2011-01-25 23:47:31 +08:00
};
exports['test External with local zipfile'] = function(beforeExit) {
var context = { tests: 0 };
beforeExit(function() { assert.equal(context.tests, 5); });
new External(env, 'shapes.zip').on('complete',
function(err, external) {
if (err) throw err;
assert.ok(external instanceof External)
helper.isDirectory(external.path(), context);
helper.md5File(path.join(external.path(), 'world_borders.dbf'), '5dd220a6470ac525a5dbd8fce728c8c6', context);
helper.md5File(path.join(external.path(), 'world_borders.prj'), '15541cb58c5710db8f6ded679d93f20e', context);
helper.md5File(path.join(external.path(), 'world_borders.shp'), '0ce4134dd36385cc359890af9d527c02', context);
helper.md5File(path.join(external.path(), 'world_borders.shx'), '3cac59ecc9ddf2a1053de46a7f9e9168', context);
});
2011-01-25 23:47:31 +08:00
}
2011-01-25 23:56:00 +08:00
exports['test External with remote zipfile'] = function(beforeExit) {
var context = { tests: 0 };
beforeExit(function() { assert.equal(context.tests, 5); });
2011-01-25 23:47:31 +08:00
new External(env, 'http://cascadenik-sampledata.s3.amazonaws.com/world_borders.zip')
.on('complete', function(err, external) {
if (err) throw err;
assert.ok(external instanceof External)
helper.isDirectory(external.path(), context);
helper.md5File(path.join(external.path(), 'world_borders.dbf'), 'bc1a1765c8f90741fad9fabfdd4c22ae', context);
helper.md5File(path.join(external.path(), 'world_borders.prj'), 'e729936bf5360b37a15365fc295a1901', context);
helper.md5File(path.join(external.path(), 'world_borders.shp'), 'c4e81b62a8d726b5f2aa9591b3d37795', context);
helper.md5File(path.join(external.path(), 'world_borders.shx'), '88e1eeb44c63baa5ff37558033d11b1f', context);
});
2011-01-25 23:47:31 +08:00
}