gopass/main_test.go
Dominik Schulz 1131dbf5fb
Remove GOPASS_NOCOLOR (#1937)
Fixes #1936

RELEASE_NOTES=[CLEANUP] Remove GOPASS_NOCOLOR in favor of NO_COLOR

Signed-off-by: Dominik Schulz <dominik.schulz@gauner.org>
2021-08-05 22:33:31 +02:00

165 lines
3.8 KiB
Go

package main
import (
"bytes"
"context"
"flag"
"fmt"
"os"
"runtime"
"testing"
"github.com/atotto/clipboard"
"github.com/blang/semver/v4"
"github.com/fatih/color"
"github.com/gopasspw/gopass/internal/action"
"github.com/gopasspw/gopass/internal/backend"
"github.com/gopasspw/gopass/internal/backend/crypto/gpg"
"github.com/gopasspw/gopass/internal/config"
"github.com/gopasspw/gopass/internal/out"
"github.com/gopasspw/gopass/pkg/ctxutil"
"github.com/gopasspw/gopass/tests/gptest"
"github.com/stretchr/testify/assert"
"github.com/urfave/cli/v2"
)
func TestVersionPrinter(t *testing.T) {
t.Parallel()
buf := &bytes.Buffer{}
vp := makeVersionPrinter(buf, semver.Version{Major: 1})
vp(nil)
assert.Equal(t, fmt.Sprintf("gopass 1.0.0 %s %s %s\n", runtime.Version(), runtime.GOOS, runtime.GOARCH), buf.String())
}
func TestGetVersion(t *testing.T) {
t.Parallel()
version = "1.9.0"
if getVersion().LT(semver.Version{Major: 1, Minor: 9}) {
t.Errorf("invalid version")
}
}
func TestSetupApp(t *testing.T) {
ctx := context.Background()
_, app := setupApp(ctx, semver.Version{})
assert.NotNil(t, app)
}
// commandsWithError is a list of commands that return an error when
// invoked without arguments
var commandsWithError = map[string]struct{}{
".alias.add": {},
".alias.remove": {},
".alias.delete": {},
".audit": {},
".cat": {},
".clone": {},
".convert": {},
".copy": {},
".create": {},
".delete": {},
".edit": {},
".env": {},
".find": {},
".fscopy": {},
".fsmove": {},
".generate": {},
".git.push": {},
".git.pull": {},
".git.remote.add": {},
".git.remote.remove": {},
".grep": {},
".history": {},
".init": {},
".insert": {},
".link": {},
".mounts.add": {},
".mounts.remove": {},
".move": {},
".otp": {},
".recipients.add": {},
".recipients.remove": {},
".show": {},
".sum": {},
".templates.edit": {},
".templates.remove": {},
".templates.show": {},
".unclip": {},
}
func TestGetCommands(t *testing.T) {
u := gptest.NewUnitTester(t)
defer u.Remove()
buf := &bytes.Buffer{}
out.Stdout = buf
color.NoColor = true
defer func() {
out.Stdout = os.Stdout
}()
cfg := config.New()
cfg.Path = u.StoreDir("")
clipboard.Unsupported = true
ctx := context.Background()
ctx = ctxutil.WithAlwaysYes(ctx, true)
ctx = ctxutil.WithInteractive(ctx, false)
ctx = ctxutil.WithTerminal(ctx, false)
ctx = ctxutil.WithHidden(ctx, true)
ctx = backend.WithCryptoBackendString(ctx, "plain")
act, err := action.New(cfg, semver.Version{})
assert.NoError(t, err)
app := cli.NewApp()
fs := flag.NewFlagSet("default", flag.ContinueOnError)
c := cli.NewContext(app, fs, nil)
c.Context = ctx
commands := getCommands(act, app)
assert.Equal(t, 37, len(commands))
prefix := ""
testCommands(t, c, commands, prefix)
}
func testCommands(t *testing.T, c *cli.Context, commands []*cli.Command, prefix string) {
for _, cmd := range commands {
if cmd.Name == "update" {
continue
}
if len(cmd.Subcommands) > 0 {
testCommands(t, c, cmd.Subcommands, prefix+"."+cmd.Name)
}
if cmd.Before != nil {
if err := cmd.Before(c); err != nil {
continue
}
}
if cmd.BashComplete != nil {
cmd.BashComplete(c)
}
if cmd.Action != nil {
fullName := prefix + "." + cmd.Name
if _, found := commandsWithError[fullName]; found {
assert.Error(t, cmd.Action(c), fullName)
continue
}
assert.NoError(t, cmd.Action(c), fullName)
}
}
}
func TestInitContext(t *testing.T) {
ctx := context.Background()
cfg := config.New()
ctx = initContext(ctx, cfg)
assert.Equal(t, true, gpg.IsAlwaysTrust(ctx))
}