This repository has been archived by the owner on Dec 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #96 from rafiramadhana/89-cmd-to-select-current-co…
…ntext Add use-context command
- Loading branch information
Showing
2 changed files
with
73 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -49,6 +49,23 @@ jobs: | |
layerform config set-context test-cloud -t cloud --url https://demo.layerform.dev --email [email protected] --password strongpass | ||
layerform config set-context test-local -t local --dir test | ||
- name: layerform config use-context | ||
run: | | ||
# fails if command succeeds | ||
! layerform config use-context test-does-not-exist # context does not exist | ||
# switch context to test-s3 | ||
layerform config use-context test-s3 | ||
layerform config get-contexts | tee usecontext | ||
! grep -E '^\*\s+test-local' usecontext | ||
grep -E '^\*\s+test-s3' usecontext | ||
# switch context to test-local | ||
layerform config use-context test-local | ||
layerform config get-contexts | tee usecontext | ||
grep -E '^\*\s+test-local' usecontext | ||
! grep -E '^\*\s+test-s3' usecontext | ||
- name: Configure | ||
run: | | ||
layerform configure --file examples/local/layerform.json | ||
|
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,56 @@ | ||
package cli | ||
|
||
import ( | ||
"fmt" | ||
"os" | ||
|
||
"github.com/pkg/errors" | ||
"github.com/spf13/cobra" | ||
|
||
"github.com/ergomake/layerform/internal/lfconfig" | ||
) | ||
|
||
func init() { | ||
configCmd.AddCommand(configUseContextCmd) | ||
} | ||
|
||
var configUseContextCmd = &cobra.Command{ | ||
Use: "use-context <name>", | ||
Short: "Use a context entry from layerform config file", | ||
Long: `Use a context entry from layerform config file. | ||
Using a name that does not exist will return error.`, | ||
Example: `# Use a context | ||
layerform config use-context local-example`, | ||
Args: cobra.ExactArgs(1), | ||
Run: func(cmd *cobra.Command, args []string) { | ||
name := args[0] | ||
|
||
cfg, err := lfconfig.Load("") | ||
if err != nil && !errors.Is(err, os.ErrNotExist) { | ||
fmt.Fprintf(os.Stderr, "%s\n", errors.Wrap(err, "fail to open config file")) | ||
os.Exit(1) | ||
} | ||
|
||
_, ok := cfg.Contexts[name] | ||
if !ok { | ||
fmt.Fprintf( | ||
os.Stderr, | ||
"no context exists with the name \"%s\".\n", | ||
name, | ||
) | ||
os.Exit(1) | ||
} | ||
|
||
cfg.CurrentContext = name | ||
|
||
err = cfg.Save() | ||
if err != nil { | ||
fmt.Fprintf(os.Stderr, "%s\n", errors.Wrap(err, "fail to save config file")) | ||
os.Exit(1) | ||
} | ||
|
||
fmt.Fprintf(os.Stdout, "Switched to context \"%s\".\n", name) | ||
}, | ||
SilenceErrors: true, | ||
} |