-
Notifications
You must be signed in to change notification settings - Fork 159
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
Add replay command #3617
Add replay command #3617
Conversation
7375b0e
to
269565e
Compare
This PR seems inactive. If it's still relevant, please add a comment saying so. Otherwise, take no action. |
Some activity to keep the PR open, will pick this up after ATC work this week. |
269565e
to
384610e
Compare
Coverage report
Show new covered files 🐣
Test suite run success1688 tests passing in 785 suites. Report generated by 🧪jest coverage report action from a5364d1 |
e1e31d7
to
011d2a3
Compare
011d2a3
to
8d5efce
Compare
We detected some changes at either packages/*/src or packages/cli-kit/assets/cli-ruby/** and there are no updates in the .changeset. |
import {joinPath} from '@shopify/cli-kit/node/path' | ||
|
||
export default class FunctionReplay extends Command { | ||
static summary = 'Replays a function locally based on a FunctionRunEvent.' |
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.
We've moving away from Event
and towards Log
, we should do a sweep here
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.
If we expose this term externally, do we need documentation on what it means?
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.
Thoughts:
- How can we merge this while still keeping it hidden? Not to prevent someone from finding out, but just to not mislead them into thinking that it is ready to use
- Let's talk more about the overall spec for the CLI commands on Monday
It seems like the best path forward here is to park this, start finalizing the app dev command including writing the files, and circle back once that's done. We should also have our specs cleared up by then and in every CLI issue.
Related to Since there can be multiple function running, if we save all the runs the functions directory on invocation id, it might be confusing for developer to filter through that list. 🤔 |
import {joinPath} from '@shopify/cli-kit/node/path' | ||
|
||
export default class FunctionReplay extends Command { | ||
static summary = 'Replays a function locally based on a FunctionRunEvent.' |
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.
If we expose this term externally, do we need documentation on what it means?
edf7099
to
082bb63
Compare
export: Flags.string({ | ||
char: 'e', | ||
hidden: false, | ||
description: 'Name of the Web Assembly export to invoke.', | ||
default: '_start', | ||
env: 'SHOPIFY_FLAG_EXPORT', | ||
}), |
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.
💭 Isn't the export being invoked defined by the run itself? E.G. a run using fetch
couldn't be sensibly rerun using run
. Perhaps that should be part of the payload so you never have to specify it here?
Probably not urgent for this PR, but would be an improvement for later.
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.
🤔 It's one of the flags that we can invoke function runner with so that's how it ended up here.
The export is defined in the extension's shopify.extension.toml
, so I think we could maybe improve this by just reading from there?
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.
Yeah, I think as a future improvement, it'd be nice to read the export from the function config. I'm thinking of some logic like this:
- If there's no export: default to
_start
because it's a legacy function - If there's a single export: default to that export (unless overridden with the
-e
flag) - If there's multiple exports: either let them select the export or fail saying one needs to be provided with the
-e
flag
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 agree with @DuncanUszkay1 that this should be part of the payload, the input you are replaying would be specific to a certain target.
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.
Will add that to the payload in my upcoming PR that also adds source/source namespace- we can probably do a follow-up CLI PR that starts to use all of those fields
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.
Overall looking pretty good! Just have some comments 😄
export: Flags.string({ | ||
char: 'e', | ||
hidden: false, | ||
description: 'Name of the Web Assembly export to invoke.', | ||
default: '_start', | ||
env: 'SHOPIFY_FLAG_EXPORT', | ||
}), |
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.
Yeah, I think as a future improvement, it'd be nice to read the export from the function config. I'm thinking of some logic like this:
- If there's no export: default to
_start
because it's a legacy function - If there's a single export: default to that export (unless overridden with the
-e
flag) - If there's multiple exports: either let them select the export or fail saying one needs to be provided with the
-e
flag
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.
LGTM aside from dealing with the 'no logs to replay' case explicitly
91b04be
to
dba2b8d
Compare
726eaf5
to
a5364d1
Compare
Differences in type declarationsWe detected differences in the type declarations generated by Typescript for this branch compared to the baseline ('main' branch). Please, review them to ensure they are backward-compatible. Here are some important things to keep in mind:
New type declarationsWe found no new type declarations in this PR Existing type declarationspackages/cli-kit/dist/public/node/logs.d.ts@@ -1,3 +1,3 @@
-export declare const getLogsDir: string;
+export declare const getLogsDir: () => string;
export declare const createLogsDir: (path: string) => Promise<void>;
export declare const writeLog: (path: string, logData: string) => Promise<void>;
\ No newline at end of file
|
WHY are these changes introduced?
Part of the LogStreaming Prototype project.
WHAT is this pull request doing?
shopify app function replay
, which:How to test your changes?
export SHOPIFY_CLI_ENABLE_APP_LOG_POLLING=1
app dev
and run through checkout to trigger some logs, confirm they are being pulled.