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

fix(cli): Only list needed fields. Fixes #6000 #6298

Merged
merged 3 commits into from
Jul 9, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 22 additions & 2 deletions cmd/argo/commands/list.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,22 @@ type listFlags struct {
fields string
}

var (
nameFields = "metadata,items.metadata.name"
defaultFields = "metadata,items.metadata,items.spec,items.status.phase,items.status.message,items.status.finishedAt,items.status.startedAt,items.status.estimatedDuration,items.status.progress"
)

func (f listFlags) displayFields() string {
switch f.output {
case "name":
return nameFields
case "json", "yaml":
return ""
default:
return defaultFields
}
}

func NewListCommand() *cobra.Command {
var (
listArgs listFlags
Expand Down Expand Up @@ -68,7 +84,7 @@ func NewListCommand() *cobra.Command {
command.Flags().BoolVar(&listArgs.completed, "completed", false, "Show completed workflows. Mutually exclusive with --running.")
command.Flags().BoolVar(&listArgs.running, "running", false, "Show running workflows. Mutually exclusive with --completed.")
command.Flags().BoolVar(&listArgs.resubmitted, "resubmitted", false, "Show resubmitted workflows")
command.Flags().StringVarP(&listArgs.output, "output", "o", "", "Output format. One of: wide|name")
command.Flags().StringVarP(&listArgs.output, "output", "o", "", "Output format. One of: name|wide|yaml|json")
command.Flags().StringVar(&listArgs.createdSince, "since", "", "Show only workflows created after than a relative duration")
command.Flags().Int64VarP(&listArgs.chunkSize, "chunk-size", "", 0, "Return large lists in chunks rather than all at once. Pass 0 to disable.")
command.Flags().BoolVar(&listArgs.noHeaders, "no-headers", false, "Don't print headers (default print headers).")
Expand Down Expand Up @@ -109,7 +125,11 @@ func listWorkflows(ctx context.Context, serviceClient workflowpkg.WorkflowServic
var workflows wfv1.Workflows
for {
log.WithField("listOpts", listOpts).Debug()
wfList, err := serviceClient.ListWorkflows(ctx, &workflowpkg.WorkflowListRequest{Namespace: flags.namespace, ListOptions: listOpts})
wfList, err := serviceClient.ListWorkflows(ctx, &workflowpkg.WorkflowListRequest{
Namespace: flags.namespace,
ListOptions: listOpts,
Fields: flags.displayFields(),
})
if err != nil {
return nil, err
}
Expand Down
4 changes: 2 additions & 2 deletions cmd/argo/commands/list_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ func Test_listWorkflows(t *testing.T) {

func list(listOptions *metav1.ListOptions, flags listFlags) (wfv1.Workflows, error) {
c := &workflowmocks.WorkflowServiceClient{}
c.On("ListWorkflows", mock.Anything, &workflow.WorkflowListRequest{ListOptions: listOptions}).Return(&wfv1.WorkflowList{Items: wfv1.Workflows{
c.On("ListWorkflows", mock.Anything, &workflow.WorkflowListRequest{ListOptions: listOptions, Fields: defaultFields}).Return(&wfv1.WorkflowList{Items: wfv1.Workflows{
{ObjectMeta: metav1.ObjectMeta{Name: "foo-", CreationTimestamp: metav1.Time{Time: time.Now().Add(-2 * time.Hour)}}, Status: wfv1.WorkflowStatus{FinishedAt: metav1.Time{Time: time.Now().Add(-2 * time.Hour)}}},
{ObjectMeta: metav1.ObjectMeta{Name: "bar-", CreationTimestamp: metav1.Time{Time: time.Now()}}},
{ObjectMeta: metav1.ObjectMeta{
Expand All @@ -95,7 +95,7 @@ func list(listOptions *metav1.ListOptions, flags listFlags) (wfv1.Workflows, err

func listEmpty(listOptions *metav1.ListOptions, flags listFlags) (wfv1.Workflows, error) {
c := &workflowmocks.WorkflowServiceClient{}
c.On("ListWorkflows", mock.Anything, &workflow.WorkflowListRequest{ListOptions: listOptions}).Return(&wfv1.WorkflowList{Items: wfv1.Workflows{}}, nil)
c.On("ListWorkflows", mock.Anything, &workflow.WorkflowListRequest{ListOptions: listOptions, Fields: defaultFields}).Return(&wfv1.WorkflowList{Items: wfv1.Workflows{}}, nil)
workflows, err := listWorkflows(context.Background(), c, flags)
return workflows, err
}
2 changes: 2 additions & 0 deletions cmd/argo/commands/resubmit_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ func Test_resubmitWorkflows(t *testing.T) {
ListOptions: &metav1.ListOptions{
LabelSelector: resubmitOpts.labelSelector,
},
Fields: defaultFields,
}

wfList := &wfv1.WorkflowList{Items: wfv1.Workflows{
Expand Down Expand Up @@ -103,6 +104,7 @@ func Test_resubmitWorkflows(t *testing.T) {
ListOptions: &metav1.ListOptions{
LabelSelector: resubmitOpts.labelSelector,
},
Fields: defaultFields,
}

wfList := &wfv1.WorkflowList{Items: wfv1.Workflows{
Expand Down
2 changes: 2 additions & 0 deletions cmd/argo/commands/retry_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ func Test_retryWorkflows(t *testing.T) {
ListOptions: &metav1.ListOptions{
LabelSelector: retryOpts.labelSelector,
},
Fields: defaultFields,
}

wfList := &wfv1.WorkflowList{Items: wfv1.Workflows{
Expand Down Expand Up @@ -83,6 +84,7 @@ func Test_retryWorkflows(t *testing.T) {
ListOptions: &metav1.ListOptions{
LabelSelector: retryOpts.labelSelector,
},
Fields: defaultFields,
}

wfList := &wfv1.WorkflowList{Items: wfv1.Workflows{
Expand Down
2 changes: 2 additions & 0 deletions cmd/argo/commands/stop_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ func Test_stopWorkflows(t *testing.T) {
ListOptions: &metav1.ListOptions{
LabelSelector: stopArgs.labelSelector,
},
Fields: defaultFields,
}

c.On("ListWorkflows", mock.Anything, wfListReq).Return(&wfv1.WorkflowList{Items: wfv1.Workflows{
Expand Down Expand Up @@ -81,6 +82,7 @@ func Test_stopWorkflows(t *testing.T) {
ListOptions: &metav1.ListOptions{
LabelSelector: stopArgs.labelSelector,
},
Fields: defaultFields,
}

c.On("ListWorkflows", mock.Anything, wfListReq).Return(&wfv1.WorkflowList{Items: wfv1.Workflows{
Expand Down
2 changes: 1 addition & 1 deletion docs/cli/argo_list.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ argo list [flags]
-h, --help help for list
--no-headers Don't print headers (default print headers).
--older string List completed workflows finished before the specified duration (e.g. 10m, 3h, 1d)
-o, --output string Output format. One of: wide|name
-o, --output string Output format. One of: name|wide|yaml|json
--prefix string Filter workflows by prefix
--resubmitted Show resubmitted workflows
--running Show running workflows. Mutually exclusive with --completed.
Expand Down
61 changes: 51 additions & 10 deletions test/e2e/cli_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
package e2e

import (
"encoding/json"
"fmt"
"io/ioutil"
"os"
Expand All @@ -11,6 +12,8 @@ import (
"testing"
"time"

"sigs.k8s.io/yaml"

"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/suite"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
Expand Down Expand Up @@ -383,16 +386,54 @@ func (s *CLISuite) TestRoot() {
})
})
s.Run("List", func() {
s.Given().
RunCli([]string{"list"}, func(t *testing.T, output string, err error) {
if assert.NoError(t, err) {
assert.Contains(t, output, "NAME")
assert.Contains(t, output, "STATUS")
assert.Contains(t, output, "AGE")
assert.Contains(t, output, "DURATION")
assert.Contains(t, output, "PRIORITY")
}
})
s.Run("DefaultOutput", func() {
s.Given().
RunCli([]string{"list"}, func(t *testing.T, output string, err error) {
if assert.NoError(t, err) {
assert.Contains(t, output, "NAME")
assert.Contains(t, output, "STATUS")
assert.Contains(t, output, "AGE")
assert.Contains(t, output, "DURATION")
assert.Contains(t, output, "PRIORITY")
}
})
})
s.Run("NameOutput", func() {
s.Given().
RunCli([]string{"list", "-o", "name"}, func(t *testing.T, output string, err error) {
if assert.NoError(t, err) {
assert.NotContains(t, output, "NAME")
}
})
})
s.Run("WideOutput", func() {
s.Given().
RunCli([]string{"list", "-o", "wide"}, func(t *testing.T, output string, err error) {
if assert.NoError(t, err) {
assert.Contains(t, output, "PARAMETERS")
}
})
})
s.Run("JSONOutput", func() {
s.Given().
RunCli([]string{"list", "-o", "json"}, func(t *testing.T, output string, err error) {
if assert.NoError(t, err) {
list := wfv1.Workflows{}
assert.NoError(t, json.Unmarshal([]byte(output), &list))
assert.Len(t, list, 1)
}
})
})
s.Run("YAMLOutput", func() {
s.Given().
RunCli([]string{"list", "-o", "yaml"}, func(t *testing.T, output string, err error) {
if assert.NoError(t, err) {
list := wfv1.Workflows{}
assert.NoError(t, yaml.UnmarshalStrict([]byte(output), &list))
assert.Len(t, list, 1)
}
})
})
})
s.Run("Get", func() {
s.Given().RunCli([]string{"get", "@latest"}, func(t *testing.T, output string, err error) {
Expand Down