-
Notifications
You must be signed in to change notification settings - Fork 18
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
Using import:
to mock globals messes up coverage (with c8)
#296
Comments
if there's no objection, I'd like to close this issue to merge with an earlier similar issue #271 (will wait for reply) There is a long-outstanding issue at the c8 repo for this bcoe/c8#325 The maintainer requested a reproduction and I submitted one, but there was no follow-up bcoe/c8#501 possibly the solution would need to come in multiple separated PRs |
I'm surprised the coverage report is correct when modules and not globals are mocked |
I have no problem with merging this with #271 but it would be nice to describe this To me it sounds like that these are 2 different problems that might have the same underlying cause? |
If you recommend any changes the title or anything else around that ticket they can be made.
Okay, keep this issue open For mocking global values, esmock returns a modified version of source file(s) to node's loader; where the global value being mocked is defined at the top of the file. Maybe that change would need to be coordinated with the coverage tool in some way, but to be honest I don't know how to solve the issue. const {fetch} = global.esmockCacheGet("treeid5"); // <- esmock adds this
// rest of file Any ideas for a solution? |
One thing I've been doing as an alternative way to mock these globals is to use For example something like this if I want to replace the global
You can make these changes to globalThis after the source file being tested is loaded, so you could put something like this in the logic of |
So it seems supporting Maybe support for a second "import"-like namespace, such as "globalThis", could be added in order to use One of the main benefits of esmock imo is that it can be used with concurrent tests and so using globalThis is a downgrade in that regard. If you are around feel free to chime in @koshic Also "setting" and "clearing" properties of |
I wish there were a way to avoid using |
node.js' native coverage tooling now allows one to specify files for coverage analysis nodejs/node#53553 Have not tried it myself yet, but perhaps native coverage results do not exhibit this same issue |
|
this issue also happens using node's native test coverage tools. another idea is to add 'global' definitions to the bottom of the file using "var" so to make the definitions available at the top of the file |
@iambumblehead can |
I experimented with adding using var but the definitions are not "hoisted" the way that I expected. This results in a runtime error where dateWrapper becomes const dateWrapper = Date
export {
dateWrapper
}
var Date = { now: () => 'now' } changing 'var' for const or let results in |
@koshic thanks for the suggestion that might be something to try. wondering if there is something similar for native node test coverage tools. |
ime usage of c8 ignore removes sections of code from being included in the report, but it does not elide those lines from the analysis in a way that would shift the lines being reported |
I also tried replacing "const" with " var" to try and get the hoisting behaviour... but var-defined dateWrapper is still 'undefined' sourcesafe.replace(/const/g, ' var') I'm all out of ideas |
well, node runs all tests now run separated threads with own global environment and maybe the globals could be defined there without side-effects that would have occurred in earlier versions |
Technically we can fix source map for the particular module via inline directive. If tested module is a 'pure JS' (== loaded without loader hooks) source map is not exists so coverage tools will use original source, right (we are testing source code, not compiled packages with corresponding .map files)? If tested module was transformed via hooks, previous hook may (should for more or less good tools like tsx) provide source map in separate field -> we can fix it as we want. |
it's not quite true due to https://nodejs.org/docs/latest/api/cli.html#--experimental-test-isolationmode |
This is a really interesting idea. Re-stating this idea, we would include our own source-map directive which references our own modified version of the file, possibly an updated version of a source-map from the previous hook applied to the file. Thinking about this |
const dateWrapper = Date
export {
dateWrapper
}
await (async () => (await import('./globalsredefine.js')).setItBack())()
export * from './globalsredefine.js' globalsredefine.js var originalDate = Date
globalThis.Date = { now: () => 'now' }
const setItBack = () => {
globalThis.Date = originalDate
}
export {
setItBack
} test (passing) test('should use mocked global', async () => {
const hostObjects = await import('../local/usesImportObjects.js')
assert.strictEqual(hostObjects.dateWrapper.now(), 'now')
assert.strictEqual(typeof Date.now(), 'number') maybe there is some potential here,
but this approach mutates globalThis and not sure what the best way to "unset" that would be and overall is not entirely different from the earlier suggestion #296 (comment) |
elaborating on that idea, its possible to get the calling files from the stack trace at TestContext.<anonymous> (file:///Users/bumble/test.global.test.js:18:46)', and so another thing that could be done is, check the stack trace to see if the originating call should have the default global value behaviour or the mocked behaviour globalThis.Date = {
now: function (...args) {
const mocksAvailable = mocksForThisCaller((new Error).stack)
return mocksAvailable
? mocksAvailable['now'](...args)
: originalDate.now(...args)
}
} |
we could also possibly use querystring in a clever way and attach some reset behaviour to |
another very hacky idea is to replace the references to global variables with function calls that use the exact same number of characters to return a mocked version of the thing, something like this -const dateWrapper = Date
-const setTimeoutWrapper = setTimeout
-const fetchWrapper = fetch
-const reqUsers = async url => fetch(url)
+const dateWrapper = ZZ()
+const setTimeoutWrapper = ZZZZZZZZ()
+const fetchWrapper = ZZC()
+const reqUsers = async url => ZZC()(url)
export {
dateWrapper,
setTimeoutWrapper,
fetchWrapper,
reqUsers as default,
child
}
export * from './globalsredefine.js' |
If I use
import:
in esmock to mock a global it messes up the coverage report. At least it does when run withc8 mocha
. I constructed a minimal test scenario for it below:Here's an example source file
src/myfile.js
:And here's an example test for it. It only tests the
testFun
method, but it has a mock defined for the globalfetch
(which isn't actually used):When I run this and look at the coverage report it looks like this:
The above coverage report is clearly wrong.
If I comment out the line with the import, e.g.:
the coverage report is correct again:
Note that using esmock with things other than globals, doesn't have this issue, e.g. the following doesn't cause this issue:
It would be great if I can use the globals mocking without messing up the coverage report 😄
The text was updated successfully, but these errors were encountered: