Skip to content
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

fix: --all now respects --extension flag. #357

Merged
merged 6 commits into from
May 16, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 2 additions & 1 deletion lib/report.js
Original file line number Diff line number Diff line change
Expand Up @@ -190,12 +190,13 @@ class Report {
result: emptyReports
})
const workingDirs = this.src
const { extension } = this.exclude
for (const workingDir of workingDirs) {
this.exclude.globSync(workingDir).forEach((f) => {
const fullPath = resolve(workingDir, f)
if (!fileIndex.has(fullPath)) {
const ext = extname(fullPath)
if (ext === '.js' || ext === '.ts' || ext === '.mjs') {
if (extension.includes(ext)) {
const stat = statSync(fullPath)
const sourceMap = getSourceMapFromFile(fullPath)
if (sourceMap) {
Expand Down
24 changes: 24 additions & 0 deletions test/fixtures/custom-ext2.special
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
require('./async')

console.info('i am a line of code 2')

function apple (awesome) {
if (false || true) {
console.info('what2')
}
if (true || false) {
console.log('hey2')
}
}

function missed () {

}

function missed2 () {

}

apple()
apple()
apple()
17 changes: 16 additions & 1 deletion test/integration.js
Original file line number Diff line number Diff line change
Expand Up @@ -639,7 +639,22 @@ describe('c8', () => {
'--extension=.js',
'--extension=.special',
'--temp-directory=tmp/extension',
'--clean=false',
'--clean=true',
nodePath,
require.resolve('./fixtures/custom-ext.special')
])
output.toString('utf8').should.matchSnapshot()
})

it('includes coverage when extensions specified with --all', () => {
const { output } = spawnSync(nodePath, [
c8Path,
'--all',
'--exclude="test/*.js"',
'--extension=.js',
'--extension=.special',
'--temp-directory=tmp/extension',
'--clean=true',
nodePath,
require.resolve('./fixtures/custom-ext.special')
])
Expand Down
78 changes: 78 additions & 0 deletions test/integration.js.snap
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,84 @@ All files | 83.33 | 85.71 | 60 | 83.33 |
,"
`;

exports[`c8 --extension includes coverage when extensions specified with --all 1`] = `
",hey
i am a line of code
what
hey
what
hey
what
hey
---------------------------------------|---------|----------|---------|---------|-------------------
File | % Stmts | % Branch | % Funcs | % Lines | Uncovered Line #s
---------------------------------------|---------|----------|---------|---------|-------------------
All files | 1.91 | 12 | 6.25 | 1.91 |
c8 | 0 | 0 | 0 | 0 |
index.js | 0 | 0 | 0 | 0 | 1
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think you should add clean=false to the prior test case, and this test case, at which point the output should be much smaller.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think they are already set to clean=false, did you mean change them to clean=true? thanks.

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, clean=true, if you don't mind 👍 then we can have less noisy test output.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi @bcoe, I believe clean=true is now set, as of my last commit. Please confirm? Thanks!

c8/bin | 0 | 0 | 0 | 0 |
c8.js | 0 | 0 | 0 | 0 | 1-52
c8/coverage | 0 | 0 | 0 | 0 |
block-navigation.js | 0 | 0 | 0 | 0 | 1-87
prettify.js | 0 | 0 | 0 | 0 | 1-2
sorter.js | 0 | 0 | 0 | 0 | 1-196
c8/lib | 0 | 0 | 0 | 0 |
is-cjs-esm-bridge.js | 0 | 0 | 0 | 0 | 1-10
parse-args.js | 0 | 0 | 0 | 0 | 1-218
report.js | 0 | 0 | 0 | 0 | 1-337
source-map-from-file.js | 0 | 0 | 0 | 0 | 1-100
c8/lib/commands | 0 | 0 | 0 | 0 |
check-coverage.js | 0 | 0 | 0 | 0 | 1-70
report.js | 0 | 0 | 0 | 0 | 1-41
c8/test/fixtures | 15.95 | 35.29 | 20 | 15.95 |
async.js | 100 | 100 | 100 | 100 |
c8-ignore-next.js | 0 | 0 | 0 | 0 | 1-22
c8-ignore-start-stop.js | 0 | 0 | 0 | 0 | 1-21
computed-method.js | 0 | 0 | 0 | 0 | 1-15
custom-ext.special | 75 | 66.66 | 33.33 | 75 | 14-16,18-20
custom-ext2.special | 0 | 0 | 0 | 0 | 1-24
disable-fs-promises.js | 0 | 0 | 0 | 0 | 1-4
issue-254.js | 0 | 0 | 0 | 0 | 1-7
multiple-spawn.js | 0 | 0 | 0 | 0 | 1-12
normal.js | 0 | 0 | 0 | 0 | 1-24
shebang.js | 0 | 0 | 0 | 0 | 1-8
subprocess.js | 0 | 0 | 0 | 0 | 1-15
c8/test/fixtures/all/ts-compiled | 0 | 0 | 0 | 0 |
loaded.ts | 0 | 0 | 0 | 0 | 1-19
main.ts | 0 | 0 | 0 | 0 | 1-4
c8/test/fixtures/all/ts-compiled/dir | 0 | 0 | 0 | 0 |
unloaded.ts | 0 | 0 | 0 | 0 | 1-5
c8/test/fixtures/all/vanilla | 0 | 0 | 0 | 0 |
loaded.js | 0 | 0 | 0 | 0 | 1-19
main.js | 0 | 0 | 0 | 0 | 1-4
c8/test/fixtures/all/vanilla/dir | 0 | 0 | 0 | 0 |
unloaded.js | 0 | 0 | 0 | 0 | 1-5
c8/test/fixtures/multidir1 | 0 | 0 | 0 | 0 |
file1.js | 0 | 0 | 0 | 0 | 1
c8/test/fixtures/multidir2 | 0 | 0 | 0 | 0 |
file2.js | 0 | 0 | 0 | 0 | 1
c8/test/fixtures/report | 0 | 0 | 0 | 0 |
allowExternal.js | 0 | 0 | 0 | 0 | 1
report-multi-dir-external.js | 0 | 0 | 0 | 0 | 1-12
report-single-dir-external.js | 0 | 0 | 0 | 0 | 1-12
srcOverride.js | 0 | 0 | 0 | 0 | 1
c8/test/fixtures/source-maps | 0 | 0 | 0 | 0 |
branches.js | 0 | 0 | 0 | 0 | 1-20
fake-source-map.js | 0 | 0 | 0 | 0 | 1-7
c8/test/fixtures/source-maps/branches | 0 | 0 | 0 | 0 |
branch-1.js | 0 | 0 | 0 | 0 | 1-12
branch-2.js | 0 | 0 | 0 | 0 | 1-9
branches.js | 0 | 0 | 0 | 0 | 1-20
branches.typescript.ts | 0 | 0 | 0 | 0 | 1-25
c8/test/fixtures/source-maps/classes | 0 | 0 | 0 | 0 |
class-1.js | 0 | 0 | 0 | 0 | 1-5
class-2.js | 0 | 0 | 0 | 0 | 1-23
classes.js | 0 | 0 | 0 | 0 | 1-27
classes.typescript.ts | 0 | 0 | 0 | 0 | 1-33
---------------------------------------|---------|----------|---------|---------|-------------------
,"
`;

exports[`c8 ESM Modules collects coverage for ESM modules 1`] = `
",bar foo
------------|---------|----------|---------|---------|-------------------
Expand Down