Skip to content

Commit

Permalink
integration_test: add more test cases (#297)
Browse files Browse the repository at this point in the history
* integration_test: add more test cases

Added more tests or expanded existing tests to:

- cover args/stdin handling edge cases for `install` cmd
- cover status code of re-runs of `install`, `update`, and `remove`.
- cover status when index not initialized in `remove`, `upgrade`, `install`
- several other minor adjustments

Signed-off-by: Ahmet Alp Balkan <ahmetb@google.com>

* Update TestKrewList to parse structured output

Signed-off-by: Ahmet Alp Balkan <ahmetb@google.com>
  • Loading branch information
ahmetb authored and k8s-ci-robot committed Jul 23, 2019
1 parent 86a9199 commit a89c34b
Show file tree
Hide file tree
Showing 11 changed files with 132 additions and 17 deletions.
8 changes: 3 additions & 5 deletions cmd/krew/cmd/install.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,19 +39,17 @@ func init() {
installCmd := &cobra.Command{
Use: "install",
Short: "Install kubectl plugins",
Long: `Install a plugin.
This command can be used to install one or multiple plugins.
Long: `Install one or multiple kubectl plugins.
Examples:
To install one or multiple plugins, run:
kubectl krew install NAME [NAME...]
To install plugins from a file, run:
To install plugins from a newline-delimited file, run:
kubectl krew install < file.txt
(For developers) To provide a custom plugin manifest, use the --manifest
argument Similarly, instead of downloading files from a URL, you can specify a
argument. Similarly, instead of downloading files from a URL, you can specify a
local --archive file:
kubectl krew install --manifest=FILE [--archive=FILE]
Expand Down
4 changes: 2 additions & 2 deletions cmd/krew/cmd/list.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ func init() {
// listCmd represents the list command
listCmd := &cobra.Command{
Use: "list",
Short: "List installed plugins",
Long: `Show a list of installed plugins and their versions.
Short: "List installed kubectl plugins",
Long: `Show a list of installed kubectl plugins and their versions.
Remarks:
Redirecting the output of this command to a program or file will only print
Expand Down
2 changes: 1 addition & 1 deletion cmd/krew/cmd/system.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ This command will be removed without further notice from future versions of krew
Hidden: true,
}

// todo(corneliusweig) remove migration code with v0.4
// TODO(corneliusweig) remove migration code with v0.4
// systemCmd represents the system command
var receiptsUpgradeCmd = &cobra.Command{
Use: "receipts-upgrade",
Expand Down
2 changes: 1 addition & 1 deletion hack/verify-receipts-upgrade-migration.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# This script tests "krew system receipts-migration" which was introduced for
# migrating krew 0.2.x to krew 0.3.x.
#
# TODO(ahmmetb,corneliusweig) remove at/after krew 0.4.x when receipts-migration
# TODO(ahmetb,corneliusweig) remove at/after krew 0.4.x when receipts-migration
# is no longer supported.

set -euo pipefail
Expand Down
3 changes: 3 additions & 0 deletions integration_test/help_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,8 @@ func TestKrewHelp(t *testing.T) {
test, cleanup := NewTest(t)
defer cleanup()

test.Krew().RunOrFail() // no args
test.Krew("help").RunOrFail()
test.Krew("-h").RunOrFail()
test.Krew("--help").RunOrFail()
}
77 changes: 75 additions & 2 deletions integration_test/install_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ package integrationtest

import (
"path/filepath"
"strings"
"testing"

"sigs.k8s.io/krew/pkg/constants"
Expand All @@ -27,12 +28,69 @@ const (

func TestKrewInstall(t *testing.T) {
skipShort(t)
test, cleanup := NewTest(t)
defer cleanup()

if err := test.Krew("install", validPlugin); err == nil {
t.Fatal("expected to fail without initializing the index")
}

test = test.WithIndex()
if err := test.Krew("install"); err == nil {
t.Fatal("expected failure without any args or stdin")
}

test.Krew("install", validPlugin).RunOrFailOutput()
test.AssertExecutableInPATH("kubectl-" + validPlugin)
}

func TestKrewInstallReRun(t *testing.T) {
skipShort(t)
test, cleanup := NewTest(t)
defer cleanup()

test = test.WithIndex()
test.Krew("install", validPlugin).RunOrFail()
test.Krew("install", validPlugin).RunOrFail()
test.AssertExecutableInPATH("kubectl-" + validPlugin)
}

func TestKrewInstall_MultiplePositionalArgs(t *testing.T) {
skipShort(t)

test, cleanup := NewTest(t)
defer cleanup()

test.WithIndex().Krew("install", validPlugin).RunOrFailOutput()
test.WithIndex().Krew("install", validPlugin, validPlugin2).RunOrFailOutput()
test.AssertExecutableInPATH("kubectl-" + validPlugin)
test.AssertExecutableInPATH("kubectl-" + validPlugin2)
}

func TestKrewInstall_Stdin(t *testing.T) {
skipShort(t)

test, cleanup := NewTest(t)
defer cleanup()

test.WithIndex().WithStdin(strings.NewReader(validPlugin + "\n" + validPlugin2)).
Krew("install").RunOrFailOutput()

test.AssertExecutableInPATH("kubectl-" + validPlugin)
test.AssertExecutableInPATH("kubectl-" + validPlugin2)
}

func TestKrewInstall_StdinAndPositionalArguments(t *testing.T) {
skipShort(t)

test, cleanup := NewTest(t)
defer cleanup()

// when stdin is detected, it's ignored in favor of positional arguments
test.WithIndex().
WithStdin(strings.NewReader(validPlugin2)).
Krew("install", validPlugin).RunOrFail()
test.AssertExecutableInPATH("kubectl-" + validPlugin)
test.AssertExecutableNotInPATH("kubectl-" + validPlugin2)
}

func TestKrewInstall_Manifest(t *testing.T) {
Expand Down Expand Up @@ -60,7 +118,7 @@ func TestKrewInstall_ManifestAndArchive(t *testing.T) {
test.AssertExecutableInPATH("kubectl-" + fooPlugin)
}

func TestKrewInstall_OnlyArchiveFails(t *testing.T) {
func TestKrewInstall_OnlyArchive(t *testing.T) {
skipShort(t)

test, cleanup := NewTest(t)
Expand All @@ -73,3 +131,18 @@ func TestKrewInstall_OnlyArchiveFails(t *testing.T) {
t.Errorf("Expected install to fail but was successful")
}
}

func TestKrewInstall_PositionalArgumentsAndManifest(t *testing.T) {
skipShort(t)

test, cleanup := NewTest(t)
defer cleanup()

err := test.Krew("install", validPlugin,
"--manifest", filepath.Join("testdata", fooPlugin+constants.ManifestExtension),
"--archive", filepath.Join("testdata", fooPlugin+".tar.gz")).
Run()
if err == nil {
t.Fatal("expected failure")
}
}
15 changes: 10 additions & 5 deletions integration_test/list_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,9 @@
package integrationtest

import (
"bytes"
"testing"

"github.com/google/go-cmp/cmp"
)

func TestKrewList(t *testing.T) {
Expand All @@ -26,14 +27,18 @@ func TestKrewList(t *testing.T) {
defer cleanup()

initialList := test.WithIndex().Krew("list").RunOrFailOutput()
if bytes.Contains(initialList, []byte(validPlugin)) {
t.Errorf("%q should initially not be installed", validPlugin)
initialOut := []byte{'\n'}

if diff := cmp.Diff(initialList, initialOut); diff != "" {
t.Fatalf("expected empty output from 'list':\n%s", diff)
}

test.Krew("install", validPlugin).RunOrFail()
expected := []byte(validPlugin + "\n")

eventualList := test.Krew("list").RunOrFailOutput()
if !bytes.Contains(eventualList, []byte(validPlugin)) {
t.Errorf("%q should eventually be installed", validPlugin)
if diff := cmp.Diff(eventualList, expected); diff != "" {
t.Fatalf("'list' output doesn't match:\n%s", diff)
}
// TODO(ahmetb): install multiple plugins and see if the output is sorted
}
12 changes: 12 additions & 0 deletions integration_test/testutil_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ import (
"bytes"
"context"
"fmt"
"io"
"io/ioutil"
"os"
"os/exec"
Expand All @@ -37,6 +38,7 @@ const (
persistentIndexCache = "krew-persistent-index-cache"
krewBinaryEnv = "KREW_BINARY"
validPlugin = "konfig" // a plugin in central index with small size
validPlugin2 = "mtail" // a plugin in central index with small size
)

var (
Expand All @@ -51,6 +53,7 @@ type ITest struct {
pluginsBinDir string
args []string
env []string
stdin io.Reader
tempDir *testutil.TempDir
}

Expand Down Expand Up @@ -171,6 +174,12 @@ func (it *ITest) WithEnv(key string, value interface{}) *ITest {
return it
}

// WithStdin sets standard input for the krew command execution.
func (it *ITest) WithStdin(r io.Reader) *ITest {
it.stdin = r
return it
}

// RunOrFail runs the krew command and fails the test if the command returns an error.
func (it *ITest) RunOrFail() {
it.t.Helper()
Expand Down Expand Up @@ -201,6 +210,9 @@ func (it *ITest) RunOrFailOutput() []byte {
it.t.Helper()

cmd := it.cmd(context.Background())
if it.stdin != nil {
cmd.Stdin = it.stdin
}
it.t.Log(cmd.Args)

start := time.Now()
Expand Down
14 changes: 13 additions & 1 deletion integration_test/uninstall_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,21 @@ func TestKrewUninstall(t *testing.T) {
test, cleanup := NewTest(t)
defer cleanup()

test.WithIndex().Krew("install", validPlugin).RunOrFailOutput()
test = test.WithIndex()

if err := test.Krew("uninstall").Run(); err == nil {
t.Fatal("expected failure without no arguments")
}
if err := test.Krew("uninstall", validPlugin).Run(); err == nil {
t.Fatal("expected failure deleting non-installed plugin")
}
test.Krew("install", validPlugin).RunOrFailOutput()
test.Krew("uninstall", validPlugin).RunOrFailOutput()
test.AssertExecutableNotInPATH("kubectl-" + validPlugin)

if err := test.Krew("uninstall", validPlugin).Run(); err == nil {
t.Fatal("expected failure for uninstalled plugin")
}
}

func TestKrewRemove_AliasSupported(t *testing.T) {
Expand Down
4 changes: 4 additions & 0 deletions integration_test/update_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,8 @@ func TestKrewUpdate(t *testing.T) {
// the first line is the header
t.Errorf("Less than %d plugins found, `krew update` most likely failed unless TestKrewSearchAll also failed", len(plugins)-1)
}

if err := test.Krew("update").Run(); err != nil {
t.Fatal("re-run of 'update' must succeed")
}
}
8 changes: 8 additions & 0 deletions integration_test/upgrade_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,14 @@ import (
"sigs.k8s.io/krew/pkg/constants"
)

func TestKrewUpgrade_WithoutIndexInitialized(t *testing.T) {
skipShort(t)

test, cleanup := NewTest(t)
defer cleanup()
test.Krew("upgrade").RunOrFailOutput()
}

func TestKrewUpgrade(t *testing.T) {
skipShort(t)

Expand Down

0 comments on commit a89c34b

Please sign in to comment.