2021-05-18 21:01:10 +00:00
|
|
|
package kit
|
2020-10-15 10:15:21 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
2020-10-27 10:07:54 +00:00
|
|
|
"context"
|
2020-10-15 10:15:21 +00:00
|
|
|
"flag"
|
|
|
|
"strings"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/multiformats/go-multiaddr"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
lcli "github.com/urfave/cli/v2"
|
2022-06-14 15:00:51 +00:00
|
|
|
|
|
|
|
"github.com/filecoin-project/lotus/api"
|
2020-10-15 10:15:21 +00:00
|
|
|
)
|
|
|
|
|
2020-10-26 11:01:33 +00:00
|
|
|
type MockCLI struct {
|
2020-10-15 10:15:21 +00:00
|
|
|
t *testing.T
|
|
|
|
cmds []*lcli.Command
|
|
|
|
cctx *lcli.Context
|
|
|
|
out *bytes.Buffer
|
|
|
|
}
|
|
|
|
|
2021-08-12 18:01:24 +00:00
|
|
|
func NewMockCLI(ctx context.Context, t *testing.T, cmds []*lcli.Command, nodeType api.NodeType) *MockCLI {
|
2020-10-15 10:15:21 +00:00
|
|
|
// Create a CLI App with an --api-url flag so that we can specify which node
|
|
|
|
// the command should be executed against
|
|
|
|
app := &lcli.App{
|
|
|
|
Flags: []lcli.Flag{
|
|
|
|
&lcli.StringFlag{
|
|
|
|
Name: "api-url",
|
|
|
|
Hidden: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Commands: cmds,
|
|
|
|
}
|
2021-08-12 18:01:24 +00:00
|
|
|
// Set node type
|
|
|
|
api.RunningNodeType = nodeType
|
2020-10-15 10:15:21 +00:00
|
|
|
|
|
|
|
var out bytes.Buffer
|
|
|
|
app.Writer = &out
|
|
|
|
app.Setup()
|
|
|
|
|
|
|
|
cctx := lcli.NewContext(app, &flag.FlagSet{}, nil)
|
2020-10-27 10:07:54 +00:00
|
|
|
cctx.Context = ctx
|
2020-10-26 11:01:33 +00:00
|
|
|
return &MockCLI{t: t, cmds: cmds, cctx: cctx, out: &out}
|
2020-10-15 10:15:21 +00:00
|
|
|
}
|
|
|
|
|
2020-10-26 11:01:33 +00:00
|
|
|
func (c *MockCLI) Client(addr multiaddr.Multiaddr) *MockCLIClient {
|
|
|
|
return &MockCLIClient{t: c.t, cmds: c.cmds, addr: addr, cctx: c.cctx, out: c.out}
|
2020-10-15 10:15:21 +00:00
|
|
|
}
|
|
|
|
|
2020-10-26 11:01:33 +00:00
|
|
|
// MockCLIClient runs commands against a particular node
|
|
|
|
type MockCLIClient struct {
|
2020-10-15 10:15:21 +00:00
|
|
|
t *testing.T
|
|
|
|
cmds []*lcli.Command
|
|
|
|
addr multiaddr.Multiaddr
|
|
|
|
cctx *lcli.Context
|
|
|
|
out *bytes.Buffer
|
|
|
|
}
|
|
|
|
|
2020-10-26 13:26:46 +00:00
|
|
|
func (c *MockCLIClient) RunCmd(input ...string) string {
|
|
|
|
out, err := c.RunCmdRaw(input...)
|
2021-04-02 15:25:29 +00:00
|
|
|
require.NoError(c.t, err, "output:\n%s", out)
|
2020-10-15 10:15:21 +00:00
|
|
|
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
2020-10-26 11:01:33 +00:00
|
|
|
// Given an input, find the corresponding command or sub-command.
|
|
|
|
// eg "paych add-funds"
|
|
|
|
func (c *MockCLIClient) cmdByNameSub(input []string) (*lcli.Command, []string) {
|
|
|
|
name := input[0]
|
|
|
|
for _, cmd := range c.cmds {
|
|
|
|
if cmd.Name == name {
|
|
|
|
return c.findSubcommand(cmd, input[1:])
|
2020-10-15 10:15:21 +00:00
|
|
|
}
|
|
|
|
}
|
2020-10-26 11:01:33 +00:00
|
|
|
return nil, []string{}
|
2020-10-15 10:15:21 +00:00
|
|
|
}
|
|
|
|
|
2020-10-26 11:01:33 +00:00
|
|
|
func (c *MockCLIClient) findSubcommand(cmd *lcli.Command, input []string) (*lcli.Command, []string) {
|
|
|
|
// If there are no sub-commands, return the current command
|
|
|
|
if len(cmd.Subcommands) == 0 {
|
|
|
|
return cmd, input
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check each sub-command for a match against the name
|
|
|
|
subName := input[0]
|
|
|
|
for _, subCmd := range cmd.Subcommands {
|
|
|
|
if subCmd.Name == subName {
|
|
|
|
// Found a match, recursively search for sub-commands
|
|
|
|
return c.findSubcommand(subCmd, input[1:])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil, []string{}
|
|
|
|
}
|
|
|
|
|
2020-10-26 13:26:46 +00:00
|
|
|
func (c *MockCLIClient) RunCmdRaw(input ...string) (string, error) {
|
2020-10-26 11:01:33 +00:00
|
|
|
cmd, input := c.cmdByNameSub(input)
|
|
|
|
if cmd == nil {
|
|
|
|
panic("Could not find command " + input[0] + " " + input[1])
|
|
|
|
}
|
|
|
|
|
2020-10-15 10:15:21 +00:00
|
|
|
// prepend --api-url=<node api listener address>
|
|
|
|
apiFlag := "--api-url=" + c.addr.String()
|
|
|
|
input = append([]string{apiFlag}, input...)
|
|
|
|
|
|
|
|
fs := c.flagSet(cmd)
|
|
|
|
err := fs.Parse(input)
|
|
|
|
require.NoError(c.t, err)
|
|
|
|
|
|
|
|
err = cmd.Action(lcli.NewContext(c.cctx.App, fs, c.cctx))
|
|
|
|
|
|
|
|
// Get the output
|
|
|
|
str := strings.TrimSpace(c.out.String())
|
|
|
|
c.out.Reset()
|
|
|
|
return str, err
|
|
|
|
}
|
|
|
|
|
2020-10-26 11:01:33 +00:00
|
|
|
func (c *MockCLIClient) flagSet(cmd *lcli.Command) *flag.FlagSet {
|
2020-10-15 10:15:21 +00:00
|
|
|
// Apply app level flags (so we can process --api-url flag)
|
|
|
|
fs := &flag.FlagSet{}
|
|
|
|
for _, f := range c.cctx.App.Flags {
|
|
|
|
err := f.Apply(fs)
|
|
|
|
if err != nil {
|
|
|
|
c.t.Fatal(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Apply command level flags
|
|
|
|
for _, f := range cmd.Flags {
|
|
|
|
err := f.Apply(fs)
|
|
|
|
if err != nil {
|
|
|
|
c.t.Fatal(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return fs
|
|
|
|
}
|
2020-10-20 15:08:25 +00:00
|
|
|
|
2020-10-26 11:01:33 +00:00
|
|
|
func (c *MockCLIClient) RunInteractiveCmd(cmd []string, interactive []string) string {
|
2020-10-20 15:08:25 +00:00
|
|
|
c.toStdin(strings.Join(interactive, "\n") + "\n")
|
2020-10-26 13:26:46 +00:00
|
|
|
return c.RunCmd(cmd...)
|
2020-10-20 15:08:25 +00:00
|
|
|
}
|
|
|
|
|
2020-10-26 11:01:33 +00:00
|
|
|
func (c *MockCLIClient) toStdin(s string) {
|
2020-10-20 15:08:25 +00:00
|
|
|
c.cctx.App.Metadata["stdin"] = bytes.NewBufferString(s)
|
|
|
|
}
|