Skip to content

Commit 2611ba4

Browse files
author
Benjamin Coe
committed
handle more exit codes
1 parent 25fcac7 commit 2611ba4

File tree

9 files changed

+99
-67
lines changed

9 files changed

+99
-67
lines changed

bin/nyc.js

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
#!/usr/bin/env node
22

3-
var NYC = require('../')
3+
var NYC = require('../'),
4+
yargs = require('yargs')
5+
.usage('$0 [file-to-instrument]')
6+
.example('$0 ./node_modules/.bin/mocha', 'run mocha test-suite and output JSON files with coverage information')
47

58
;(new NYC()).wrap()
69

@@ -17,4 +20,6 @@ if (process.argv[1]) {
1720
delete require('module')._cache[process.argv[1]]
1821
process.argv[1] = require('path').resolve(process.argv[1])
1922
require('module').runMain()
23+
} else {
24+
yargs.showHelp()
2025
}

index.js

+35-19
Original file line numberDiff line numberDiff line change
@@ -55,37 +55,41 @@ NYC.prototype._wrapRequire = function () {
5555

5656
module._compile(stripBom(content), filename)
5757
}
58+
}
5859

59-
// ouptut temp coverage reports as processes exit.
60-
process.on('exit', function () {
61-
if (!global.__coverage__) return
60+
NYC.prototype._wrapExit = function () {
61+
var _this = this,
62+
outputCoverage = function (arg) {
63+
if (!global.__coverage__) return
6264

63-
fs.writeFileSync(
64-
path.resolve(_this.tmpDirectory(), './', process.pid + '.json'),
65-
JSON.stringify(global.__coverage__),
66-
'utf-8'
67-
)
65+
fs.writeFileSync(
66+
path.resolve(_this.tmpDirectory(), './', process.pid + '.json'),
67+
JSON.stringify(global.__coverage__),
68+
'utf-8'
69+
)
70+
}
71+
72+
// output temp coverage reports as processes exit.
73+
;['exit', 'SIGTERM', 'SIGINT', 'SIGHUP'].forEach(function (signal) {
74+
process.on(signal, function () {
75+
outputCoverage()
76+
if (signal === 'SIGTERM') process.exit()
77+
})
6878
})
6979
}
7080

7181
NYC.prototype.wrap = function () {
7282
spawnWrap([this.subprocessBin], {NYC_CWD: this.cwd})
7383
this._wrapRequire()
84+
this._wrapExit()
85+
return this
7486
}
7587

7688
NYC.prototype.report = function (_collector, _reporter) {
77-
var _this = this,
78-
collector = _collector || new istanbul.Collector(),
79-
reporter = _reporter || new istanbul.Reporter(),
80-
files = fs.readdirSync(_this.tmpDirectory()),
81-
reports = _.map(files, function (f) {
82-
return JSON.parse(fs.readFileSync(
83-
path.resolve(_this.tmpDirectory(), './', f),
84-
'utf-8'
85-
))
86-
})
89+
var collector = _collector || new istanbul.Collector(),
90+
reporter = _reporter || new istanbul.Reporter()
8791

88-
reports.forEach(function (report) {
92+
this._loadReports().forEach(function (report) {
8993
collector.add(report)
9094
})
9195

@@ -94,6 +98,18 @@ NYC.prototype.report = function (_collector, _reporter) {
9498
reporter.write(collector, true, function () {})
9599
}
96100

101+
NYC.prototype._loadReports = function () {
102+
var _this = this,
103+
files = fs.readdirSync(this.tmpDirectory())
104+
105+
return _.map(files, function (f) {
106+
return JSON.parse(fs.readFileSync(
107+
path.resolve(_this.tmpDirectory(), './', f),
108+
'utf-8'
109+
))
110+
})
111+
}
112+
97113
NYC.prototype.tmpDirectory = function () {
98114
return path.resolve(this.cwd, './', this.tempDirectory)
99115
}

node_modules/spawn-wrap/index.js

-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@
1414
"config": {
1515
"nyc": {
1616
"exclude": [
17-
"node_modules/",
18-
"test/"
17+
"node_modules/"
1918
]
2019
}
2120
},

test/fixtures/a.js

-15
This file was deleted.

test/fixtures/sighup.js

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
process.kill(process.pid, 'SIGHUP')

test/fixtures/sigint.js

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
process.kill(process.pid, 'SIGINT')

test/fixtures/sigterm.js

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
process.kill(process.pid, 'SIGTERM')

test/nyc-test.js

+54-26
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1-
/* global describe, it, afterEach, beforeEach */
1+
/* global describe, it, afterEach, before */
22

33
require('chai').should()
44

5-
var fs = require('fs'),
5+
var _ = require('lodash'),
6+
fs = require('fs'),
67
spawn = require('child_process').spawn,
78
NYC = require('../'),
89
path = require('path'),
@@ -12,12 +13,13 @@ describe('nyc', function () {
1213
var fixtures = path.resolve(__dirname, './fixtures')
1314

1415
describe('cwd', function () {
16+
1517
afterEach(function () {
1618
delete process.env.NYC_CWD
1719
rimraf.sync(path.resolve(fixtures, './nyc_output'))
1820
})
1921

20-
it('sets cwd to process.cwd() if no environment variable set', function () {
22+
it('sets cwd to process.cwd() if no environment variable is set', function () {
2123
var nyc = new NYC()
2224

2325
nyc.cwd.should.eql(process.cwd())
@@ -32,8 +34,8 @@ describe('nyc', function () {
3234
})
3335
})
3436

35-
describe('exclude', function () {
36-
it('loads exclude patterns from package.json in cwd', function () {
37+
describe('config', function () {
38+
it("loads 'exclude' patterns from package.json", function () {
3739
var nyc = new NYC({
3840
cwd: path.resolve(__dirname, './fixtures')
3941
})
@@ -43,24 +45,26 @@ describe('nyc', function () {
4345
})
4446

4547
describe('wrap', function () {
46-
afterEach(function () {
47-
delete global.__coverage__['./a.js']
48-
})
48+
var nyc
4949

50-
it('wraps modules with coverage counters when they are required', function () {
51-
(new NYC({
52-
cwd: path.resolve(__dirname, './fixtures')
50+
before(function () {
51+
nyc = (new NYC({
52+
cwd: process.cwd()
5353
})).wrap()
54-
55-
var A = require('./fixtures/a')
56-
A.should.match(/__cov_/)
5754
})
5855

59-
it('wraps spawn and writes coverage report for subprocesses', function (done) {
60-
(new NYC({
61-
cwd: process.cwd()
62-
})).wrap()
56+
it('wraps modules with coverage counters when they are required', function () {
57+
// clear the module cache so that
58+
// we pull index.js in again and wrap it.
59+
var name = require.resolve('../')
60+
delete require.cache[name]
61+
62+
// when we require index.js it shoudl be wrapped.
63+
var index = require('../')
64+
index.should.match(/__cov_/)
65+
})
6366

67+
it('writes coverage report when process exits', function (done) {
6468
var proc = spawn('./bin/nyc.js', ['index.js'], {
6569
cwd: process.cwd(),
6670
env: process.env,
@@ -72,18 +76,42 @@ describe('nyc', function () {
7276
return done()
7377
})
7478
})
75-
})
7679

77-
describe('report', function () {
78-
beforeEach(function () {
79-
rimraf.sync(path.resolve(fixtures, './nyc_output'))
80+
function testSignal (signal, done) {
81+
var proc = spawn('./bin/nyc.js', ['./test/fixtures/' + signal + '.js'], {
82+
cwd: process.cwd(),
83+
env: process.env,
84+
stdio: [process.stdin, process.stdout, process.stderr]
85+
})
86+
87+
proc.on('close', function () {
88+
var reports = _.filter(nyc._loadReports(), function (report) {
89+
return report['./test/fixtures/' + signal + '.js']
90+
})
91+
reports.length.should.equal(1)
92+
return done()
93+
})
94+
}
95+
96+
it('writes coverage report when process is killed with SIGTERM', function (done) {
97+
testSignal('sigterm', done)
98+
})
99+
100+
it('writes coverage report when process is killed with SIGHUP', function (done) {
101+
testSignal('sighup', done)
80102
})
81103

82-
it('runs reports for JSON in output directory', function (done) {
104+
it('writes coverage report when process is killed with SIGINT', function (done) {
105+
testSignal('sigint', done)
106+
})
107+
})
108+
109+
describe('report', function () {
110+
it('runs reports for all JSON in output directory', function (done) {
83111
var nyc = new NYC({
84112
cwd: fixtures
85113
}),
86-
proc = spawn('../../bin/nyc.js', ['a.js'], {
114+
proc = spawn('../../bin/nyc.js', ['sigterm.js'], {
87115
cwd: fixtures,
88116
env: process.env,
89117
stdio: [process.stdin, process.stdout, process.stderr]
@@ -94,8 +122,8 @@ describe('nyc', function () {
94122
{
95123
add: function (report) {
96124
// the subprocess we ran should have created
97-
// a coverage report on ./a.js.
98-
Object.keys(report).should.include('./a.js')
125+
// a coverage report on ./sigterm.js.
126+
Object.keys(report).should.include('./sigterm.js')
99127
}
100128
},
101129
{

0 commit comments

Comments
 (0)