From 109ffc6f21e7552a8c979ce3c828855b687857b7 Mon Sep 17 00:00:00 2001 From: Jon Gallant <2163001+jongio@users.noreply.github.com> Date: Wed, 17 Jul 2024 22:18:08 +0000 Subject: [PATCH] Add script parameters --- cli/azd/.vscode/launch.json | 4 +- cli/azd/cmd/scripts.go | 77 +++++++++++-------- .../testdata/TestUsage-azd-script-run.snap | 6 +- 3 files changed, 54 insertions(+), 33 deletions(-) diff --git a/cli/azd/.vscode/launch.json b/cli/azd/.vscode/launch.json index 1123a587f3d..63c419f9ed0 100644 --- a/cli/azd/.vscode/launch.json +++ b/cli/azd/.vscode/launch.json @@ -32,14 +32,14 @@ "program": "${workspaceFolder}", "console": "integratedTerminal", "args": [ - "auth", "login" + "script", "run", "start" //"pipeline", "config", "--principal-name", "foo", "--provider", "github" //"package", "api", "--debug" //"provision" //"up" //"env", "new" ], - //"cwd": "~/workspace/cwd/path", + "cwd": "/workspaces/fast-api-test-2", // "env": { // "INT_TAG_VALUE":"1989" // } diff --git a/cli/azd/cmd/scripts.go b/cli/azd/cmd/scripts.go index e26c0445587..5d3eb0e5337 100644 --- a/cli/azd/cmd/scripts.go +++ b/cli/azd/cmd/scripts.go @@ -47,16 +47,20 @@ func newScriptsRunFlags(cmd *cobra.Command, global *internal.GlobalCommandOption func newScriptsRunCmd() *cobra.Command { return &cobra.Command{ - Use: "run ", + Use: "run [name]", Short: "Runs the specified script for the project", - Args: cobra.ExactArgs(1), + Args: cobra.MaximumNArgs(1), } } type scriptsRunFlags struct { internal.EnvFlag - global *internal.GlobalCommandOptions - platform string + global *internal.GlobalCommandOptions + platform string + run string + shell string + continueOnError bool + interactive bool } func (f *scriptsRunFlags) Bind(local *pflag.FlagSet, global *internal.GlobalCommandOptions) { @@ -64,6 +68,10 @@ func (f *scriptsRunFlags) Bind(local *pflag.FlagSet, global *internal.GlobalComm f.global = global local.StringVar(&f.platform, "platform", "", "Forces scripts to run for the specified platform.") + local.StringVar(&f.run, "run", "", "Inline script to run.") + local.StringVar(&f.shell, "shell", "sh", "Shell to use for the script.") + local.BoolVar(&f.continueOnError, "continueOnError", true, "Continue on error.") + local.BoolVar(&f.interactive, "interactive", true, "Run in interactive mode.") } type scriptsRunAction struct { @@ -99,28 +107,50 @@ func newScriptsRunAction( const noScriptFoundMessage = " (No script found)" func (sra *scriptsRunAction) Run(ctx context.Context) (*actions.ActionResult, error) { - scriptName := sra.args[0] + var scriptName string + if len(sra.args) > 0 { + scriptName = sra.args[0] + } + + if scriptName == "" && sra.flags.run == "" { + return nil, fmt.Errorf("either a script name or --run must be specified") + } // Command title sra.console.MessageUxItem(ctx, &ux.MessageTitle{ Title: "Running scripts (azd scripts run)", TitleNote: fmt.Sprintf( - "Finding and executing %s scripts for environment %s", + "Finding and executing %s scripts", output.WithHighLightFormat(scriptName), - output.WithHighLightFormat(sra.env.Name()), ), }) - // Project level scripts - if err := sra.processScripts( - ctx, - sra.projectConfig.Path, - scriptName, - fmt.Sprintf("Running %s command script for project", scriptName), - fmt.Sprintf("Project: %s Script Output", scriptName), - sra.projectConfig.Scripts, // Use projectConfig.Scripts directly - ); err != nil { - return nil, err + if scriptName != "" { + // Named script from azure.yaml + if err := sra.processScripts( + ctx, + sra.projectConfig.Path, + scriptName, + fmt.Sprintf("Running %s command script for project", scriptName), + fmt.Sprintf("Project: %s Script Output", scriptName), + sra.projectConfig.Scripts, + ); err != nil { + return nil, err + } + } else { + // Inline script from command-line parameters + script := &ext.HookConfig{ + Run: sra.flags.run, + Shell: ext.ShellType(sra.flags.shell), + ContinueOnError: sra.flags.continueOnError, + Interactive: sra.flags.interactive, + } + if err := sra.prepareScript("inline-script", script); err != nil { + return nil, err + } + if err := sra.execScript(ctx, "Running inline script", sra.projectConfig.Path, script); err != nil { + return nil, err + } } return &actions.ActionResult{ @@ -212,18 +242,5 @@ func (sra *scriptsRunAction) prepareScript(name string, script *ext.HookConfig) } script.Name = name - script.Interactive = true - - sra.configureScriptFlags(script.Windows) - sra.configureScriptFlags(script.Posix) - return nil } - -func (sra *scriptsRunAction) configureScriptFlags(script *ext.HookConfig) { - if script == nil { - return - } - - script.Interactive = true -} diff --git a/cli/azd/cmd/testdata/TestUsage-azd-script-run.snap b/cli/azd/cmd/testdata/TestUsage-azd-script-run.snap index b620ab1a1c7..2f2add4470c 100644 --- a/cli/azd/cmd/testdata/TestUsage-azd-script-run.snap +++ b/cli/azd/cmd/testdata/TestUsage-azd-script-run.snap @@ -2,13 +2,17 @@ Runs the specified script for the project Usage - azd script run [flags] + azd script run [name] [flags] Flags + --continueOnError : Continue on error. --docs : Opens the documentation for azd script run in your web browser. -e, --environment string : The name of the environment to use. -h, --help : Gets help for run. + --interactive : Run in interactive mode. --platform string : Forces scripts to run for the specified platform. + --run string : Inline script to run. + --shell string : Shell to use for the script. Global Flags -C, --cwd string : Sets the current working directory.