Skip to content

Commit 7414e5a

Browse files
committed
Make the reporter reusable and document it
1 parent be0a21f commit 7414e5a

9 files changed

+291
-240
lines changed

README.md

+85-9
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,18 @@
11
# tap-summary
2-
Summarize TAP.
3-
42
[![version](https://img.shields.io/npm/v/tap-summary.svg)](https://www.npmjs.org/package/tap-summary)
53
[![status](https://travis-ci.org/zoubin/tap-summary.svg?branch=master)](https://travis-ci.org/zoubin/tap-summary)
64
[![dependencies](https://david-dm.org/zoubin/tap-summary.svg)](https://david-dm.org/zoubin/tap-summary)
75
[![devDependencies](https://david-dm.org/zoubin/tap-summary/dev-status.svg)](https://david-dm.org/zoubin/tap-summary#info=devDependencies)
86

9-
## Usage
7+
A reporter for TAP.
108

11-
```javascript
12-
var reporter = require('tap-summary')()
9+
## Example
1310

14-
```
11+
![summary](example/clip.gif)
1512

16-
or in `package.json`
13+
## Usage
1714

15+
### package.json
1816
```json
1917
{
2018
"scripts": {
@@ -30,6 +28,84 @@ or in `package.json`
3028
--no-progress Disable progress output during tests
3129
```
3230

33-
## Example
31+
### API
3432

35-
![summary](example/clip.gif)
33+
```js
34+
var summarize = require('tap-summary')
35+
36+
var fs = require('fs')
37+
fs.createReadStream('test.tap')
38+
.pipe(summarize({
39+
ansi: true,
40+
progress: true,
41+
}))
42+
.pipe(process.stdout)
43+
44+
```
45+
46+
Also, the default formatter could be replaced with custom ones.
47+
48+
```js
49+
var reporter = require('tap-summary').reporter()
50+
51+
var fs = require('fs')
52+
fs.createReadStream('test.tap')
53+
.pipe(customize(reporter))
54+
.pipe(process.stdout)
55+
56+
```
57+
58+
The `reporter` is a `Duplex`,
59+
which consumes the TAP input and output nothing by default.
60+
However, it emits the following events during the process,
61+
so that `customize` could listen to them and add something into the output.
62+
63+
* reporter.on('test.start', test => {}).
64+
Fired when a new test detected.
65+
* reporter.on('test.end', test => {}).
66+
Fired when the end of a test reached.
67+
* reporter.on('test.assert', (assertion, test) => {}).
68+
Fired when a new assertion found.
69+
* reporter.on('summary', (stats, fails, comments) => {}).
70+
Fired when all TAP input has been processed.
71+
72+
Details about the `test` and `assertion` object could be found [here][tap-out].
73+
74+
The `stats` object:
75+
```js
76+
var stats = {
77+
// the total time (ms) it takes
78+
duration: duration,
79+
// the total number of assertions planned
80+
planned: res.plans.reduce(function (p, c) {
81+
return c.to - c.from + 1 + p;
82+
}, 0),
83+
// the actual total number of assertions found
84+
assertions: res.asserts.length,
85+
// the number of successful assertions
86+
pass: res.pass.length,
87+
// the number of failed assertions
88+
fail: res.fail.length,
89+
// the number of comments found
90+
comments: res.comments.length,
91+
}
92+
93+
```
94+
95+
`fails` will be `null` unless `stats.fail > 0`:
96+
```js
97+
{
98+
testName: [failedAssertion]
99+
}
100+
101+
```
102+
103+
`comments` will be `null` unless `stats.comments > 0`:
104+
```js
105+
{
106+
testName: [comment]
107+
}
108+
109+
```
110+
111+
[tap-out]: https://github.com/scottcorgan/tap-out

example/unnamed-test.js

-6
This file was deleted.

index.js

+2-4
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@ var reporter = require('./lib/reporter')
22
var Formatter = require('./lib/formatter')
33

44
module.exports = function (opts) {
5-
return reporter(new Formatter(opts))
5+
return new Formatter(opts).init(reporter())
66
}
7-
module.exports.Formatter = Formatter
87
module.exports.reporter = reporter
9-
module.exports.parser = require('./lib/parser')
10-
8+
module.exports.Formatter = Formatter

lib/formatter.js

+15-8
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,9 @@ Formatter.prototype.init = function (reporter) {
1616
var self = this
1717

1818
reporter.push(LF + this.splitter(' Tests '))
19-
2019
reporter.on('test.start', function (test) {
2120
Object.defineProperty(test, 'title', { get: getTitle })
2221
})
23-
2422
function getTitle() {
2523
return this.name + ' [' +
2624
'pass: ' + this.pass + ', fail: ' + this.fail +
@@ -32,15 +30,24 @@ Formatter.prototype.init = function (reporter) {
3230
reporter.on('test.start', function (test) {
3331
this.push(LF + self.format('# ' + test.title, 'cha.eraseLine'))
3432
})
35-
36-
reporter.on('test.pass', function (test) {
37-
this.push(self.format('# ' + test.title, 'cha.eraseLine'))
38-
})
39-
40-
reporter.on('test.fail', function (test) {
33+
reporter.on('test.assert', function (assertion, test) {
4134
this.push(self.format('# ' + test.title, 'cha.eraseLine'))
4235
})
4336
}
37+
38+
reporter.on('test.end', function (test) {
39+
this.push(self.test(test))
40+
})
41+
reporter.on('summary', function (stats, fails, comments) {
42+
this.push(self.summary(stats))
43+
if (fails) {
44+
this.push(self.fail(fails))
45+
}
46+
if (comments) {
47+
this.push(self.comment(comments))
48+
}
49+
})
50+
return reporter
4451
}
4552

4653
Formatter.prototype.summary = function (summary) {

lib/parser.js

-97
This file was deleted.

0 commit comments

Comments
 (0)