forked from gopasspw/gopass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconvert_test.go
57 lines (49 loc) · 1.4 KB
/
convert_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
package action
import (
"bytes"
"context"
"os"
"testing"
"github.com/fatih/color"
"github.com/gopasspw/gopass/internal/out"
"github.com/gopasspw/gopass/pkg/ctxutil"
"github.com/gopasspw/gopass/pkg/gopass/secrets"
"github.com/gopasspw/gopass/tests/gptest"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func TestConvert(t *testing.T) {
u := gptest.NewUnitTester(t)
ctx := context.Background()
ctx = ctxutil.WithAlwaysYes(ctx, true)
ctx = ctxutil.WithTerminal(ctx, false)
ctx = ctxutil.WithInteractive(ctx, false)
ctx = ctxutil.WithPasswordCallback(ctx, func(s string, b bool) ([]byte, error) {
return []byte("foo"), nil
})
ctx = ctxutil.WithPasswordPurgeCallback(ctx, func(s string) {})
act, err := newMock(ctx, u.StoreDir(""))
require.NoError(t, err)
require.NotNil(t, act)
ctx = act.cfg.WithConfig(ctx)
color.NoColor = true
buf := &bytes.Buffer{}
out.Stdout = buf
stdout = buf
defer func() {
stdout = os.Stdout
out.Stdout = os.Stdout
}()
// first add another entry in a subdir
sec := secrets.NewAKV()
sec.SetPassword("123")
assert.NoError(t, sec.Set("bar", "zab"))
assert.NoError(t, act.Store.Set(ctx, "bar/baz", sec))
buf.Reset()
assert.NoError(t, act.Convert(gptest.CliCtxWithFlags(ctx, t, map[string]string{
"move": "true",
"storage": "fs",
"crypto": "age",
})))
// TODO: validate converted store. t.Logf("Buffer: %s", buf.String()).
}