generated from MetaMask/metamask-module-template
-
Notifications
You must be signed in to change notification settings - Fork 6
refactor(shims, extension): Optimize building and testing workflows #37
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
Closed
Closed
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
26d3c5e
refactor(shims, extension): Optimize building and testing workflows
SMotaal ac39daf
Revert "refactor(shims, extension): Optimize building and testing wor…
SMotaal 5991a8b
chore: delete `apply-lockdown.mjs`
SMotaal ff23674
chore: Remove extraneous exports from `shims`
SMotaal 96f4c4c
chore: Rename `endoify.mjs` to `endoify.js`
SMotaal 9fc70c1
chore: Reapply intended changes with history intact
SMotaal File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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,47 @@ | ||
| import './endoify.js'; | ||
| // eslint-disable-next-line n/no-extraneous-import | ||
| import type { HandledPromiseConstructor } from '@endo/eventual-send'; | ||
| import { describe, expect, it } from 'vitest'; | ||
|
|
||
| describe('endoified', () => { | ||
| it('calls lockdown', () => { | ||
| expect(Object.isFrozen(Array.prototype)).toBe(true); // Due to `lockdown()`, and therefore `ses` | ||
| }); | ||
|
|
||
| it('loads eventual-send', () => { | ||
| expect(typeof HandledPromise).not.toBe('undefined'); // Due to eventual send | ||
| }); | ||
| }); | ||
|
|
||
| describe(`endoify`, () => { | ||
| const assertions = [ | ||
| (): boolean => typeof globalThis === 'object', | ||
| (): boolean => typeof lockdown === 'function', | ||
| (): boolean => typeof repairIntrinsics === 'function', | ||
| (): boolean => typeof Compartment === 'function', | ||
| (): boolean => typeof assert === 'function', | ||
| (): boolean => typeof HandledPromise === 'function', | ||
| (): boolean => typeof harden === 'function', | ||
| (): boolean => typeof getStackString === 'function', | ||
| (): boolean => { | ||
| try { | ||
| return !Object.assign(harden({ a: 1 }), { b: 2 }); | ||
| } catch { | ||
| return true; | ||
| } | ||
| }, | ||
| ]; | ||
|
|
||
| for (const assertion of assertions) { | ||
| it(`asserts ${String(assertion).replace(/^.*?=>\s*/u, '')}`, () => { | ||
| expect(assertion()).toBe(true); | ||
| }); | ||
| } | ||
| }); | ||
|
|
||
| declare global { | ||
| // eslint-disable-next-line no-var | ||
| var getStackString: (error: Error) => string; | ||
| // eslint-disable-next-line no-var | ||
| var HandledPromise: HandledPromiseConstructor; | ||
| } |
This file contains hidden or 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,3 @@ | ||
| /* eslint-disable import-x/extensions */ | ||
| /* eslint-disable import-x/no-unassigned-import */ | ||
| import '@ocap/shims/endoify'; |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 |
|---|---|---|
| @@ -1,23 +1,33 @@ | ||
| // eslint-disable-next-line spaced-comment | ||
| /// <reference types="vitest" /> | ||
|
|
||
| import path from 'path'; | ||
| import { defineConfig, mergeConfig } from 'vitest/config'; | ||
|
|
||
| import viteConfig from './vite.config.js'; | ||
| import { getDefaultConfig } from '../../vitest.config.packages.js'; | ||
|
|
||
| const defaultConfig = getDefaultConfig(); | ||
| // @ts-expect-error We can and will delete this. | ||
| delete defaultConfig.test.coverage.thresholds; | ||
|
|
||
| export default mergeConfig( | ||
| const config = mergeConfig( | ||
| viteConfig, | ||
| mergeConfig( | ||
| defaultConfig, | ||
| defineConfig({ | ||
| test: { | ||
| setupFiles: '../test-utils/src/env/mock-endo.ts', | ||
| pool: 'vmThreads', | ||
| alias: [ | ||
| { | ||
| find: '@ocap/shims/endoify', | ||
| replacement: path.resolve('../shims/src/endoify.js'), | ||
| // eslint-disable-next-line @typescript-eslint/explicit-function-return-type | ||
| customResolver: (id) => ({ external: true, id }), | ||
| }, | ||
| ], | ||
| }, | ||
| }), | ||
| ), | ||
| ); | ||
|
|
||
| delete config.test.coverage.thresholds; | ||
|
|
||
| export default config; |
This file contains hidden or 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 hidden or 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 hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.
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.
May be better to opt into the transform than to opt out.
I'm in favour of keeping it in for now. The transform is deliberate, speedy and includes opt-in options for
validationanddebuggingfor if and when they would be needed.Some of the cons is that this is still an extra step, and that it uses regular expressions instead of AST to rewrite the bundled sources, which I am arguing against myself.
Ideally, we could upstream the replacements to @endojs/endo and avoiding needing this step all together.
Either way, the flag needs to be renamed to
--without-rollup-parser-optimizationsor--with-rollup-parser-optimizationsor something more reflective of what is actually taking place 🤷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.
I drafted endojs/endo#2436 today to see if this can be upstreamed!