|
1 |
| -var through = require('through2') |
2 |
| -var duplexer = require('duplexer2') |
3 |
| -var parser = require('tap-out') |
4 |
| -var format = require('ansi-escape') |
5 |
| -var symbols = require('figures') |
6 |
| -var prettyMs = require('pretty-ms') |
7 |
| -var LF = '\n' |
8 |
| - |
9 |
| -module.exports = function () { |
10 |
| - var tap = parser() |
11 |
| - var output = through() |
12 |
| - var test |
13 |
| - |
14 |
| - var duration = 0 |
15 |
| - output.push(LF + splitter(' Tests ')) |
16 |
| - tap.on('test', function (res) { |
17 |
| - update() |
18 |
| - test = { |
19 |
| - name: res.name, |
20 |
| - pass: 0, |
21 |
| - fail: 0, |
22 |
| - get title() { |
23 |
| - return this.name + |
24 |
| - ' [' + |
25 |
| - 'pass: ' + this.pass + |
26 |
| - ', fail: ' + this.fail + |
27 |
| - (test.end ? ', duration: ' + prettyMs(test.duration) : '') + |
28 |
| - ']' |
29 |
| - }, |
30 |
| - start: new Date(), |
31 |
| - } |
32 |
| - output.push(LF + format.cha.eraseLine.escape('# ' + test.title)) |
33 |
| - }) |
34 |
| - |
35 |
| - tap.on('pass', function () { |
36 |
| - ++test.pass |
37 |
| - output.push(format.cha.eraseLine.escape('# ' + test.title)) |
38 |
| - }) |
39 |
| - |
40 |
| - tap.on('fail', function () { |
41 |
| - ++test.fail |
42 |
| - output.push(format.cha.eraseLine.escape('# ' + test.title)) |
43 |
| - }) |
44 |
| - |
45 |
| - tap.on('output', function (res) { |
46 |
| - update() |
47 |
| - output.push(formatSummary(res, { duration: duration })) |
48 |
| - if (res.fail.length) { |
49 |
| - dup.failed = true |
50 |
| - output.push(formatFail(res)) |
51 |
| - } |
52 |
| - if (res.comments.length) { |
53 |
| - output.push(formatComment(res)) |
54 |
| - } |
55 |
| - output.push(LF + LF) |
56 |
| - output.push(null) |
57 |
| - }) |
58 |
| - |
59 |
| - function update() { |
60 |
| - if (test) { |
61 |
| - test.end = new Date() |
62 |
| - test.duration = test.end - test.start |
63 |
| - duration += test.duration |
64 |
| - if (test.fail) { |
65 |
| - output.push(format.cha.red.eraseLine.escape(symbols.cross + ' ' + test.title)) |
66 |
| - } else { |
67 |
| - output.push(format.cha.green.eraseLine.escape(symbols.tick + ' ' + test.title)) |
68 |
| - } |
69 |
| - } |
70 |
| - } |
71 |
| - |
72 |
| - var dup = duplexer(tap, output) |
73 |
| - return dup |
74 |
| -} |
75 |
| - |
76 |
| -function formatSummary(res, extra) { |
77 |
| - var output = [LF] |
78 |
| - output.push(splitter(' Summary ')) |
79 |
| - output.push(format.cyan.escape('duration: ' + prettyMs(extra.duration))) |
80 |
| - output.push(format.cyan.escape('assertions: ' + res.asserts.length)) |
81 |
| - if (res.pass.length) { |
82 |
| - output.push(format.green.escape('pass: ' + res.pass.length)) |
83 |
| - } else { |
84 |
| - output.push(format.cyan.escape('pass: ' + res.pass.length)) |
85 |
| - } |
86 |
| - if (res.fail.length) { |
87 |
| - output.push(format.red.escape('fail: ' + res.fail.length)) |
88 |
| - } else { |
89 |
| - output.push(format.cyan.escape('fail: ' + res.fail.length)) |
90 |
| - } |
91 |
| - return output.join(LF) |
92 |
| -} |
93 |
| - |
94 |
| -function formatComment(res) { |
95 |
| - var comments = res.comments.reduce(function (o, c) { |
96 |
| - var name = getTest(c.test, res.tests).raw |
97 |
| - o[name] = o[name] || [] |
98 |
| - o[name].push(c.raw) |
99 |
| - return o |
100 |
| - }, {}) |
101 |
| - var output = [LF] |
102 |
| - output.push(splitter(' Comments ')) |
103 |
| - output.push(Object.keys(comments).map(function (name) { |
104 |
| - return format.cyan.underline.escape(name) + LF + comments[name].join(LF) |
105 |
| - }).join(LF + LF)) |
106 |
| - return output.join(LF) |
107 |
| -} |
108 |
| - |
109 |
| -function splitter(s) { |
110 |
| - var len = s && s.length || 0 |
111 |
| - var max = 80 |
112 |
| - var left = max - len >> 1 |
113 |
| - return format.yellow.escape( |
114 |
| - repeat('-', left) + (s || '') + repeat('-', max - len - left) |
115 |
| - ) |
116 |
| -} |
117 |
| - |
118 |
| -function repeat(str, n) { |
119 |
| - if (str.repeat) { |
120 |
| - return str.repeat(n) |
121 |
| - } |
122 |
| - return (new Array(n + 1)).join(str) |
123 |
| -} |
124 |
| - |
125 |
| -function getTest(n, tests) { |
126 |
| - for (var i = 0, len = tests.length; i < len; ++i) { |
127 |
| - if (~~n === tests[i].number) { |
128 |
| - return tests[i] |
129 |
| - } |
130 |
| - } |
131 |
| - return null |
132 |
| -} |
133 |
| - |
134 |
| -function formatFail(res) { |
135 |
| - var fail = res.fail.reduce(function (o, c) { |
136 |
| - var name = getTest(c.test, res.tests).name |
137 |
| - o[name] = o[name] || [format.cyan.underline.escape('# ' + name)] |
138 |
| - o[name].push(format.red.escape(' ' + symbols.cross + ' ' + c.name)) |
139 |
| - o[name].push(prettifyError(c)) |
140 |
| - return o |
141 |
| - }, {}) |
142 |
| - |
143 |
| - var output = [LF] |
144 |
| - output.push(splitter(' Fails ')) |
145 |
| - output.push( |
146 |
| - Object.keys(fail).map(function (name) { |
147 |
| - return fail[name].join(LF) |
148 |
| - }).join(LF + LF) |
149 |
| - ) |
150 |
| - return output.join(LF) |
151 |
| -} |
152 |
| - |
153 |
| -function prettifyError(assertion) { |
154 |
| - var rawError = assertion.error.raw |
155 |
| - var ret = rawError.split(LF) |
156 |
| - var stack = assertion.error.stack |
157 |
| - if (stack) { |
158 |
| - stack = stack.split(LF) |
159 |
| - var padding = repeat(' ', ret[ret.length - 1].length) |
160 |
| - ret = ret.concat(stack.map(function (s) { |
161 |
| - return padding + s |
162 |
| - })) |
163 |
| - } |
164 |
| - return format.cyan.escape(ret.join(LF)) |
165 |
| -} |
| 1 | +module.exports = require('./lib/summary') |
166 | 2 |
|
0 commit comments