forked from grafana.jool/grafana-jool
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
590 B
26 lines
590 B
package commandstest
|
|
|
|
import (
|
|
"flag"
|
|
|
|
"github.com/grafana/grafana/pkg/cmd/grafana-cli/utils"
|
|
"github.com/urfave/cli/v2"
|
|
)
|
|
|
|
// NewCliContext creates a new CLI context with a certain set of flags.
|
|
func NewCliContext(flags map[string]string) (*utils.ContextCommandLine, error) {
|
|
app := cli.App{
|
|
Name: "Test",
|
|
}
|
|
flagSet := flag.NewFlagSet("Test", 0)
|
|
for flag, value := range flags {
|
|
flagSet.String(flag, "", "")
|
|
if err := flagSet.Set(flag, value); err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
|
|
return &utils.ContextCommandLine{
|
|
Context: cli.NewContext(&app, flagSet, nil),
|
|
}, nil
|
|
}
|
|
|