mirror of
https://github.com/coder/coder.git
synced 2026-06-06 06:28:20 +00:00
7d7cc27581
Closes [coder/internal#1400](https://github.com/coder/internal/issues/1400) Final batch of refactored CLI tests to avoid creating PTYs.
98 lines
2.9 KiB
Go
98 lines
2.9 KiB
Go
package cli_test
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
"encoding/json"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"github.com/coder/coder/v2/agent/agenttest"
|
|
"github.com/coder/coder/v2/cli"
|
|
"github.com/coder/coder/v2/cli/clitest"
|
|
"github.com/coder/coder/v2/coderd/coderdtest"
|
|
"github.com/coder/coder/v2/codersdk"
|
|
"github.com/coder/coder/v2/testutil"
|
|
)
|
|
|
|
func TestSpeedtest(t *testing.T) {
|
|
t.Parallel()
|
|
t.Skip("Flaky test - see https://github.com/coder/coder/issues/6321")
|
|
if testing.Short() {
|
|
t.Skip("This test takes a minimum of 5ms per a hardcoded value in Tailscale!")
|
|
}
|
|
client, workspace, agentToken := setupWorkspaceForAgent(t)
|
|
_ = agenttest.New(t, client.URL, agentToken)
|
|
coderdtest.AwaitWorkspaceAgents(t, client, workspace.ID)
|
|
|
|
ctx, cancel := context.WithTimeout(context.Background(), testutil.WaitLong)
|
|
defer cancel()
|
|
|
|
require.Eventually(t, func() bool {
|
|
ws, err := client.Workspace(ctx, workspace.ID)
|
|
if !assert.NoError(t, err) {
|
|
return false
|
|
}
|
|
a := ws.LatestBuild.Resources[0].Agents[0]
|
|
return a.Status == codersdk.WorkspaceAgentConnected &&
|
|
a.LifecycleState == codersdk.WorkspaceAgentLifecycleReady
|
|
}, testutil.WaitLong, testutil.IntervalFast, "agent is not ready")
|
|
|
|
inv, root := clitest.New(t, "speedtest", workspace.Name)
|
|
clitest.SetupConfig(t, client, root)
|
|
|
|
ctx, cancel = context.WithTimeout(context.Background(), testutil.WaitLong)
|
|
defer cancel()
|
|
|
|
inv.Logger = testutil.Logger(t).Named("speedtest")
|
|
cmdDone := tGo(t, func() {
|
|
err := inv.WithContext(ctx).Run()
|
|
assert.NoError(t, err)
|
|
})
|
|
<-cmdDone
|
|
}
|
|
|
|
func TestSpeedtestJson(t *testing.T) {
|
|
t.Parallel()
|
|
t.Skip("Potentially flaky test - see https://github.com/coder/coder/issues/6321")
|
|
if testing.Short() {
|
|
t.Skip("This test takes a minimum of 5ms per a hardcoded value in Tailscale!")
|
|
}
|
|
client, workspace, agentToken := setupWorkspaceForAgent(t)
|
|
_ = agenttest.New(t, client.URL, agentToken)
|
|
coderdtest.AwaitWorkspaceAgents(t, client, workspace.ID)
|
|
|
|
ctx, cancel := context.WithTimeout(context.Background(), testutil.WaitLong)
|
|
defer cancel()
|
|
|
|
require.Eventually(t, func() bool {
|
|
ws, err := client.Workspace(ctx, workspace.ID)
|
|
if !assert.NoError(t, err) {
|
|
return false
|
|
}
|
|
a := ws.LatestBuild.Resources[0].Agents[0]
|
|
return a.Status == codersdk.WorkspaceAgentConnected &&
|
|
a.LifecycleState == codersdk.WorkspaceAgentLifecycleReady
|
|
}, testutil.WaitLong, testutil.IntervalFast, "agent is not ready")
|
|
|
|
inv, root := clitest.New(t, "speedtest", "--output=json", workspace.Name)
|
|
clitest.SetupConfig(t, client, root)
|
|
out := bytes.NewBuffer(nil)
|
|
inv.Stdout = out
|
|
ctx, cancel = context.WithTimeout(context.Background(), testutil.WaitLong)
|
|
defer cancel()
|
|
|
|
inv.Logger = testutil.Logger(t).Named("speedtest")
|
|
cmdDone := tGo(t, func() {
|
|
err := inv.WithContext(ctx).Run()
|
|
assert.NoError(t, err)
|
|
})
|
|
<-cmdDone
|
|
|
|
var result cli.SpeedtestResult
|
|
require.NoError(t, json.Unmarshal(out.Bytes(), &result))
|
|
require.Len(t, result.Intervals, 5)
|
|
}
|