2023-04-03 16:22:21 -07:00
|
|
|
// Copyright 2020-2023 the Pinniped contributors. All Rights Reserved.
|
2020-09-16 10:19:51 -04:00
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
2020-07-08 01:20:34 -04:00
|
|
|
|
2020-07-07 21:42:14 -04:00
|
|
|
package integration
|
|
|
|
|
|
|
|
import (
|
2020-07-08 16:37:06 -07:00
|
|
|
"os"
|
2020-07-07 21:42:14 -04:00
|
|
|
"os/exec"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/require"
|
2020-08-06 20:44:14 -05:00
|
|
|
|
2021-06-22 11:23:19 -04:00
|
|
|
"go.pinniped.dev/test/testlib"
|
2020-07-07 21:42:14 -04:00
|
|
|
)
|
|
|
|
|
2020-08-24 18:07:34 -07:00
|
|
|
// Smoke test to see if the kubeconfig works and the cluster is reachable.
|
2020-07-07 21:42:14 -04:00
|
|
|
func TestGetNodes(t *testing.T) {
|
2021-08-25 15:34:33 -04:00
|
|
|
_ = testlib.IntegrationEnv(t)
|
2020-07-08 16:37:06 -07:00
|
|
|
cmd := exec.Command("kubectl", "get", "nodes")
|
|
|
|
cmd.Stdout = os.Stdout
|
|
|
|
cmd.Stderr = os.Stderr
|
|
|
|
err := cmd.Run()
|
2020-07-07 21:42:14 -04:00
|
|
|
require.NoError(t, err)
|
|
|
|
}
|