Files
gopass-mirror/main_test.go
Dominik Schulz 792f8b07e2 [chore] Initial fixes and added a warning for CryptFS and JJFS (#3270)
These backends are not ready, yet.

Signed-off-by: Dominik Schulz <dominik.schulz@gauner.org>
2025-11-12 21:04:55 +01:00

190 lines
3.8 KiB
Go

package main
import (
"bytes"
"flag"
"os"
"testing"
"github.com/blang/semver/v4"
"github.com/fatih/color"
"github.com/gopasspw/clipboard"
"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/pkg/set"
"github.com/gopasspw/gopass/tests/gptest"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"github.com/urfave/cli/v2"
)
func TestVersionPrinter(t *testing.T) {
t.Parallel()
buf := &bytes.Buffer{}
vp := makeVersionPrinter(buf, semver.Version{Major: 1})
vp(nil)
commit, _, _ := parseBuildInfo()
assert.Contains(t, buf.String(), "gopass 1.0.0")
assert.Contains(t, buf.String(), commit)
}
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) {
t.Parallel()
ctx := config.NewContextInMemory()
_, 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 = set.Map([]string{
".age.identities.add",
".age.identities.remove",
".age.lock",
".alias.add",
".alias.remove",
".alias.delete",
".cat",
".clone",
".copy",
".create",
".delete",
".edit",
".env",
".find",
".fscopy",
".fsmove",
".generate",
".git",
".git.push",
".git.pull",
".git.status",
".git.remote.add",
".git.remote.remove",
".grep",
".history",
".init",
".insert",
".link",
".merge",
".mounts.add",
".mounts.remove",
".move",
".otp",
".process",
".recipients.add",
".recipients.remove",
".show",
".sum",
".templates.edit",
".templates.remove",
".templates.show",
".unclip",
".reorg",
})
func TestGetCommands(t *testing.T) {
u := gptest.NewUnitTester(t)
buf := &bytes.Buffer{}
color.NoColor = true
out.Stdout = buf
defer func() {
out.Stdout = os.Stdout
}()
cfg := config.NewInMemory()
require.NoError(t, cfg.SetPath(u.StoreDir("")))
clipboard.ForceUnsupported = true
ctx := config.NewContextInMemory()
ctx = ctxutil.WithAlwaysYes(ctx, true)
ctx = ctxutil.WithInteractive(ctx, false)
ctx = ctxutil.WithTerminal(ctx, false)
ctx = ctxutil.WithHidden(ctx, true)
ctx, err := backend.WithCryptoBackendString(ctx, "plain")
require.NoError(t, err)
ctx = ctxutil.WithPasswordCallback(ctx, func(_ string, _ bool) ([]byte, error) {
return []byte("foobar"), nil
})
act, err := action.New(cfg, semver.Version{})
require.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.Len(t, commands, 42)
prefix := ""
testCommands(t, c, commands, prefix)
}
func testCommands(t *testing.T, c *cli.Context, commands []*cli.Command, prefix string) {
t.Helper()
for _, cmd := range commands {
if cmd.Name == "update" || cmd.Name == "agent" {
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 {
require.Error(t, cmd.Action(c), fullName)
continue
}
require.NoError(t, cmd.Action(c), fullName)
}
}
}
func TestInitContext(t *testing.T) {
t.Parallel()
ctx := t.Context()
cfg := config.NewInMemory()
ctx = initContext(ctx, cfg)
assert.True(t, gpg.IsAlwaysTrust(ctx))
}