-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
141 lines (132 loc) · 3.05 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
/*
* Project: raft-lite
* ---------------------
* Authors:
* Minjian Chen 813534
* Shijie Liu 813277
* Weizhi Xu 752454
* Wenqing Xue 813044
* Zijun Chen 813190
*/
package main
import (
"log"
"os"
"github.com/PwzXxm/raft-lite/client"
"github.com/PwzXxm/raft-lite/functests"
"github.com/PwzXxm/raft-lite/simulation"
"github.com/pkg/errors"
"github.com/urfave/cli/v2"
)
func main() {
// run simulation
cmdSimulation := &cli.Command{
Name: "simulation",
Usage: "commands for running simulation",
Subcommands: []*cli.Command{
{
Name: "local",
Usage: "start a local simulation",
Flags: []cli.Flag{
&cli.Int64Flag{Name: "n", Usage: "number of peers", Required: true},
},
Action: func(c *cli.Context) error {
if c.Int("n") == 0 {
return errors.New("please provide -n")
}
return localSimulation(c.Int("n"))
},
},
},
}
// run functional test
cmdFunctional := &cli.Command{
Name: "functionaltest",
Usage: "commands for running functional tests",
Subcommands: []*cli.Command{
{
Name: "list",
Usage: "list all avaliable tests",
Action: func(c *cli.Context) error {
functests.List()
return nil
},
},
{
Name: "count",
Usage: "count all avaliable tests",
Action: func(c *cli.Context) error {
functests.Count()
return nil
},
},
{
Name: "run",
Usage: "run a specific tests",
Flags: []cli.Flag{
&cli.Int64Flag{Name: "n", Usage: "test id", Required: true},
},
Action: func(c *cli.Context) error {
return functests.Run(c.Int("n"))
},
},
},
}
// run raft
cmdStart := &cli.Command{
Name: "peer",
Usage: "commands for running raft",
Flags: []cli.Flag{
&cli.PathFlag{Name: "c", Usage: "peer config file path", Required: true},
},
Action: func(c *cli.Context) error {
return StartPeerFromFile(c.Path("c"))
},
}
// run complex testcases where actions are generated randomly
cmdIntegrationTest := &cli.Command{
Name: "integrationtest",
Usage: "run complex testcases where actions are generated randomly",
Flags: []cli.Flag{
&cli.Int64Flag{Name: "t", Usage: "time in minutes", Required: true},
},
Action: func(c *cli.Context) error {
return functests.RunComplex(c.Int64("t"))
},
}
// run starting client
cmdClient := &cli.Command{
Name: "client",
Usage: "commands for starting client",
Flags: []cli.Flag{
&cli.PathFlag{Name: "c", Usage: "client config file path", Required: true},
},
Action: func(c *cli.Context) error {
return startClient(c.Path("c"))
},
}
app := &cli.App{
Commands: []*cli.Command{
cmdSimulation,
cmdFunctional,
cmdStart,
cmdIntegrationTest,
cmdClient,
},
Usage: "A transaction system with Raft consensus algorithm",
}
err := app.Run(os.Args)
if err != nil {
log.Fatal(err)
}
}
func localSimulation(n int) error {
rf := simulation.RunLocally(n)
defer rf.StopAll()
rf.StartReadingCMD()
return nil
}
func startClient(filePath string) error {
err := client.StartClientFromFile(filePath)
return err
}