-
Notifications
You must be signed in to change notification settings - Fork 165
/
mapnik-shapeindex.test.js
54 lines (44 loc) · 1.79 KB
/
mapnik-shapeindex.test.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
"use strict";
var test = require('tape');
var path = require('path');
var fs = require('fs');
var os = require('os');
var crypto = require('crypto');
var shapeindex = path.resolve(__dirname, '..', 'bin', 'mapnik-shapeindex.js');
var shp = path.join(__dirname, 'data', 'world_merc.shp');
var shx = path.join(__dirname, 'data', 'world_merc.shx');
var prj = path.join(__dirname, 'data', 'world_merc.prj');
var dbf = path.join(__dirname, 'data', 'world_merc.dbf');
var tmpdir = path.join(os.tmpdir(), crypto.randomBytes(8).toString('hex'));
var tmpshp = path.join(tmpdir, 'world_merc.shp');
var tmpshx = path.join(tmpdir, 'world_merc.shx');
var tmpprj = path.join(tmpdir, 'world_merc.prj');
var tmpdbf = path.join(tmpdir, 'world_merc.dbf');
var spawn = require('child_process').spawn;
test('setup', (assert) => {
fs.mkdir(tmpdir, function() {
fs.createReadStream(shp).pipe(fs.createWriteStream(tmpshp)).on('close', function() {
fs.createReadStream(shx).pipe(fs.createWriteStream(tmpshx)).on('close', function() {
fs.createReadStream(prj).pipe(fs.createWriteStream(tmpprj)).on('close', function() {
fs.createReadStream(dbf).pipe(fs.createWriteStream(tmpdbf)).on('close', function() {
assert.end()});
});
});
});
});
});
test('should create a spatial index', (assert) => {
var args = [shapeindex, '--shape_files', tmpshp];
spawn(process.execPath, args)
.on('error', function(err) { assert.ifError(err, 'no error'); })
.on('close', function(code) {
assert.equal(code, 0, 'exit 0');
fs.readdir(tmpdir, function(err, files) {
files = files.filter(function(filename) {
return filename === 'world_merc.index';
});
assert.equal(files.length, 1, 'made spatial index');
assert.end();
});
});
});