1
1
'use strict' ;
2
2
3
3
var debug = require ( 'debug' ) ( 'ava' ) ;
4
+ var hasha = require ( 'hasha' ) ;
5
+ var cacha = require ( 'cacha' ) ;
6
+ var join = require ( 'path' ) . join ;
7
+
8
+ var cache = cacha ( join ( module . paths [ 1 ] , '.cache' , 'ava' ) ) ;
4
9
5
10
var opts = JSON . parse ( process . argv [ 2 ] ) ;
6
11
@@ -36,24 +41,17 @@ sourceMapSupport.install({
36
41
}
37
42
} ) ;
38
43
39
- var createEspowerPlugin = require ( 'babel-plugin-espower/create' ) ;
40
44
var requireFromString = require ( 'require-from-string' ) ;
41
45
var loudRejection = require ( 'loud-rejection/api' ) ( process ) ;
42
46
var serializeError = require ( 'serialize-error' ) ;
43
- var babel = require ( 'babel-core' ) ;
44
47
var send = require ( './send' ) ;
45
48
46
49
var testPath = opts . file ;
47
50
48
- // initialize power-assert
49
- var powerAssert = createEspowerPlugin ( babel , {
50
- patterns : require ( './enhance-assert' ) . PATTERNS
51
- } ) ;
52
-
53
51
// if generators are not supported, use regenerator
54
52
var options = {
55
53
presets : [ 'stage-2' , 'es2015' ] ,
56
- plugins : [ powerAssert , 'transform-runtime' ] ,
54
+ plugins : [ 'transform-runtime' ] ,
57
55
sourceMaps : true
58
56
} ;
59
57
@@ -70,11 +68,43 @@ if (inputSourceMap) {
70
68
}
71
69
72
70
// include test file
73
- var transpiled = babel . transformFileSync ( testPath , options ) ;
74
- sourceMapCache [ testPath ] = transpiled . map ;
75
- requireFromString ( transpiled . code , testPath , {
76
- appendPaths : module . paths
77
- } ) ;
71
+ var cachePath = hasha ( testPath ) ;
72
+ var hashPath = cachePath + '_hash' ;
73
+
74
+ var prevHash = cache . getSync ( hashPath , { encoding : 'utf8' } ) ;
75
+ var currHash = hasha . fromFileSync ( testPath ) ;
76
+
77
+ if ( prevHash === currHash ) {
78
+ var cached = JSON . parse ( cache . getSync ( cachePath ) ) ;
79
+
80
+ sourceMapCache [ testPath ] = cached . map ;
81
+ requireFromString ( cached . code , testPath , {
82
+ appendPaths : module . paths
83
+ } ) ;
84
+ } else {
85
+ var createEspowerPlugin = require ( 'babel-plugin-espower/create' ) ;
86
+ var babel = require ( 'babel-core' ) ;
87
+
88
+ // initialize power-assert
89
+ var powerAssert = createEspowerPlugin ( babel , {
90
+ patterns : require ( './enhance-assert' ) . PATTERNS
91
+ } ) ;
92
+
93
+ options . plugins . push ( powerAssert ) ;
94
+
95
+ var transpiled = babel . transformFileSync ( testPath , options ) ;
96
+
97
+ cache . setSync ( hashPath , currHash ) ;
98
+ cache . setSync ( cachePath , JSON . stringify ( {
99
+ code : transpiled . code ,
100
+ map : transpiled . map
101
+ } ) ) ;
102
+
103
+ sourceMapCache [ testPath ] = transpiled . map ;
104
+ requireFromString ( transpiled . code , testPath , {
105
+ appendPaths : module . paths
106
+ } ) ;
107
+ }
78
108
79
109
process . on ( 'uncaughtException' , function ( exception ) {
80
110
send ( 'uncaughtException' , { exception : serializeError ( exception ) } ) ;
0 commit comments