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

Add replay command #3617

Merged
merged 30 commits into from
Jun 5, 2024
Merged

Add replay command #3617

merged 30 commits into from
Jun 5, 2024

Conversation

lopert
Copy link
Contributor

@lopert lopert commented Mar 28, 2024

WHY are these changes introduced?

Part of the LogStreaming Prototype project.

WHAT is this pull request doing?

  • adds a new command shopify app function replay, which:
    • reads a folder for run logs
    • presents the list of runs in a selector
    • parses the input from the selected run
    • forwards the run to function-runner

How to test your changes?

  • checkout this branch in your local CLI
  • export SHOPIFY_CLI_ENABLE_APP_LOG_POLLING=1
  • run app dev and run through checkout to trigger some logs, confirm they are being pulled.
  • run the following command from the CLI directory
pnpm shopify app function replay --path=<path-to-your-ext>
  • you might need to specify the export as well, ex:
pnpm shopify app function replay --path /Users/lopert/code/log-streaming/app/log-streamer/extensions/product-discount -e "run"

@lopert lopert force-pushed the lopert.runs-selector branch 2 times, most recently from 7375b0e to 269565e Compare March 28, 2024 19:41
Copy link
Contributor

This PR seems inactive. If it's still relevant, please add a comment saying so. Otherwise, take no action.
→ If there's no activity within a week, then a bot will automatically close this.
Thanks for helping to improve Shopify's dev tooling and experience.

@lopert
Copy link
Contributor Author

lopert commented Apr 29, 2024

Some activity to keep the PR open, will pick this up after ATC work this week.

@lopert lopert force-pushed the lopert.runs-selector branch from 269565e to 384610e Compare May 6, 2024 20:12
Copy link
Contributor

github-actions bot commented May 6, 2024

Coverage report

St.
Category Percentage Covered / Total
🟡 Statements
71.93% (+0.04% 🔼)
7278/10118
🟡 Branches
69.01% (-0.01% 🔻)
3572/5176
🟡 Functions
71.6% (+0.06% 🔼)
1946/2718
🟡 Lines
73.23% (+0.09% 🔼)
6854/9359
Show new covered files 🐣
St.
File Statements Branches Functions Lines
🔴
... / replay.ts
0% 0% 0% 0%
🟢
... / replay.ts
100% 100% 100% 100%
🟢
... / replay.ts
100% 66.67% 100% 100%

Test suite run success

1688 tests passing in 785 suites.

Report generated by 🧪jest coverage report action from a5364d1

@lopert lopert force-pushed the lopert.runs-selector branch 5 times, most recently from e1e31d7 to 011d2a3 Compare May 10, 2024 16:05
@lopert lopert requested review from mssalemi and DuncanUszkay1 May 10, 2024 17:08
@lopert lopert force-pushed the lopert.runs-selector branch from 011d2a3 to 8d5efce Compare May 10, 2024 17:23
@lopert lopert marked this pull request as ready for review May 10, 2024 18:14
Copy link
Contributor

We detected some changes at either packages/*/src or packages/cli-kit/assets/cli-ruby/** and there are no updates in the .changeset.
If the changes are user-facing, run "pnpm changeset add" to track your changes and include them in the next release CHANGELOG.

import {joinPath} from '@shopify/cli-kit/node/path'

export default class FunctionReplay extends Command {
static summary = 'Replays a function locally based on a FunctionRunEvent.'
Copy link
Contributor

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

Copy link
Contributor

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?

Copy link
Contributor

@DuncanUszkay1 DuncanUszkay1 left a 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.

@mssalemi
Copy link
Contributor

Related to yarn dev, and probably something we can discuss at meeting later, but how do we think these files should get saved from the yarn dev? (I guess we depend on each other on these PR's). Just thinking on how I should be saving these logs to a write. ✍️

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.'
Copy link
Contributor

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?

@lopert lopert force-pushed the lopert.runs-selector branch 2 times, most recently from edf7099 to 082bb63 Compare May 31, 2024 16:04
Comment on lines 36 to 42
export: Flags.string({
char: 'e',
hidden: false,
description: 'Name of the Web Assembly export to invoke.',
default: '_start',
env: 'SHOPIFY_FLAG_EXPORT',
}),
Copy link
Contributor

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.

Copy link
Contributor Author

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?

Copy link
Contributor

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

Copy link
Contributor

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.

Copy link
Contributor

@DuncanUszkay1 DuncanUszkay1 Jun 5, 2024

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

Copy link
Contributor

@andrewhassan andrewhassan left a 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 😄

Comment on lines 36 to 42
export: Flags.string({
char: 'e',
hidden: false,
description: 'Name of the Web Assembly export to invoke.',
default: '_start',
env: 'SHOPIFY_FLAG_EXPORT',
}),
Copy link
Contributor

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

Copy link
Contributor

@DuncanUszkay1 DuncanUszkay1 left a 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

@lopert lopert force-pushed the lopert.runs-selector branch from 91b04be to dba2b8d Compare June 5, 2024 18:20
@lopert lopert force-pushed the lopert.runs-selector branch from 726eaf5 to a5364d1 Compare June 5, 2024 19:58
Copy link
Contributor

github-actions bot commented Jun 5, 2024

Differences in type declarations

We 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:

  • Some seemingly private modules might be re-exported through public modules.
  • If the branch is behind main you might see odd diffs, rebase main into this branch.

New type declarations

We found no new type declarations in this PR

Existing type declarations

packages/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

@lopert lopert added this pull request to the merge queue Jun 5, 2024
Merged via the queue into main with commit 7ab6f92 Jun 5, 2024
@lopert lopert deleted the lopert.runs-selector branch June 5, 2024 20:33
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

6 participants