-
-
Notifications
You must be signed in to change notification settings - Fork 6.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Show coverage of sources related to tests in changed files #9769
Changes from 6 commits
18d7127
6cf2150
1c80400
e2665ea
4abe272
e724874
73271f0
0d50802
913617b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||
---|---|---|---|---|---|---|---|---|
|
@@ -51,6 +51,13 @@ const toTests = (context: Context, tests: Array<Config.Path>) => | |||||||
path, | ||||||||
})); | ||||||||
|
||||||||
const hasSCM = (changedFilesInfo: ChangedFiles) => { | ||||||||
const {repos} = changedFilesInfo; | ||||||||
// no SCM (git/hg/...) is found in any of the roots. | ||||||||
const noSCM = Object.values(repos).every(scm => scm.size === 0); | ||||||||
return !noSCM; | ||||||||
}; | ||||||||
|
||||||||
export default class SearchSource { | ||||||||
private _context: Context; | ||||||||
private _testPathCases: TestPathCases = []; | ||||||||
|
@@ -240,14 +247,11 @@ export default class SearchSource { | |||||||
changedFilesInfo: ChangedFiles, | ||||||||
collectCoverage: boolean, | ||||||||
): SearchResult { | ||||||||
const {repos, changedFiles} = changedFilesInfo; | ||||||||
// no SCM (git/hg/...) is found in any of the roots. | ||||||||
const noSCM = (Object.keys(repos) as Array< | ||||||||
keyof ChangedFiles['repos'] | ||||||||
>).every(scm => repos[scm].size === 0); | ||||||||
return noSCM | ||||||||
? {noSCM: true, tests: []} | ||||||||
: this.findRelatedTests(changedFiles, collectCoverage); | ||||||||
if (!hasSCM(changedFilesInfo)) { | ||||||||
return {noSCM: true, tests: []}; | ||||||||
} | ||||||||
const {changedFiles} = changedFilesInfo; | ||||||||
return this.findRelatedTests(changedFiles, collectCoverage); | ||||||||
} | ||||||||
|
||||||||
private _getTestPaths( | ||||||||
|
@@ -328,4 +332,29 @@ export default class SearchSource { | |||||||
|
||||||||
return searchResult; | ||||||||
} | ||||||||
|
||||||||
findRelatedSourcesFromTestsInChangedFiles( | ||||||||
changedFilesInfo: ChangedFiles, | ||||||||
): Array<string> { | ||||||||
if (!hasSCM(changedFilesInfo)) { | ||||||||
return []; | ||||||||
} | ||||||||
const {changedFiles} = changedFilesInfo; | ||||||||
const dependencyResolver = new DependencyResolver( | ||||||||
this._context.resolver, | ||||||||
this._context.hasteFS, | ||||||||
buildSnapshotResolver(this._context.config), | ||||||||
); | ||||||||
const relatedSourcesSet = new Set<string>(); | ||||||||
changedFiles.forEach(filePath => { | ||||||||
const isTestFile = this.isTestFilePath(filePath); | ||||||||
if (isTestFile) { | ||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||
const sourcePaths = dependencyResolver.resolve(filePath, { | ||||||||
skipNodeResolution: this._context.config.skipNodeResolution, | ||||||||
}); | ||||||||
sourcePaths.forEach(sourcePath => relatedSourcesSet.add(sourcePath)); | ||||||||
} | ||||||||
}); | ||||||||
return Array.from(relatedSourcesSet); | ||||||||
} | ||||||||
} |
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -531,4 +531,65 @@ describe('SearchSource', () => { | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
describe('findRelatedSourcesFromTestsInChangedFiles', () => { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const rootDir = path.resolve( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
__dirname, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
'../../../jest-runtime/src/__tests__/test_root', | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
beforeEach(done => { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const {options: config} = normalize( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
{ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
haste: { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
hasteImplModulePath: path.resolve( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
__dirname, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
'../../../jest-haste-map/src/__tests__/haste_impl.js', | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
), | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
providesModuleNodeModules: [], | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
name: 'SearchSource-findRelatedSourcesFromTestsInChangedFiles-tests', | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
rootDir, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
{} as Config.Argv, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Runtime.createContext(config, {maxWorkers, watchman: false}).then( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
context => { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
searchSource = new SearchSource(context); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
done(); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
diff looks big, but async await instead of |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
it('return empty set if no SCM', () => { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const requireRegularModule = path.join( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
rootDir, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
'RequireRegularModule.js', | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const sources = searchSource.findRelatedSourcesFromTestsInChangedFiles({ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
changedFiles: new Set([requireRegularModule]), | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
repos: { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
git: new Set(), | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
hg: new Set(), | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
expect(sources).toEqual([]); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
it('return sources required by tests', () => { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const regularModule = path.join(rootDir, 'RegularModule.js'); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const requireRegularModule = path.join( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
rootDir, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
'RequireRegularModule.js', | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const sources = searchSource.findRelatedSourcesFromTestsInChangedFiles({ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
changedFiles: new Set([requireRegularModule]), | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
repos: { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
git: new Set('/path/to/git'), | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
hg: new Set(), | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
expect(sources).toEqual([regularModule]); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}); |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -242,9 +242,22 @@ export default async function runJest({ | |
} | ||
|
||
if (changedFilesPromise) { | ||
testSchedulerContext.changedFiles = ( | ||
await changedFilesPromise | ||
).changedFiles; | ||
const changedFilesInfo = await changedFilesPromise; | ||
if (changedFilesInfo.changedFiles) { | ||
testSchedulerContext.changedFiles = changedFilesInfo.changedFiles; | ||
const sourcesRelatedToTestsInChangedFilesArray = contexts | ||
.map(context => { | ||
const searchSource = new SearchSource(context); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Creating the SearchSource for a given context is already done earlier, when finding related tests. We could optimize this by storing the |
||
const relatedSourceFromTestsInChangedFiles = searchSource.findRelatedSourcesFromTestsInChangedFiles( | ||
changedFilesInfo, | ||
); | ||
return relatedSourceFromTestsInChangedFiles; | ||
}) | ||
.reduce((total, paths) => total.concat(paths), []); | ||
testSchedulerContext.sourcesRelatedToTestsInChangedFiles = new Set( | ||
sourcesRelatedToTestsInChangedFilesArray, | ||
); | ||
} | ||
} | ||
|
||
const results = await new TestScheduler( | ||
|
Original file line number | Diff line number | Diff line change | ||||||
---|---|---|---|---|---|---|---|---|
|
@@ -93,8 +93,15 @@ export default function shouldInstrument( | |||||||
return false; | ||||||||
} | ||||||||
|
||||||||
if (options.changedFiles && !options.changedFiles.has(filename)) { | ||||||||
return false; | ||||||||
if (options.changedFiles) { | ||||||||
if (!options.changedFiles.has(filename)) { | ||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||
if (!options.sourcesRelatedToTestsInChangedFiles) { | ||||||||
return false; | ||||||||
} | ||||||||
if (!options.sourcesRelatedToTestsInChangedFiles.has(filename)) { | ||||||||
return false; | ||||||||
} | ||||||||
} | ||||||||
} | ||||||||
|
||||||||
return true; | ||||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The same DependencyResolver is also created for
findRelatedTests
. Can we cache it then?