gopass/internal/action/clone_test.go
Dominik Schulz 263b78119b
[bugfix] Fix writes to global config from tests (#2727)
* [bugfix] Fix writes to global config from tests

Fixes #2725

Signed-off-by: Dominik Schulz <dominik.schulz@gauner.org>

* Shorten readonly config creation.

Signed-off-by: Dominik Schulz <dominik.schulz@gauner.org>

* Address review comments

Signed-off-by: Dominik Schulz <dominik.schulz@gauner.org>

---------

Signed-off-by: Dominik Schulz <dominik.schulz@gauner.org>
2023-12-01 14:04:17 +01:00

182 lines
4.4 KiB
Go

package action
import (
"bytes"
"context"
"os"
"path/filepath"
"runtime"
"testing"
"github.com/blang/semver/v4"
"github.com/gopasspw/gopass/internal/backend"
git "github.com/gopasspw/gopass/internal/backend/storage/gitfs"
"github.com/gopasspw/gopass/internal/config"
"github.com/gopasspw/gopass/internal/out"
"github.com/gopasspw/gopass/pkg/ctxutil"
"github.com/gopasspw/gopass/pkg/termio"
"github.com/gopasspw/gopass/tests/gptest"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
// aGitRepo creates and initializes a small git repo.
func aGitRepo(ctx context.Context, t *testing.T, u *gptest.Unit, name string) string {
t.Helper()
gd := filepath.Join(u.Dir, name)
require.NoError(t, os.MkdirAll(gd, 0o700))
_, err := git.New(gd)
require.Error(t, err)
idf := filepath.Join(gd, ".gpg-id")
require.NoError(t, os.WriteFile(idf, []byte("0xDEADBEEF"), 0o600))
gr, err := git.Init(ctx, gd, "Nobody", "foo.bar@example.org")
require.NoError(t, err)
assert.NotNil(t, gr)
return gd
}
func TestClone(t *testing.T) {
u := gptest.NewUnitTester(t)
ctx := config.NewContextInMemory()
ctx = ctxutil.WithAlwaysYes(ctx, true)
ctx = ctxutil.WithInteractive(ctx, false)
ctx = backend.WithStorageBackend(ctx, backend.GitFS)
act, err := newMock(ctx, u.StoreDir(""))
require.NoError(t, err)
require.NotNil(t, act)
ctx = act.cfg.WithConfig(ctx)
buf := &bytes.Buffer{}
out.Stdout = buf
out.Stderr = buf
stdout = buf
defer func() {
out.Stdout = os.Stdout
out.Stderr = os.Stderr
stdout = os.Stdout
}()
t.Run("no args", func(t *testing.T) {
defer buf.Reset()
c := gptest.CliCtx(ctx, t)
require.Error(t, act.Clone(c))
})
t.Run("clone to initialized store", func(t *testing.T) {
defer buf.Reset()
require.Error(t, act.clone(ctx, "/tmp/non-existing-repo.git", "", filepath.Join(u.Dir, "store")))
})
t.Run("clone to mount", func(t *testing.T) {
defer buf.Reset()
gd := aGitRepo(ctx, t, u, "other-repo")
require.NoError(t, act.clone(ctx, gd, "gd", filepath.Join(u.Dir, "mount")))
})
}
func TestCloneBackendIsStoredForMount(t *testing.T) {
u := gptest.NewUnitTester(t)
buf := &bytes.Buffer{}
out.Stdout = buf
out.Stderr = buf
stdout = buf
defer func() {
out.Stdout = os.Stdout
out.Stderr = os.Stderr
stdout = os.Stdout
}()
ctx := config.NewContextInMemory()
ctx = ctxutil.WithAlwaysYes(ctx, true)
ctx = ctxutil.WithInteractive(ctx, false)
cfg := config.NewInMemory()
require.NoError(t, cfg.SetPath(u.StoreDir("")))
act, err := newAction(cfg, semver.Version{}, false)
require.NoError(t, err)
require.NotNil(t, act)
ctx = act.cfg.WithConfig(ctx)
c := gptest.CliCtx(ctx, t)
require.NoError(t, act.IsInitialized(c))
repo := aGitRepo(ctx, t, u, "my-project")
c = gptest.CliCtxWithFlags(ctx, t, map[string]string{"check-keys": "false"}, repo, "the-project")
require.NoError(t, act.Clone(c))
require.Contains(t, act.cfg.Mounts(), "the-project")
}
func TestCloneGetGitConfig(t *testing.T) {
u := gptest.NewUnitTester(t)
r1 := gptest.UnsetVars(termio.NameVars...)
defer r1()
r2 := gptest.UnsetVars(termio.EmailVars...)
defer r2()
ctx := config.NewContextInMemory()
ctx = ctxutil.WithAlwaysYes(ctx, true)
ctx = ctxutil.WithInteractive(ctx, false)
act, err := newMock(ctx, u.StoreDir(""))
require.NoError(t, err)
require.NotNil(t, act)
ctx = act.cfg.WithConfig(ctx)
name, email, err := act.cloneGetGitConfig(ctx, "foobar")
require.NoError(t, err)
assert.Equal(t, "0xDEADBEEF", name)
assert.Equal(t, "0xDEADBEEF", email)
}
func TestCloneCheckDecryptionKeys(t *testing.T) {
u := gptest.NewUnitTester(t)
buf := &bytes.Buffer{}
out.Stdout = buf
out.Stderr = buf
stdout = buf
defer func() {
out.Stdout = os.Stdout
out.Stderr = os.Stderr
stdout = os.Stdout
}()
ctx := config.NewContextInMemory()
ctx = ctxutil.WithAlwaysYes(ctx, true)
ctx = ctxutil.WithInteractive(ctx, false)
cfg := config.NewInMemory()
require.NoError(t, cfg.SetPath(u.StoreDir("")))
act, err := newAction(cfg, semver.Version{}, false)
require.NoError(t, err)
require.NotNil(t, act)
ctx = act.cfg.WithConfig(ctx)
c := gptest.CliCtx(ctx, t)
require.NoError(t, act.IsInitialized(c))
repo := aGitRepo(ctx, t, u, "my-project")
if runtime.GOOS != "linux" {
t.Skip("TODO: not working on non-linux builders, yet")
}
c = gptest.CliCtxWithFlags(ctx, t, map[string]string{"check-keys": "true"}, repo, "the-project")
require.NoError(t, act.Clone(c))
require.Contains(t, act.cfg.Mounts(), "the-project")
}