1
- /* global describe, it, afterEach, beforeEach */
1
+ /* global describe, it, afterEach, before */
2
2
3
3
require ( 'chai' ) . should ( )
4
4
5
- var fs = require ( 'fs' ) ,
5
+ var _ = require ( 'lodash' ) ,
6
+ fs = require ( 'fs' ) ,
6
7
spawn = require ( 'child_process' ) . spawn ,
7
8
NYC = require ( '../' ) ,
8
9
path = require ( 'path' ) ,
@@ -12,12 +13,13 @@ describe('nyc', function () {
12
13
var fixtures = path . resolve ( __dirname , './fixtures' )
13
14
14
15
describe ( 'cwd' , function ( ) {
16
+
15
17
afterEach ( function ( ) {
16
18
delete process . env . NYC_CWD
17
19
rimraf . sync ( path . resolve ( fixtures , './nyc_output' ) )
18
20
} )
19
21
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 ( ) {
21
23
var nyc = new NYC ( )
22
24
23
25
nyc . cwd . should . eql ( process . cwd ( ) )
@@ -32,8 +34,8 @@ describe('nyc', function () {
32
34
} )
33
35
} )
34
36
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 ( ) {
37
39
var nyc = new NYC ( {
38
40
cwd : path . resolve ( __dirname , './fixtures' )
39
41
} )
@@ -43,24 +45,26 @@ describe('nyc', function () {
43
45
} )
44
46
45
47
describe ( 'wrap' , function ( ) {
46
- afterEach ( function ( ) {
47
- delete global . __coverage__ [ './a.js' ]
48
- } )
48
+ var nyc
49
49
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 ( )
53
53
} ) ) . wrap ( )
54
-
55
- var A = require ( './fixtures/a' )
56
- A . should . match ( / _ _ c o v _ / )
57
54
} )
58
55
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 ( / _ _ c o v _ / )
65
+ } )
63
66
67
+ it ( 'writes coverage report when process exits' , function ( done ) {
64
68
var proc = spawn ( './bin/nyc.js' , [ 'index.js' ] , {
65
69
cwd : process . cwd ( ) ,
66
70
env : process . env ,
@@ -72,18 +76,42 @@ describe('nyc', function () {
72
76
return done ( )
73
77
} )
74
78
} )
75
- } )
76
79
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 )
80
102
} )
81
103
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 ) {
83
111
var nyc = new NYC ( {
84
112
cwd : fixtures
85
113
} ) ,
86
- proc = spawn ( '../../bin/nyc.js' , [ 'a .js' ] , {
114
+ proc = spawn ( '../../bin/nyc.js' , [ 'sigterm .js' ] , {
87
115
cwd : fixtures ,
88
116
env : process . env ,
89
117
stdio : [ process . stdin , process . stdout , process . stderr ]
@@ -94,8 +122,8 @@ describe('nyc', function () {
94
122
{
95
123
add : function ( report ) {
96
124
// 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' )
99
127
}
100
128
} ,
101
129
{
0 commit comments