mirror of
https://github.com/coder/coder.git
synced 2025-07-03 16:13:58 +00:00
This change helps remove one indirect use of coderd/database in the slim CLI. No size change (yet). Ref: #9380
39 lines
879 B
Go
39 lines
879 B
Go
package cli_test
|
|
|
|
import (
|
|
"bytes"
|
|
"encoding/json"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"github.com/coder/coder/v2/cli/clitest"
|
|
"github.com/coder/coder/v2/coderd/healthcheck/derphealth"
|
|
"github.com/coder/coder/v2/pty/ptytest"
|
|
)
|
|
|
|
func TestNetcheck(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
pty := ptytest.New(t)
|
|
config := login(t, pty)
|
|
|
|
var out bytes.Buffer
|
|
inv, _ := clitest.New(t, "netcheck", "--global-config", string(config))
|
|
inv.Stdout = &out
|
|
|
|
clitest.StartWithWaiter(t, inv).RequireSuccess()
|
|
|
|
b := out.Bytes()
|
|
t.Log(string(b))
|
|
var report derphealth.Report
|
|
require.NoError(t, json.Unmarshal(b, &report))
|
|
|
|
assert.True(t, report.Healthy)
|
|
require.Len(t, report.Regions, 1+1) // 1 built-in region + 1 test-managed STUN region
|
|
for _, v := range report.Regions {
|
|
require.Len(t, v.NodeReports, len(v.Region.Nodes))
|
|
}
|
|
}
|