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