gopasspw--gopass
31 行
600 B
Go
31 行
600 B
Go
package tests
|
|
|
|
import (
|
|
"path/filepath"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestGrep(t *testing.T) {
|
|
ts := newTester(t)
|
|
defer ts.teardown()
|
|
|
|
ts.initStore()
|
|
|
|
out, err := ts.run("grep")
|
|
require.Error(t, err)
|
|
assert.Equal(t, "Usage: "+filepath.Base(ts.Binary)+" grep arg\n", out)
|
|
|
|
out, err = ts.run("grep BOOM")
|
|
require.NoError(t, err)
|
|
assert.Contains(t, out, "Scanned 0 secrets. 0 matches, 0 errors")
|
|
|
|
ts.initSecrets("")
|
|
|
|
out, err = ts.run("grep moar")
|
|
require.NoError(t, err)
|
|
assert.Contains(t, out, "fixed/secret matches")
|
|
}
|