Skip to content

Commit 5cdaf54

Browse files
ronkorvingljharb
authored andcommitted
[New] Implements TAP TODO directive
1 parent 5d0d706 commit 5cdaf54

File tree

4 files changed

+58
-11
lines changed

4 files changed

+58
-11
lines changed

lib/results.js

+6-4
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ function Results () {
2121
this.count = 0;
2222
this.fail = 0;
2323
this.pass = 0;
24+
this.todo = 0;
2425
this._stream = through();
2526
this.tests = [];
2627
this._only = null;
@@ -107,7 +108,7 @@ Results.prototype._watch = function (t) {
107108
write(encodeResult(res, self.count + 1));
108109
self.count ++;
109110

110-
if (res.ok) self.pass ++
111+
if (res.ok || res.todo) self.pass ++
111112
else {
112113
self.fail ++;
113114
self.emit('fail');
@@ -125,9 +126,10 @@ Results.prototype.close = function () {
125126

126127
write('\n1..' + self.count + '\n');
127128
write('# tests ' + self.count + '\n');
128-
write('# pass ' + self.pass + '\n');
129-
if (self.fail) write('# fail ' + self.fail + '\n')
130-
else write('\n# ok\n')
129+
write('# pass ' + (self.pass + self.todo) + '\n');
130+
if (self.todo) write('# todo ' + self.todo + '\n');
131+
if (self.fail) write('# fail ' + self.fail + '\n');
132+
else write('\n# ok\n');
131133

132134
self._stream.queue(null);
133135
};

lib/test.js

+9-7
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ function Test (name_, opts_, cb_) {
6666
this.assertCount = 0;
6767
this.pendingCount = 0;
6868
this._skip = args.opts.skip || false;
69+
this._todo = args.opts.todo || false;
6970
this._timeout = args.opts.timeout;
7071
this._plan = undefined;
7172
this._cb = args.cb;
@@ -203,12 +204,13 @@ Test.prototype._assert = function assert (ok, opts) {
203204
var extra = opts.extra || {};
204205

205206
var res = {
206-
id : self.assertCount ++,
207-
ok : Boolean(ok),
208-
skip : defined(extra.skip, opts.skip),
209-
name : defined(extra.message, opts.message, '(unnamed assert)'),
210-
operator : defined(extra.operator, opts.operator),
211-
objectPrintDepth : self._objectPrintDepth
207+
id: self.assertCount++,
208+
ok: Boolean(ok),
209+
skip: defined(extra.skip, opts.skip),
210+
todo: defined(extra.todo, opts.todo, self._todo),
211+
name: defined(extra.message, opts.message, '(unnamed assert)'),
212+
operator: defined(extra.operator, opts.operator),
213+
objectPrintDepth: self._objectPrintDepth
212214
};
213215
if (has(opts, 'actual') || has(extra, 'actual')) {
214216
res.actual = defined(extra.actual, opts.actual);
@@ -218,7 +220,7 @@ Test.prototype._assert = function assert (ok, opts) {
218220
}
219221
this._ok = Boolean(this._ok && ok);
220222

221-
if (!ok) {
223+
if (!ok && !res.todo) {
222224
res.error = defined(extra.error, opts.error, new Error(res.name));
223225
}
224226

readme.markdown

+1
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,7 @@ Available `opts` options are:
152152
- opts.skip = true/false. See test.skip.
153153
- opts.timeout = 500. Set a timeout for the test, after which it will fail. See test.timeoutAfter.
154154
- opts.objectPrintDepth = 5. Configure max depth of expected / actual object printing. Environmental variable `NODE_TAPE_OBJECT_PRINT_DEPTH` can set the desired default depth for all tests; locally-set values will take precedence.
155+
- opts.todo = true/false. Test will be allowed to fail.
155156

156157
If you forget to `t.plan()` out how many assertions you are going to run and you
157158
don't call `t.end()` explicitly, your test will hang.

test/todo.js

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
var tap = require('tap');
2+
var tape = require('../');
3+
var concat = require('concat-stream');
4+
5+
var common = require('./common');
6+
var stripFullStack = common.stripFullStack;
7+
8+
tap.test('tape todo test', function (assert) {
9+
var test = tape.createHarness({ exit: false });
10+
assert.plan(1);
11+
12+
test.createStream().pipe(concat(function (body) {
13+
assert.equal(
14+
stripFullStack(body.toString('utf8')),
15+
'TAP version 13\n'
16+
+ '# success\n'
17+
+ 'ok 1 this test runs\n'
18+
+ '# failure\n'
19+
+ 'not ok 2 should never happen # TODO\n'
20+
+ ' ---\n'
21+
+ ' operator: fail\n'
22+
+ ' at: Test.<anonymous> ($TEST/todo.js:$LINE:$COL)\n'
23+
+ ' ...\n'
24+
+ '\n'
25+
+ '1..2\n'
26+
+ '# tests 2\n'
27+
+ '# pass 2\n'
28+
+ '\n'
29+
+ '# ok\n'
30+
)
31+
}));
32+
33+
test('success', function (t) {
34+
t.equal(true, true, 'this test runs');
35+
t.end();
36+
});
37+
38+
test('failure', { todo: true }, function (t) {
39+
t.fail('should never happen');
40+
t.end();
41+
});
42+
});

0 commit comments

Comments
 (0)