Skip to content

Commit ca8ff27

Browse files
committed
Refactor.
* Add more tests. * Redefine the way formatters can be configured. `progress` will only be valid when `ansi` is true, and `ansi` is no longer available for `markdown`.
1 parent 70c7087 commit ca8ff27

32 files changed

+725
-472
lines changed

bin/cmd.js

+20-15
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,26 @@
11
#!/usr/bin/env node
2-
var minimist = require('minimist')
32

4-
var opts = minimist(process.argv.slice(2), {
5-
boolean: true,
6-
alias: {
7-
ansi: 'a',
8-
progress: 'p',
9-
markdown: 'm',
10-
},
11-
default: {
12-
ansi: true,
13-
progress: true,
14-
markdown: false,
15-
},
16-
})
3+
var Command = require('commander').Command
4+
var program = new Command('tap-summary')
5+
6+
program
7+
.version(require('../package.json').version)
8+
.option('--no-ansi', 'Disable ANSI formatting. Only valid for the default formatter.')
9+
.option('--no-progress', 'Disable progress output during tests. Only valid for the default formatter.')
10+
.option('-m, --markdown', 'Use the markdown formatter.')
11+
.option('-f, --formatter <formatter>', 'Specify how to format the output. `markdown` and `default` are available.')
12+
.parse(process.argv)
13+
14+
var reporter
15+
if (program.markdown || program.formatter === 'markdown') {
16+
reporter = require('../lib/markdown')()
17+
} else {
18+
reporter = require('..')({
19+
ansi: program.ansi,
20+
progress: program.progress,
21+
})
22+
}
1723

18-
var reporter = require('..')(opts)
1924

2025
process.stdin
2126
.pipe(reporter)

example/comment.js

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
var test = require('tape')
2+
3+
test('sync', function (t) {
4+
t.ok(true, 'should pass')
5+
console.log('Hello, ')
6+
t.end()
7+
})
8+
9+
test('async', function (t) {
10+
process.nextTick(function () {
11+
t.ok(true, 'should pass')
12+
console.log('world!')
13+
t.end()
14+
})
15+
})
16+

example/error.js

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
var test = require('tape')
2+
3+
test('pass', function (t) {
4+
t.ok(true, 'should pass')
5+
t.end()
6+
})
7+
8+
test('fail', function (t) {
9+
t.ok(false, 'should fail')
10+
t.end()
11+
})
12+
13+
test('pass and fail', function (t) {
14+
t.ok(true, 'should pass')
15+
t.ok(false, 'should fail')
16+
t.end()
17+
})
File renamed without changes.
File renamed without changes.

example/run-test.js

-8
This file was deleted.

example/test-error.js

-30
This file was deleted.

example/test.js

+7-54
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
var test = require('tape')
22
var math = require('./math')
33

4-
test('t.plan', function(t) {
4+
test('pass', function(t) {
55
t.plan(3)
66

77
t.equal(
@@ -20,7 +20,7 @@ test('t.plan', function(t) {
2020
})
2121
})
2222

23-
test('t.end', function(t) {
23+
test('fail', function(t) {
2424
t.equal(
2525
math.precision(0),
2626
0
@@ -39,67 +39,20 @@ test('t.end', function(t) {
3939
if (plan) {
4040
NEXT()
4141
} else {
42-
console.log('DONE')
4342
t.end()
4443
}
4544
})
4645
})()
4746
})
4847

49-
test('promise support', function(t) {
50-
var plan = 10
51-
t.equal(
52-
math.add(0.34, 0.01),
53-
0.35
54-
)
55-
t.equal(
56-
math.add(1.1111, -1.11),
57-
0.0011
58-
)
59-
// the test will end when the returned promise resolves
60-
return new Promise(function (rs) {
61-
(function NEXT() {
62-
next(function () {
63-
t.equal(
64-
math.add(1, 2),
65-
--plan === 5 ? 2 : 3
66-
)
67-
if (plan) {
68-
NEXT()
69-
} else {
70-
console.log('DONE')
71-
rs()
72-
}
73-
})
74-
})()
75-
})
76-
})
77-
78-
test('callback support', function(t, cb) {
48+
test('comment', function (t) {
7949
next(function () {
80-
t.equal(
81-
math.add(0.34, 0.01),
82-
0.35
83-
)
84-
cb()
85-
})
86-
})
87-
88-
test('check `task-tape` for more information', function(t) {
89-
t.task(function (cb) {
90-
next(function () {
91-
t.equal(
92-
math.precision(0.1),
93-
1
94-
)
95-
cb()
96-
})
50+
t.ok(true, 'should pass')
51+
console.log('This is something from `console.log`')
52+
t.end()
9753
})
9854
})
9955

10056
function next(fn) {
101-
setTimeout(function() {
102-
fn()
103-
}, 100)
57+
setTimeout(fn, 100)
10458
}
105-

index.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
2-
module.exports = require('./lib/summary')
1+
module.exports = require('./lib/screen')

lib/markdown.js

+70
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
var reporter = require('./reporter')
2+
var symbols = require('figures')
3+
var prettyMs = require('pretty-ms')
4+
var LF = '\n'
5+
6+
module.exports = function (opts) {
7+
return reporter(new Formatter(opts))
8+
}
9+
module.exports.Formatter = Formatter
10+
11+
function Formatter(opts) {
12+
this.needDuration = !(opts && opts.duration === false)
13+
}
14+
15+
Formatter.prototype.summary = function (summary) {
16+
var output = [LF]
17+
output.push('# Summary')
18+
if (this.needDuration) {
19+
output.push('- duration: ' + prettyMs(summary.duration))
20+
}
21+
output.push('- planned: ' + summary.planned)
22+
output.push('- assertions: ' + summary.assertions)
23+
output.push('- pass: ' + summary.pass)
24+
output.push('- fail: ' + summary.fail)
25+
return output.join(LF)
26+
}
27+
28+
Formatter.prototype.comment = function (comments) {
29+
var output = [LF]
30+
output.push('# Comments')
31+
output.push('```')
32+
output.push(Object.keys(comments).map(function (name) {
33+
return '# ' + name + LF + comments[name].join(LF)
34+
}).join(LF + LF))
35+
output.push('```')
36+
return output.join(LF)
37+
}
38+
39+
Formatter.prototype.fail = function (fail) {
40+
var output = [LF]
41+
output.push(('# Fails'))
42+
output.push('```')
43+
output.push(Object.keys(fail).map(function (name) {
44+
var res = ['# ' + name]
45+
fail[name].forEach(function (assertion) {
46+
res.push(' ' + symbols.cross + ' ' + assertion.name)
47+
res.push(this.prettifyError(assertion))
48+
}, this)
49+
return res.join(LF)
50+
}, this).join(LF + LF))
51+
52+
output.push('```')
53+
return output.join(LF)
54+
}
55+
56+
Formatter.prototype.prettifyError = function (assertion) {
57+
return assertion.error.raw
58+
}
59+
60+
Formatter.prototype.test = function (test) {
61+
if (!test) {
62+
return '# Tests'
63+
}
64+
var title = test.name + ' [' +
65+
'pass: ' + test.pass + ', fail: ' + test.fail +
66+
(this.needDuration ? ', duration: ' + prettyMs(test.duration) : '') +
67+
']'
68+
return LF + '- ' + (test.fail ? symbols.cross : symbols.tick) + ' ' + title
69+
}
70+

lib/no-ansi.js

-24
This file was deleted.

lib/reporter.js

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
var summarize = require('./summarize')
2+
3+
module.exports = function (formatter) {
4+
var reporter = summarize()
5+
6+
if (formatter.init) {
7+
formatter.init(reporter)
8+
}
9+
10+
reporter.push(formatter.test())
11+
12+
reporter.on('test.end', function (test) {
13+
reporter.push(formatter.test(test))
14+
})
15+
16+
reporter.on('summary', function (summary, fails, comments) {
17+
reporter.failed = !!summary.fail
18+
if (summary.planned < 1) {
19+
reporter.failed = true
20+
summary.planned = 'NA (plans must appear once in output)'
21+
} else if (summary.assertions !== summary.planned) {
22+
reporter.failed = true
23+
summary.planned = summary.planned + "(plans don't match final assertions)"
24+
}
25+
26+
reporter.push(formatter.summary(summary))
27+
28+
if (summary.fail) {
29+
reporter.push(formatter.fail(fails))
30+
}
31+
if (summary.comments) {
32+
reporter.push(formatter.comment(comments))
33+
}
34+
reporter.push('\n\n')
35+
reporter.push(null)
36+
})
37+
38+
return reporter
39+
}
40+

0 commit comments

Comments
 (0)