- Notifications
You must be signed in to change notification settings - Fork928
feat: addtemplates delete
command#1443
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Changes fromall commits
f872b51
3a4782a
f7aca88
5c6b745
6279794
52b0f6d
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
package cli | ||
import ( | ||
"fmt" | ||
"github.com/spf13/cobra" | ||
"golang.org/x/xerrors" | ||
"github.com/coder/coder/cli/cliui" | ||
"github.com/coder/coder/codersdk" | ||
) | ||
func templateDelete() *cobra.Command { | ||
return &cobra.Command{ | ||
Use: "delete [name...]", | ||
Short: "Delete templates", | ||
RunE: func(cmd *cobra.Command, args []string) error { | ||
var ( | ||
ctx = cmd.Context() | ||
templateNames = []string{} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. This can only be a max of 1 right? I don't believe this needs to be an array! There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. I forgot to remove the max 1 limit! I think it's nicer if we take in more than one since it plays nicer with xargs. | ||
templates = []codersdk.Template{} | ||
) | ||
client, err := createClient(cmd) | ||
if err != nil { | ||
return err | ||
} | ||
organization, err := currentOrganization(cmd, client) | ||
if err != nil { | ||
return err | ||
} | ||
if len(args) > 0 { | ||
templateNames = args | ||
} else { | ||
allTemplates, err := client.TemplatesByOrganization(ctx, organization.ID) | ||
if err != nil { | ||
return xerrors.Errorf("get templates by organization: %w", err) | ||
} | ||
if len(allTemplates) == 0 { | ||
return xerrors.Errorf("no templates exist in the current organization %q", organization.Name) | ||
} | ||
opts := make([]string, 0, len(allTemplates)) | ||
for _, template := range allTemplates { | ||
opts = append(opts, template.Name) | ||
} | ||
selection, err := cliui.Select(cmd, cliui.SelectOptions{ | ||
Options: opts, | ||
}) | ||
if err != nil { | ||
return xerrors.Errorf("select template: %w", err) | ||
} | ||
for _, template := range allTemplates { | ||
if template.Name == selection { | ||
templates = append(templates, template) | ||
} | ||
} | ||
} | ||
for _, templateName := range templateNames { | ||
template, err := client.TemplateByName(ctx, organization.ID, templateName) | ||
if err != nil { | ||
return xerrors.Errorf("get template by name: %w", err) | ||
} | ||
templates = append(templates, template) | ||
} | ||
for _, template := range templates { | ||
err := client.DeleteTemplate(ctx, template.ID) | ||
if err != nil { | ||
return xerrors.Errorf("delete template %q: %w", template.Name, err) | ||
} | ||
_, _ = fmt.Fprintln(cmd.ErrOrStderr(), "Deleted template "+cliui.Styles.Code.Render(template.Name)+"!") | ||
} | ||
return nil | ||
}, | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
package cli_test | ||
import ( | ||
"context" | ||
"testing" | ||
"github.com/coder/coder/cli/clitest" | ||
"github.com/coder/coder/coderd/coderdtest" | ||
"github.com/coder/coder/codersdk" | ||
"github.com/coder/coder/pty/ptytest" | ||
"github.com/stretchr/testify/require" | ||
) | ||
func TestTemplateDelete(t *testing.T) { | ||
t.Parallel() | ||
t.Run("Ok", func(t *testing.T) { | ||
t.Parallel() | ||
client := coderdtest.New(t, nil) | ||
user := coderdtest.CreateFirstUser(t, client) | ||
_ = coderdtest.NewProvisionerDaemon(t, client) | ||
version := coderdtest.CreateTemplateVersion(t, client, user.OrganizationID, nil) | ||
_ = coderdtest.AwaitTemplateVersionJob(t, client, version.ID) | ||
template := coderdtest.CreateTemplate(t, client, user.OrganizationID, version.ID) | ||
cmd, root := clitest.New(t, "templates", "delete", template.Name) | ||
clitest.SetupConfig(t, client, root) | ||
require.NoError(t, cmd.Execute()) | ||
_, err := client.Template(context.Background(), template.ID) | ||
require.Error(t, err, "template should not exist") | ||
}) | ||
t.Run("Multiple", func(t *testing.T) { | ||
t.Parallel() | ||
client := coderdtest.New(t, nil) | ||
user := coderdtest.CreateFirstUser(t, client) | ||
_ = coderdtest.NewProvisionerDaemon(t, client) | ||
version := coderdtest.CreateTemplateVersion(t, client, user.OrganizationID, nil) | ||
_ = coderdtest.AwaitTemplateVersionJob(t, client, version.ID) | ||
templates := []codersdk.Template{ | ||
coderdtest.CreateTemplate(t, client, user.OrganizationID, version.ID), | ||
coderdtest.CreateTemplate(t, client, user.OrganizationID, version.ID), | ||
coderdtest.CreateTemplate(t, client, user.OrganizationID, version.ID), | ||
} | ||
templateNames := []string{} | ||
for _, template := range templates { | ||
templateNames = append(templateNames, template.Name) | ||
} | ||
cmd, root := clitest.New(t, append([]string{"templates", "delete"}, templateNames...)...) | ||
clitest.SetupConfig(t, client, root) | ||
require.NoError(t, cmd.Execute()) | ||
for _, template := range templates { | ||
_, err := client.Template(context.Background(), template.ID) | ||
require.Error(t, err, "template should not exist") | ||
} | ||
}) | ||
t.Run("Selector", func(t *testing.T) { | ||
t.Parallel() | ||
client := coderdtest.New(t, nil) | ||
user := coderdtest.CreateFirstUser(t, client) | ||
_ = coderdtest.NewProvisionerDaemon(t, client) | ||
version := coderdtest.CreateTemplateVersion(t, client, user.OrganizationID, nil) | ||
_ = coderdtest.AwaitTemplateVersionJob(t, client, version.ID) | ||
template := coderdtest.CreateTemplate(t, client, user.OrganizationID, version.ID) | ||
cmd, root := clitest.New(t, "templates", "delete") | ||
clitest.SetupConfig(t, client, root) | ||
pty := ptytest.New(t) | ||
cmd.SetIn(pty.Input()) | ||
cmd.SetOut(pty.Output()) | ||
execDone := make(chan error) | ||
go func() { | ||
execDone <- cmd.Execute() | ||
}() | ||
pty.WriteLine("docker-local") | ||
require.NoError(t, <-execDone) | ||
_, err := client.Template(context.Background(), template.ID) | ||
require.Error(t, err, "template should not exist") | ||
}) | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -45,6 +45,13 @@ func ExtractTemplateParam(db database.Store) func(http.Handler) http.Handler { | ||
return | ||
} | ||
if template.Deleted { | ||
httpapi.Write(rw, http.StatusNotFound, httpapi.Response{ | ||
Message: fmt.Sprintf("template %q does not exist", templateID), | ||
}) | ||
coadler marked this conversation as resolved. Show resolvedHide resolvedUh oh!There was an error while loading.Please reload this page. | ||
return | ||
} | ||
ctx := context.WithValue(r.Context(), templateParamContextKey{}, template) | ||
chi.RouteContext(ctx).URLParams.Add("organization", template.OrganizationID.String()) | ||
next.ServeHTTP(rw, r.WithContext(ctx)) | ||