Skip to content

Commit 7ae60f5

Browse files
committed
This implements -r and --require as command line options
@Raynos accurately pointed out that the source map support was a bit too specific, and felt outside of the purview of tape. As a more general solution, this implements the `-r` and `--require` CLI flags, which will allow a user to load node modules before any tests are run. For example, if someon wants to enable source map support in node, they might do: tape -r source-map-support/register test/*.js
1 parent 3f02033 commit 7ae60f5

File tree

7 files changed

+138
-3
lines changed

7 files changed

+138
-3
lines changed

bin/tape

+23-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,32 @@
11
#!/usr/bin/env node
22

3-
var path = require('path');
3+
var resolveModule = require('resolve').sync;
4+
var resolvePath = require('path').resolve;
5+
var parseOpts = require('minimist');
46
var glob = require('glob');
57

6-
process.argv.slice(2).forEach(function (arg) {
8+
var opts = parseOpts(process.argv.slice(2), {
9+
alias: { 'r': 'require' },
10+
string: 'require',
11+
default: {'r': [] }
12+
});
13+
14+
var cwd = process.cwd();
15+
16+
/* If only one require is specified, the value of `opts.require`
17+
* will be a string. This is why we concatenate.
18+
*/
19+
;[].concat(opts.require).forEach(function(module) {
20+
/* The `module &&` ensures we ignore `-r ""`, trailing `-r` or other
21+
* silly things the user might (inadvertedly) be doing.
22+
*/
23+
module && require(resolveModule(module, { basedir: cwd }));
24+
});
25+
26+
opts._.forEach(function (arg) {
727
glob(arg, function (err, files) {
828
files.forEach(function (file) {
9-
require(path.resolve(process.cwd(), file));
29+
require(resolvePath(cwd, file));
1030
});
1131
});
1232
});

package.json

+2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@
1515
"glob": "~5.0.3",
1616
"has": "~1.0.1",
1717
"inherits": "~2.0.1",
18+
"minimist": "1.2.0",
1819
"object-inspect": "~1.0.0",
20+
"resolve": "1.1.6",
1921
"resumer": "~0.0.0",
2022
"string.prototype.trim": "^1.1.1",
2123
"through": "~2.3.4"

test/require.js

+83
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
1+
var tap = require('tap');
2+
var spawn = require('child_process').spawn;
3+
var trim = require('string.prototype.trim');
4+
5+
tap.test('requiring a single module', function (t) {
6+
t.plan(2);
7+
8+
var tc = tap.createConsumer();
9+
10+
var rows = [];
11+
tc.on('data', function (r) { rows.push(r) });
12+
tc.on('end', function () {
13+
var rs = rows.map(function (r) {
14+
if (r && typeof r === 'object') {
15+
return { id : r.id, ok : r.ok, name : trim(r.name) };
16+
}
17+
else return r;
18+
});
19+
t.same(rs, [
20+
'TAP version 13',
21+
'module-a',
22+
{ id: 1, ok: true, name: 'loaded module a' },
23+
'test-a',
24+
{ id: 2, ok: true, name: 'module-a loaded in same context'},
25+
{ id: 3, ok: true, name: 'test ran after module-a was loaded'},
26+
'tests 3',
27+
'pass 3',
28+
'ok'
29+
]);
30+
});
31+
32+
var ps = tape('-r ./require/a require/test-a.js');
33+
ps.stdout.pipe(tc);
34+
ps.on('exit', function (code) {
35+
t.equal(code, 0);
36+
});
37+
});
38+
39+
tap.test('requiring multiple modules', function (t) {
40+
t.plan(2);
41+
42+
var tc = tap.createConsumer();
43+
44+
var rows = [];
45+
tc.on('data', function (r) { rows.push(r) });
46+
tc.on('end', function () {
47+
var rs = rows.map(function (r) {
48+
if (r && typeof r === 'object') {
49+
return { id : r.id, ok : r.ok, name : trim(r.name) };
50+
}
51+
else return r;
52+
});
53+
t.same(rs, [
54+
'TAP version 13',
55+
'module-a',
56+
{ id: 1, ok: true, name: 'loaded module a' },
57+
'module-b',
58+
{ id: 2, ok: true, name: 'loaded module b' },
59+
'test-a',
60+
{ id: 3, ok: true, name: 'module-a loaded in same context'},
61+
{ id: 4, ok: true, name: 'test ran after module-a was loaded'},
62+
'test-b',
63+
{ id: 5, ok: true, name: 'module-b loaded in same context'},
64+
{ id: 6, ok: true, name: 'test ran after module-b was loaded'},
65+
'tests 6',
66+
'pass 6',
67+
'ok'
68+
]);
69+
});
70+
71+
var ps = tape('-r ./require/a -r ./require/b require/test-a.js require/test-b.js');
72+
ps.stdout.pipe(tc);
73+
ps.on('exit', function (code) {
74+
t.equal(code, 0);
75+
});
76+
});
77+
78+
function tape(args) {
79+
var proc = require('child_process')
80+
var bin = __dirname + '/../bin/tape'
81+
82+
return proc.spawn(bin, args.split(' '), { cwd: __dirname })
83+
}

test/require/a.js

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
var tape = require('../..');
2+
3+
tape.test('module-a', function(t) {
4+
t.pass('loaded module a')
5+
t.end()
6+
})
7+
8+
global.module_a = true

test/require/b.js

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
var tape = require('../..');
2+
3+
tape.test('module-b', function(t) {
4+
t.pass('loaded module b')
5+
t.end()
6+
})
7+
8+
global.module_b = true

test/require/test-a.js

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
var tape = require('../..');
2+
3+
tape.test('test-a', function(t) {
4+
t.ok(global.module_a, 'module-a loaded in same context')
5+
t.pass('test ran after module-a was loaded')
6+
t.end()
7+
})

test/require/test-b.js

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
var tape = require('../..');
2+
3+
tape.test('test-b', function(t) {
4+
t.ok(global.module_b, 'module-b loaded in same context')
5+
t.pass('test ran after module-b was loaded')
6+
t.end()
7+
})

0 commit comments

Comments
 (0)