mirror of
https://github.com/coder/coder.git
synced 2025-07-03 16:13:58 +00:00
157 lines
3.5 KiB
Go
157 lines
3.5 KiB
Go
package cliui_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"github.com/coder/coder/v2/cli/cliui"
|
|
"github.com/coder/coder/v2/codersdk"
|
|
"github.com/coder/coder/v2/pty/ptytest"
|
|
"github.com/coder/serpent"
|
|
)
|
|
|
|
func TestSelect(t *testing.T) {
|
|
t.Parallel()
|
|
t.Run("Select", func(t *testing.T) {
|
|
t.Parallel()
|
|
ptty := ptytest.New(t)
|
|
msgChan := make(chan string)
|
|
go func() {
|
|
resp, err := newSelect(ptty, cliui.SelectOptions{
|
|
Options: []string{"First", "Second"},
|
|
})
|
|
assert.NoError(t, err)
|
|
msgChan <- resp
|
|
}()
|
|
require.Equal(t, "First", <-msgChan)
|
|
})
|
|
}
|
|
|
|
func newSelect(ptty *ptytest.PTY, opts cliui.SelectOptions) (string, error) {
|
|
value := ""
|
|
cmd := &serpent.Command{
|
|
Handler: func(inv *serpent.Invocation) error {
|
|
var err error
|
|
value, err = cliui.Select(inv, opts)
|
|
return err
|
|
},
|
|
}
|
|
inv := cmd.Invoke()
|
|
ptty.Attach(inv)
|
|
return value, inv.Run()
|
|
}
|
|
|
|
func TestRichSelect(t *testing.T) {
|
|
t.Parallel()
|
|
t.Run("RichSelect", func(t *testing.T) {
|
|
t.Parallel()
|
|
ptty := ptytest.New(t)
|
|
msgChan := make(chan string)
|
|
go func() {
|
|
resp, err := newRichSelect(ptty, cliui.RichSelectOptions{
|
|
Options: []codersdk.TemplateVersionParameterOption{
|
|
{
|
|
Name: "A-Name",
|
|
Value: "A-Value",
|
|
Description: "A-Description.",
|
|
}, {
|
|
Name: "B-Name",
|
|
Value: "B-Value",
|
|
Description: "B-Description.",
|
|
},
|
|
},
|
|
})
|
|
assert.NoError(t, err)
|
|
msgChan <- resp
|
|
}()
|
|
require.Equal(t, "A-Value", <-msgChan)
|
|
})
|
|
}
|
|
|
|
func newRichSelect(ptty *ptytest.PTY, opts cliui.RichSelectOptions) (string, error) {
|
|
value := ""
|
|
cmd := &serpent.Command{
|
|
Handler: func(inv *serpent.Invocation) error {
|
|
richOption, err := cliui.RichSelect(inv, opts)
|
|
if err == nil {
|
|
value = richOption.Value
|
|
}
|
|
return err
|
|
},
|
|
}
|
|
inv := cmd.Invoke()
|
|
ptty.Attach(inv)
|
|
return value, inv.Run()
|
|
}
|
|
|
|
func TestMultiSelect(t *testing.T) {
|
|
t.Parallel()
|
|
t.Run("MultiSelect", func(t *testing.T) {
|
|
items := []string{"aaa", "bbb", "ccc"}
|
|
|
|
t.Parallel()
|
|
ptty := ptytest.New(t)
|
|
msgChan := make(chan []string)
|
|
go func() {
|
|
resp, err := newMultiSelect(ptty, items)
|
|
assert.NoError(t, err)
|
|
msgChan <- resp
|
|
}()
|
|
require.Equal(t, items, <-msgChan)
|
|
})
|
|
|
|
t.Run("MultiSelectWithCustomInput", func(t *testing.T) {
|
|
t.Parallel()
|
|
items := []string{"Code", "Chairs", "Whale", "Diamond", "Carrot"}
|
|
ptty := ptytest.New(t)
|
|
msgChan := make(chan []string)
|
|
go func() {
|
|
resp, err := newMultiSelectWithCustomInput(ptty, items)
|
|
assert.NoError(t, err)
|
|
msgChan <- resp
|
|
}()
|
|
require.Equal(t, items, <-msgChan)
|
|
})
|
|
}
|
|
|
|
func newMultiSelectWithCustomInput(ptty *ptytest.PTY, items []string) ([]string, error) {
|
|
var values []string
|
|
cmd := &serpent.Command{
|
|
Handler: func(inv *serpent.Invocation) error {
|
|
selectedItems, err := cliui.MultiSelect(inv, cliui.MultiSelectOptions{
|
|
Options: items,
|
|
Defaults: items,
|
|
EnableCustomInput: true,
|
|
})
|
|
if err == nil {
|
|
values = selectedItems
|
|
}
|
|
return err
|
|
},
|
|
}
|
|
inv := cmd.Invoke()
|
|
ptty.Attach(inv)
|
|
return values, inv.Run()
|
|
}
|
|
|
|
func newMultiSelect(ptty *ptytest.PTY, items []string) ([]string, error) {
|
|
var values []string
|
|
cmd := &serpent.Command{
|
|
Handler: func(inv *serpent.Invocation) error {
|
|
selectedItems, err := cliui.MultiSelect(inv, cliui.MultiSelectOptions{
|
|
Options: items,
|
|
Defaults: items,
|
|
})
|
|
if err == nil {
|
|
values = selectedItems
|
|
}
|
|
return err
|
|
},
|
|
}
|
|
inv := cmd.Invoke()
|
|
ptty.Attach(inv)
|
|
return values, inv.Run()
|
|
}
|