Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
var AccountCaseAction = func(c *cli.Context) error { anum := c.Int("number") output := c.String("output") keysfile := c.GlobalString("keys") configfile := c.GlobalString("config") it, err := itest.Load(keysfile, configfile) if err != nil { return err } accounts, err := it.CreateAccountN(anum) if err != nil { return err } if err := itest.DumpAccounts(accounts, output); err != nil { return err } return nil }
AccountCaseAction is the action of account test case
var AccountCaseCommand = cli.Command{ Name: "account_case", ShortName: "a_case", Usage: "run account test case", Flags: AccountCaseFlags, Action: AccountCaseAction, }
AccountCaseCommand is the command of account test case
var AccountCaseFlags = []cli.Flag{ cli.IntFlag{ Name: "number, n", Value: 10, Usage: "number of account", }, cli.StringFlag{ Name: "output, o", Value: "accounts.json", Usage: "output of account information", }, }
AccountCaseFlags is the flags of account test case
var BenchmarkAction = func(c *cli.Context) error { dfile := "benchmark.json" r := itest.NewRunner(dfile) if err := r.Run(); err != nil { return err } <-r.Done() if err := r.Err(); err != nil { return err } return nil }
BenchmarkAction is the action of benchmark
var BenchmarkCommand = cli.Command{ Name: "benchmark", ShortName: "bench", Usage: "run benchmark test by data", Action: BenchmarkAction, }
BenchmarkCommand is the command of benchmark
var Command = cli.Command{ Name: "run", Usage: "run test by benchmark data", Flags: Flags, Subcommands: []cli.Command{ AccountCaseCommand, TransferCaseCommand, ContractCaseCommand, VoteCaseCommand, BenchmarkCommand, }, }
Command is the command of run
var ContractCaseAction = func(c *cli.Context) error { afile := c.String("account") output := c.String("output") tnum := c.Int("number") keysfile := c.GlobalString("keys") configfile := c.GlobalString("config") codefile := c.GlobalString("code") abifile := c.GlobalString("abi") it, err := itest.Load(keysfile, configfile) if err != nil { return err } contract, err := itest.LoadContract(codefile, abifile) if err != nil { return err } accounts, err := itest.LoadAccounts(afile) if err != nil { return err } cid, err := it.SetContract(contract) if err != nil { return err } if err := it.ContractTransferN(cid, tnum, accounts); err != nil { return err } if err := it.CheckAccounts(accounts); err != nil { return err } if err := itest.DumpAccounts(accounts, output); err != nil { return err } return nil }
ContractCaseAction is the action of contract test case
var ContractCaseCommand = cli.Command{ Name: "contract_case", ShortName: "c_case", Usage: "run contract test case", Flags: ContractCaseFlags, Action: ContractCaseAction, }
ContractCaseCommand is the command of contract test case
var ContractCaseFlags = []cli.Flag{ cli.IntFlag{ Name: "number, n", Value: 1000, Usage: "number of transaction", }, cli.StringFlag{ Name: "account, a", Value: "accounts.json", Usage: "load accounts from `FILE`", }, cli.StringFlag{ Name: "output, o", Value: "accounts.json", Usage: "output of account information", }, }
ContractCaseFlags ...
var Flags = []cli.Flag{ cli.StringFlag{ Name: "keys, k", Value: "", Usage: "Load keys from `FILE`", }, cli.StringFlag{ Name: "config, c", Value: "", Usage: "Load itest configuration from `FILE`", }, cli.StringFlag{ Name: "code", Value: "", Usage: "Load contract code from `FILE`", }, cli.StringFlag{ Name: "abi", Value: "", Usage: "Load contract abi from `FILE`", }, }
Flags is the flags of run command
var TransferCaseAction = func(c *cli.Context) error { afile := c.String("account") output := c.String("output") tnum := c.Int("number") keysfile := c.GlobalString("keys") configfile := c.GlobalString("config") it, err := itest.Load(keysfile, configfile) if err != nil { return err } accounts, err := itest.LoadAccounts(afile) if err != nil { return err } if err := it.TransferN(tnum, accounts); err != nil { return err } if err := it.CheckAccounts(accounts); err != nil { return err } if err := itest.DumpAccounts(accounts, output); err != nil { return err } return nil }
TransferCaseAction is the action of transfer test case
var TransferCaseCommand = cli.Command{ Name: "transfer_case", ShortName: "t_case", Usage: "run transfer test case", Flags: TransferCaseFlags, Action: TransferCaseAction, }
TransferCaseCommand is the command of transfer test case
var TransferCaseFlags = []cli.Flag{ cli.IntFlag{ Name: "number, n", Value: 1000, Usage: "number of transaction", }, cli.StringFlag{ Name: "account, a", Value: "accounts.json", Usage: "load accounts from `FILE`", }, cli.StringFlag{ Name: "output, o", Value: "accounts.json", Usage: "output of account information", }, }
TransferCaseFlags is the flags of transfer test case
var VoteCaseAction = func(c *cli.Context) error { afile := c.String("account") output := c.String("output") tnum := c.Int("number") punm := c.Int("pnumber") keysfile := c.GlobalString("keys") configfile := c.GlobalString("config") it, err := itest.Load(keysfile, configfile) if err != nil { return err } accounts, err := itest.LoadAccounts(afile) if err != nil { return err } if err := it.VoteN(tnum, punm, accounts); err != nil { return err } if err := it.CheckAccounts(accounts); err != nil { return err } if err := itest.DumpAccounts(accounts, output); err != nil { return err } return nil }
VoteCaseAction is the action of vote test case
var VoteCaseCommand = cli.Command{ Name: "vote_case", ShortName: "v_case", Usage: "run Vote test case", Flags: VoteCaseFlags, Action: VoteCaseAction, }
VoteCaseCommand is the command of vote test case
var VoteCaseFlags = []cli.Flag{ cli.IntFlag{ Name: "number, n", Value: 1000, Usage: "number of transaction", }, cli.IntFlag{ Name: "pnumber, pn", Value: 1, Usage: "number of producer", }, cli.StringFlag{ Name: "account, a", Value: "accounts.json", Usage: "load accounts from `FILE`", }, cli.StringFlag{ Name: "output, o", Value: "accounts.json", Usage: "output of account information", }, }
VoteCaseFlags is the flags of vote test case
Functions ¶
This section is empty.
Types ¶
This section is empty.