Skip to content

Commit 53fef48

Browse files
author
Benjamin Coe
committed
put tests around @shackpank's work on .istanbul.yml
1 parent faa0afb commit 53fef48

File tree

5 files changed

+96
-12
lines changed

5 files changed

+96
-12
lines changed

README.md

+11
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,17 @@ adding the following configuration:
7474
}}
7575
```
7676

77+
## Configuring Istanbul
78+
79+
Behind the scenes nyc uses [istanbul](https://www.npmjs.com/package/istanbul). You
80+
can place a `.istanbul.yml` file in your project's root directory to pass config
81+
setings to istanbul's code instrumenter:
82+
83+
```yml
84+
instrumentation:
85+
preserve-comments: true
86+
```
87+
7788
## Integrating With Coveralls
7889
7990
[coveralls.io](https://coveralls.io) is a great tool for adding

index.js

+22-12
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,6 @@
22

33
var _ = require('lodash'),
44
fs = require('fs'),
5-
istanbul = require('istanbul'),
6-
instrumenterConfig = istanbul.config.loadFile().instrumentation.config,
7-
instrumenter = new istanbul.Instrumenter({
8-
coverageVariable: instrumenterConfig.variable,
9-
embedSource: instrumenterConfig['embed-source'],
10-
noCompact: !instrumenterConfig.compact,
11-
preserveComments: instrumenterConfig['preserve-comments']
12-
}),
135
mkdirp = require('mkdirp'),
146
path = require('path'),
157
rimraf = require('rimraf'),
@@ -24,7 +16,8 @@ function NYC (opts) {
2416
),
2517
tempDirectory: './nyc_output',
2618
cwd: process.env.NYC_CWD || process.cwd(),
27-
reporter: 'text'
19+
reporter: 'text',
20+
istanbul: require('istanbul')
2821
}, opts)
2922

3023
var config = require(path.resolve(this.cwd, './package.json')).config || {}
@@ -36,9 +29,26 @@ function NYC (opts) {
3629
return new RegExp(p)
3730
})
3831

32+
this.instrumenter = this._createInstrumenter()
33+
3934
mkdirp.sync(this.tmpDirectory())
4035
}
4136

37+
NYC.prototype._createInstrumenter = function () {
38+
var configFile = path.resolve(this.cwd, './.istanbul.yml')
39+
40+
if (!fs.existsSync(configFile)) configFile = undefined
41+
42+
var instrumenterConfig = this.istanbul.config.loadFile(configFile).instrumentation.config
43+
44+
return new this.istanbul.Instrumenter({
45+
coverageVariable: '__coverage__',
46+
embedSource: instrumenterConfig['embed-source'],
47+
noCompact: !instrumenterConfig.compact,
48+
preserveComments: instrumenterConfig['preserve-comments']
49+
})
50+
}
51+
4252
NYC.prototype.cleanup = function () {
4353
if (!process.env.NYC_CWD) rimraf.sync(this.tmpDirectory())
4454
}
@@ -58,7 +68,7 @@ NYC.prototype._wrapRequire = function () {
5868
}
5969

6070
if (instrument) {
61-
content = instrumenter.instrumentSync(
71+
content = _this.instrumenter.instrumentSync(
6272
content,
6373
'./' + relFile
6474
)
@@ -96,8 +106,8 @@ NYC.prototype.wrap = function (bin) {
96106
}
97107

98108
NYC.prototype.report = function (_collector, _reporter) {
99-
var collector = _collector || new istanbul.Collector(),
100-
reporter = _reporter || new istanbul.Reporter()
109+
var collector = _collector || new this.istanbul.Collector(),
110+
reporter = _reporter || new this.istanbul.Reporter()
101111

102112
this._loadReports().forEach(function (report) {
103113
collector.add(report)

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@
4343
"devDependencies": {
4444
"chai": "^2.3.0",
4545
"coveralls": "^2.11.2",
46+
"sinon": "^1.14.1",
4647
"standard": "^3.7.3",
4748
"tap": "1.0.4"
4849
},

test/fixtures/.istanbul.yml

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
instrumentation:
2+
preserve-comments: true

test/nyc-test.js

+60
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ var _ = require('lodash'),
55
NYC = require('../'),
66
path = require('path'),
77
rimraf = require('rimraf'),
8+
sinon = require('sinon'),
89
spawn = require('child_process').spawn
910

1011
require('chai').should()
@@ -127,4 +128,63 @@ describe('nyc', function () {
127128
})
128129
})
129130
})
131+
132+
describe('.istanbul.yml configuration', function () {
133+
var istanbul = require('istanbul')
134+
var configSpy = sinon.spy(istanbul.config, 'loadFile')
135+
var instrumenterSpy = sinon.spy(istanbul, 'Instrumenter')
136+
137+
function writeConfig () {
138+
fs.writeFileSync('./.istanbul.yml', 'instrumentation:\n\tpreserve-comments: true', 'utf-8')
139+
}
140+
141+
function afterEach () {
142+
configSpy.reset()
143+
instrumenterSpy.reset()
144+
rimraf.sync('./.istanbul.yml')
145+
}
146+
147+
it('it handles having no .istanbul.yml in the root directory', function (done) {
148+
afterEach()
149+
var nyc = new NYC()
150+
return done()
151+
})
152+
153+
it('uses the values in .istanbul.yml to instantiate the instrumenter', function (done) {
154+
writeConfig()
155+
156+
var nyc = new NYC({
157+
istanbul: istanbul
158+
})
159+
160+
istanbul.config.loadFile.calledWithMatch('.istanbul.yml').should.equal(true)
161+
istanbul.Instrumenter.calledWith({
162+
coverageVariable: '__coverage__',
163+
embedSource: false,
164+
noCompact: false,
165+
preserveComments: false
166+
}).should.equal(true)
167+
168+
afterEach()
169+
return done();
170+
})
171+
172+
it('loads the .istanbul.yml configuration from NYC_CWD', function (done) {
173+
var nyc = new NYC({
174+
istanbul: istanbul,
175+
cwd: './test/fixtures'
176+
})
177+
178+
istanbul.config.loadFile.calledWithMatch('test/fixtures/.istanbul.yml').should.equal(true)
179+
istanbul.Instrumenter.calledWith({
180+
coverageVariable: '__coverage__',
181+
embedSource: false,
182+
noCompact: false,
183+
preserveComments: true
184+
}).should.equal(true)
185+
186+
afterEach()
187+
return done()
188+
})
189+
})
130190
})

0 commit comments

Comments
 (0)