Files
Dominik Schulz 7c63ba09b7 chore(deps): migrate from urfave/cli v2 to v3 (#3428)
Migrate the entire codebase from github.com/urfave/cli/v2 to
github.com/urfave/cli/v3 (v3.9.0).

Key breaking changes addressed:
- cli.App removed, replaced by *cli.Command
- ActionFunc signature: func(*Context) error -> func(context.Context, *Command) error
- BeforeFunc signature: func(*Context) error -> func(context.Context, *Command) (context.Context, error)
- app.RunContext -> app.Run
- app.EnableBashCompletion -> app.EnableShellCompletion
- Subcommands field renamed to Commands
- EnvVars on flags -> Sources: cli.EnvVars(...)
- cli.NewContext removed; test helpers updated to use cmd.Run() pattern
- cli.Flag interface updated (Apply removed, Get/PreParse/PostParse/Set added)
- VersionPrinter type changed to func(*Command)

Also updates .capabilities.json baseline to reflect new cli/v3 call paths.

Signed-off-by: Dominik Schulz <dominik.schulz@gauner.org>
2026-05-16 18:13:19 +02:00

38 lines
770 B
Go

package tests
import (
"path/filepath"
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func TestDelete(t *testing.T) {
ts := newTester(t)
defer ts.teardown()
ts.initStore()
out, err := ts.run("delete")
require.Error(t, err)
assert.Equal(t, "Usage: "+filepath.Base(ts.Binary)+" rm name\n", out)
out, err = ts.run("delete foobarbaz")
require.Error(t, err)
assert.Contains(t, out, "does not exist", out)
ts.initSecrets("")
secrets := []string{"baz", "foo/bar"}
for _, secret := range secrets {
out, err = ts.run("delete -f " + secret)
require.NoError(t, err)
assert.Empty(t, out)
out, err = ts.run("delete -f " + secret)
require.Error(t, err)
assert.Contains(t, out, "does not exist\n", out)
}
}