mirror of
https://github.com/coder/coder.git
synced 2026-06-02 20:48:20 +00:00
154b9bce57
* Refactor parameter parsing to return nil values if none computed * Refactor parameter to allow for hiding redisplay * Refactor parameters to enable schema matching * Refactor provisionerd to dynamically update parameter schemas * Refactor job update for provisionerd * Handle multiple states correctly when provisioning a project * Add project import job resource table * Basic creation flow works! * Create project fully works!!! * Only show job status if completed * Add create workspace support * Replace Netflix/go-expect with ActiveState * Fix linting errors * Use forked chzyer/readline * Add create workspace CLI * Add CLI test * Move jobs to their own APIs * Remove go-expect * Fix requested changes * Skip workspacecreate test on windows
32 lines
630 B
Go
32 lines
630 B
Go
//go:build !windows
|
|
|
|
package clitest_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/coder/coder/cli/clitest"
|
|
"github.com/coder/coder/coderd/coderdtest"
|
|
"github.com/stretchr/testify/require"
|
|
"go.uber.org/goleak"
|
|
)
|
|
|
|
func TestMain(m *testing.M) {
|
|
goleak.VerifyTestMain(m)
|
|
}
|
|
|
|
func TestCli(t *testing.T) {
|
|
t.Parallel()
|
|
clitest.CreateProjectVersionSource(t, nil)
|
|
client := coderdtest.New(t)
|
|
cmd, config := clitest.New(t)
|
|
clitest.SetupConfig(t, client, config)
|
|
console := clitest.NewConsole(t, cmd)
|
|
go func() {
|
|
err := cmd.Execute()
|
|
require.NoError(t, err)
|
|
}()
|
|
_, err := console.ExpectString("coder")
|
|
require.NoError(t, err)
|
|
}
|