-
-
Notifications
You must be signed in to change notification settings - Fork 535
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: improve the worker integrity warning (#2091)
- Loading branch information
1 parent
a0f8021
commit e749355
Showing
6 changed files
with
61 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
import { devUtils } from '~/core/utils/internal/devUtils' | ||
import type { SetupWorkerInternalContext } from '../setupWorker/glossary' | ||
|
||
/** | ||
* Check whether the registered Service Worker has been | ||
* generated by the installed version of the library. | ||
* Prints a warning message if the worker scripts mismatch. | ||
*/ | ||
export async function checkWorkerIntegrity( | ||
context: SetupWorkerInternalContext, | ||
): Promise<void> { | ||
// Request the integrity checksum from the registered worker. | ||
context.workerChannel.send('INTEGRITY_CHECK_REQUEST') | ||
|
||
const { payload } = await context.events.once('INTEGRITY_CHECK_RESPONSE') | ||
|
||
// Compare the response from the Service Worker and the | ||
// global variable set during the build. | ||
|
||
// The integrity is validated based on the worker script's checksum | ||
// that's derived from its minified content during the build. | ||
// The "SERVICE_WORKER_CHECKSUM" global variable is injected by the build. | ||
if (payload.checksum !== SERVICE_WORKER_CHECKSUM) { | ||
devUtils.warn( | ||
`The currently registered Service Worker has been generated by a different version of MSW (${payload.packageVersion}) and may not be fully compatible with the installed version. | ||
It's recommended you update your worker script by running this command: | ||
\u2022 npx msw init <PUBLIC_DIR> | ||
You can also automate this process and make the worker script update automatically upon the library installations. Read more: https://mswjs.io/docs/cli/init.`, | ||
) | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters