tests: Allow to run maddyctl commands in integration tests

This commit is contained in:
fox.cpp 2025-01-28 23:33:37 +03:00
parent 21485e99d2
commit 69b434f341
No known key found for this signature in database
GPG key ID: 5B991F6215D2FCC0
5 changed files with 198 additions and 71 deletions

View file

@ -1,7 +1,6 @@
package maddycli
import (
"flag"
"fmt"
"os"
"strings"
@ -30,10 +29,6 @@ databases used by it (all other subcommands).
}
app.ExitErrHandler = func(c *cli.Context, err error) {
cli.HandleExitCoder(err)
if err != nil {
log.Println(err)
cli.OsExiter(1)
}
}
app.EnableBashCompletion = true
app.Commands = []*cli.Command{
@ -66,9 +61,6 @@ databases used by it (all other subcommands).
func AddGlobalFlag(f cli.Flag) {
app.Flags = append(app.Flags, f)
if err := f.Apply(flag.CommandLine); err != nil {
log.Println("GlobalFlag", f, "could not be mapped to stdlib flag:", err)
}
}
func AddSubcommand(cmd *cli.Command) {
@ -83,15 +75,27 @@ func AddSubcommand(cmd *cli.Command) {
return cmd.Action(c)
}
app.Flags = append(app.Flags, cmd.Flags...)
for _, f := range cmd.Flags {
if err := f.Apply(flag.CommandLine); err != nil {
log.Println("GlobalFlag", f, "could not be mapped to stdlib flag:", err)
}
}
}
}
// RunWithoutExit is like Run but returns exit code instead of calling os.Exit
// To be used in maddy.cover.
func RunWithoutExit() int {
code := 0
cli.OsExiter = func(c int) { code = c }
defer func() {
cli.OsExiter = os.Exit
}()
Run()
return code
}
func Run() {
mapStdlibFlags(app)
// Actual entry point is registered in maddy.go.
// Print help when called via maddyctl executable. To be removed

60
internal/cli/extflag.go Normal file
View file

@ -0,0 +1,60 @@
package maddycli
import (
"flag"
"github.com/urfave/cli/v2"
)
// extFlag implements cli.Flag via standard flag.Flag.
type extFlag struct {
f *flag.Flag
}
func (e *extFlag) Apply(fs *flag.FlagSet) error {
fs.Var(e.f.Value, e.f.Name, e.f.Usage)
return nil
}
func (e *extFlag) Names() []string {
return []string{e.f.Name}
}
func (e *extFlag) IsSet() bool {
return false
}
func (e *extFlag) String() string {
return cli.FlagStringer(e)
}
func (e *extFlag) IsVisible() bool {
return true
}
func (e *extFlag) TakesValue() bool {
return false
}
func (e *extFlag) GetUsage() string {
return e.f.Usage
}
func (e *extFlag) GetValue() string {
return e.f.Value.String()
}
func (e *extFlag) GetDefaultText() string {
return e.f.DefValue
}
func (e *extFlag) GetEnvVars() []string {
return nil
}
func mapStdlibFlags(app *cli.App) {
// Modified AllowExtFlags from cli lib with -test.* exception removed.
flag.VisitAll(func(f *flag.Flag) {
app.Flags = append(app.Flags, &extFlag{f})
})
}