@@ -28,6 +28,12 @@ import {
28
28
29
29
import type { Class } from 'type-fest' ;
30
30
31
+ const parseErrorStackRegExp =
32
+ / a t (?< fn > \S + ) (?: .* ? ) ? \( ? (?< path > (?: \/ | f i l e : ) .* ?) (?: \) | $ ) / i;
33
+
34
+ const parseScriptFilepathRegExp =
35
+ / \/ b a b e l - p l u g i n - t e s t e r \/ ( d i s t | s r c ) \/ ( i n d e x | p l u g i n - t e s t e r ) \. ( j | t ) s $ / ;
36
+
31
37
export default pluginTester ;
32
38
33
39
/**
@@ -110,8 +116,7 @@ export function pluginTester(options: PluginTesterOptions = {}) {
110
116
const baseConfig : PartialPluginTesterBaseConfig = {
111
117
babel : rawBaseConfig . babel || require ( '@babel/core' ) ,
112
118
baseBabelOptions : rawBaseConfig . babelOptions ,
113
- // TODO: implement default filepath inference using Error stack trace
114
- filepath : rawBaseConfig . filepath ?? rawBaseConfig . filename ,
119
+ filepath : rawBaseConfig . filepath ?? rawBaseConfig . filename ?? tryInferFilepath ( ) ,
115
120
endOfLine : rawBaseConfig . endOfLine ,
116
121
baseSetup : rawBaseConfig . setup ,
117
122
baseTeardown : rawBaseConfig . teardown ,
@@ -159,6 +164,76 @@ export function pluginTester(options: PluginTesterOptions = {}) {
159
164
return undefined ;
160
165
}
161
166
}
167
+
168
+ function tryInferFilepath ( ) {
169
+ const oldStackTraceLimit = Error . stackTraceLimit ;
170
+ Error . stackTraceLimit = Number . POSITIVE_INFINITY ;
171
+
172
+ try {
173
+ let inferredFilepath : string | undefined = undefined ;
174
+ // ? Turn the V8 call stack into function names and file paths
175
+ const reversedCallStack = (
176
+ new Error ( 'faux error' ) . stack
177
+ ?. split ( '\n' )
178
+ . map ( ( line ) => {
179
+ const { fn : functionName , path : filePath } =
180
+ line . match ( parseErrorStackRegExp ) ?. groups || { } ;
181
+
182
+ return functionName && filePath
183
+ ? {
184
+ functionName,
185
+ // ? Paranoid just in case the script name/path has colons
186
+ filePath : filePath . split ( ':' ) . slice ( 0 , - 2 ) . join ( ':' )
187
+ }
188
+ : undefined ;
189
+ } )
190
+ . filter ( < T > ( o : T ) : o is NonNullable < T > => Boolean ( o ) ) || [ ]
191
+ ) . reverse ( ) ;
192
+
193
+ // TODO: debug statement here displaying reversed call stack contents
194
+
195
+ if ( reversedCallStack ?. length ) {
196
+ // TODO: debug statements below
197
+ const referenceIndex = findReferenceStackIndex ( reversedCallStack ) ;
198
+
199
+ if ( referenceIndex ) {
200
+ inferredFilepath = reversedCallStack . at ( referenceIndex - 1 ) ?. filePath ;
201
+ }
202
+ }
203
+
204
+ // TODO: debug statement here outputting inferredFilepath
205
+
206
+ return inferredFilepath ;
207
+ } finally {
208
+ Error . stackTraceLimit = oldStackTraceLimit ;
209
+ }
210
+
211
+ function findReferenceStackIndex (
212
+ reversedCallStack : { functionName : string ; filePath : string } [ ]
213
+ ) {
214
+ // ? Different realms might have slightly different stacks depending on
215
+ // ? which file was imported. Return the first one found.
216
+ return [
217
+ reversedCallStack . findIndex ( ( { functionName, filePath } ) => {
218
+ return (
219
+ functionName == 'defaultPluginTester' &&
220
+ parseScriptFilepathRegExp . test ( filePath )
221
+ ) ;
222
+ } ) ,
223
+ reversedCallStack . findIndex ( ( { functionName, filePath } ) => {
224
+ return (
225
+ functionName == 'pluginTester' && parseScriptFilepathRegExp . test ( filePath )
226
+ ) ;
227
+ } ) ,
228
+ reversedCallStack . findIndex ( ( { functionName, filePath } ) => {
229
+ return (
230
+ functionName == 'resolveBaseConfig' &&
231
+ parseScriptFilepathRegExp . test ( filePath )
232
+ ) ;
233
+ } )
234
+ ] . find ( ( ndx ) => ndx != - 1 ) ;
235
+ }
236
+ }
162
237
}
163
238
164
239
function normalizeTests ( ) {
@@ -480,7 +555,7 @@ export function pluginTester(options: PluginTesterOptions = {}) {
480
555
{ [ $type ] : 'test-object' } as const ,
481
556
{ babelOptions : baseBabelOptions } ,
482
557
{
483
- babelOptions : { filename : getAbsolutePath ( filepath , codeFixture ) }
558
+ babelOptions : { filename : getAbsolutePath ( filepath , codeFixture ) ?? filepath }
484
559
} ,
485
560
{ babelOptions } ,
486
561
{
0 commit comments