200 lines
4.7 KiB
Go
200 lines
4.7 KiB
Go
package delete
|
|
|
|
import (
|
|
"bytes"
|
|
"fmt"
|
|
"io"
|
|
"net/http"
|
|
"testing"
|
|
|
|
"github.com/cli/cli/v2/internal/ghrepo"
|
|
"github.com/cli/cli/v2/internal/prompter"
|
|
"github.com/cli/cli/v2/pkg/cmd/run/shared"
|
|
workflowShared "github.com/cli/cli/v2/pkg/cmd/workflow/shared"
|
|
"github.com/cli/cli/v2/pkg/cmdutil"
|
|
"github.com/cli/cli/v2/pkg/httpmock"
|
|
"github.com/cli/cli/v2/pkg/iostreams"
|
|
"github.com/google/shlex"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestNewCmdDelete(t *testing.T) {
|
|
tests := []struct {
|
|
name string
|
|
cli string
|
|
tty bool
|
|
wants DeleteOptions
|
|
wantsErr bool
|
|
prompterStubs func(*prompter.PrompterMock)
|
|
}{
|
|
{
|
|
name: "blank tty",
|
|
tty: true,
|
|
wants: DeleteOptions{
|
|
Prompt: true,
|
|
},
|
|
},
|
|
{
|
|
name: "blank nontty",
|
|
wantsErr: true,
|
|
},
|
|
{
|
|
name: "with arg",
|
|
cli: "1234",
|
|
wants: DeleteOptions{
|
|
RunID: "1234",
|
|
},
|
|
},
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
ios, _, _, _ := iostreams.Test()
|
|
ios.SetStdinTTY(tt.tty)
|
|
ios.SetStdoutTTY(tt.tty)
|
|
|
|
f := &cmdutil.Factory{
|
|
IOStreams: ios,
|
|
}
|
|
|
|
argv, err := shlex.Split(tt.cli)
|
|
assert.NoError(t, err)
|
|
|
|
var gotOpts *DeleteOptions
|
|
cmd := NewCmdDelete(f, func(opts *DeleteOptions) error {
|
|
gotOpts = opts
|
|
return nil
|
|
})
|
|
|
|
cmd.SetArgs(argv)
|
|
cmd.SetIn(&bytes.Buffer{})
|
|
cmd.SetOut(io.Discard)
|
|
cmd.SetErr(io.Discard)
|
|
|
|
_, err = cmd.ExecuteC()
|
|
if tt.wantsErr {
|
|
assert.Error(t, err)
|
|
return
|
|
}
|
|
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, tt.wants.RunID, gotOpts.RunID)
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestRunDelete(t *testing.T) {
|
|
tests := []struct {
|
|
name string
|
|
opts *DeleteOptions
|
|
httpStubs func(*httpmock.Registry)
|
|
prompterStubs func(*prompter.PrompterMock)
|
|
wantErr bool
|
|
wantOut string
|
|
errMsg string
|
|
}{
|
|
{
|
|
name: "delete run",
|
|
opts: &DeleteOptions{
|
|
RunID: "1234",
|
|
},
|
|
wantErr: false,
|
|
httpStubs: func(reg *httpmock.Registry) {
|
|
reg.Register(
|
|
httpmock.REST("GET", "repos/OWNER/REPO/actions/runs/1234"),
|
|
httpmock.JSONResponse(shared.SuccessfulRun))
|
|
reg.Register(
|
|
httpmock.REST("GET", "repos/OWNER/REPO/actions/workflows/123"),
|
|
httpmock.JSONResponse(shared.TestWorkflow))
|
|
reg.Register(
|
|
httpmock.REST("DELETE", fmt.Sprintf("repos/OWNER/REPO/actions/runs/%d", shared.SuccessfulRun.ID)),
|
|
httpmock.StatusStringResponse(204, ""))
|
|
},
|
|
wantOut: "✓ Request to delete workflow run submitted.\n",
|
|
},
|
|
{
|
|
name: "not found",
|
|
opts: &DeleteOptions{
|
|
RunID: "1234",
|
|
},
|
|
wantErr: true,
|
|
errMsg: "could not find any workflow run with ID 1234",
|
|
httpStubs: func(reg *httpmock.Registry) {
|
|
reg.Register(
|
|
httpmock.REST("GET", "repos/OWNER/REPO/actions/runs/1234"),
|
|
httpmock.StatusStringResponse(404, ""))
|
|
},
|
|
},
|
|
{
|
|
name: "prompt",
|
|
opts: &DeleteOptions{
|
|
Prompt: true,
|
|
},
|
|
prompterStubs: func(pm *prompter.PrompterMock) {
|
|
pm.SelectFunc = func(_, _ string, opts []string) (int, error) {
|
|
return prompter.IndexFor(opts, "✓ cool commit, CI [trunk] Feb 23, 2021")
|
|
}
|
|
},
|
|
httpStubs: func(reg *httpmock.Registry) {
|
|
reg.Register(
|
|
httpmock.REST("GET", "repos/OWNER/REPO/actions/runs"),
|
|
httpmock.JSONResponse(shared.RunsPayload{
|
|
TotalCount: 0,
|
|
WorkflowRuns: []shared.Run{shared.SuccessfulRun},
|
|
}))
|
|
reg.Register(
|
|
httpmock.REST("GET", "repos/OWNER/REPO/actions/workflows"),
|
|
httpmock.JSONResponse(
|
|
workflowShared.WorkflowsPayload{
|
|
Workflows: []workflowShared.Workflow{shared.TestWorkflow},
|
|
},
|
|
))
|
|
reg.Register(
|
|
httpmock.REST("DELETE", fmt.Sprintf("repos/OWNER/REPO/actions/runs/%d", shared.SuccessfulRun.ID)),
|
|
httpmock.StatusStringResponse(204, ""))
|
|
},
|
|
wantOut: "✓ Request to delete workflow run submitted.\n",
|
|
},
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
tt.opts.BaseRepo = func() (ghrepo.Interface, error) {
|
|
return ghrepo.FromFullName("OWNER/REPO")
|
|
}
|
|
|
|
// mock http
|
|
reg := &httpmock.Registry{}
|
|
tt.httpStubs(reg)
|
|
tt.opts.HttpClient = func() (*http.Client, error) {
|
|
return &http.Client{Transport: reg}, nil
|
|
}
|
|
|
|
// mock IO
|
|
ios, _, stdout, _ := iostreams.Test()
|
|
ios.SetStdoutTTY(true)
|
|
ios.SetStdinTTY(true)
|
|
tt.opts.IO = ios
|
|
|
|
// mock prompter
|
|
pm := &prompter.PrompterMock{}
|
|
if tt.prompterStubs != nil {
|
|
tt.prompterStubs(pm)
|
|
}
|
|
tt.opts.Prompter = pm
|
|
|
|
// execute test
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
err := runDelete(tt.opts)
|
|
if tt.wantErr {
|
|
assert.Error(t, err)
|
|
if tt.errMsg != "" {
|
|
assert.Equal(t, tt.errMsg, err.Error())
|
|
}
|
|
} else {
|
|
assert.NoError(t, err)
|
|
}
|
|
assert.Equal(t, tt.wantOut, stdout.String())
|
|
reg.Verify(t)
|
|
})
|
|
}
|
|
}
|