forked from k1LoW/runn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrunner_option.go
299 lines (257 loc) · 6.82 KB
/
runner_option.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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
package runn
import (
"context"
"fmt"
"github.com/getkin/kin-openapi/openapi3"
)
type httpRunnerConfig struct {
Endpoint string `yaml:"endpoint"`
OpenApi3DocLocation string `yaml:"openapi3,omitempty"`
SkipValidateRequest bool `yaml:"skipValidateRequest,omitempty"`
SkipValidateResponse bool `yaml:"skipValidateResponse,omitempty"`
NotFollowRedirect bool `yaml:"notFollowRedirect,omitempty"`
MultipartBoundary string `yaml:"multipartBoundary,omitempty"`
CACert string `yaml:"cacert,omitempty"`
Cert string `yaml:"cert,omitempty"`
Key string `yaml:"key,omitempty"`
SkipVerify bool `yaml:"skipVerify,omitempty"`
Timeout string `yaml:"timeout,omitempty"`
UseCookie *bool `yaml:"useCookie,omitempty"`
openApi3Doc *openapi3.T
}
type grpcRunnerConfig struct {
Addr string `yaml:"addr"`
TLS *bool `yaml:"tls,omitempty"`
CACert string `yaml:"cacert,omitempty"`
Cert string `yaml:"cert,omitempty"`
Key string `yaml:"key,omitempty"`
SkipVerify bool `yaml:"skipVerify,omitempty"`
ImportPaths []string `yaml:"importPaths,omitempty"`
Protos []string `yaml:"protos,omitempty"`
cacert []byte
cert []byte
key []byte
}
type sshRunnerConfig struct {
SSHConfig string `yaml:"sshConfig,omitempty"`
Host string `yaml:"host,omitempty"`
Hostname string `yaml:"hostname,omitempty"`
User string `yaml:"user,omitempty"`
Port int `yaml:"port,omitempty"`
IdentityFile string `yaml:"identityFile,omitempty"`
IdentityKey string `yaml:"identityKey,omitempty"`
KeepSession bool `yaml:"keepSession,omitempty"`
LocalForward string `yaml:"localForward,omitempty"`
KeyboardInteractive []*sshAnswer `yaml:"keyboardInteractive,omitempty"`
}
type sshAnswer struct {
Match string `yaml:"match"`
Answer string `yaml:"answer"`
}
type httpRunnerOption func(*httpRunnerConfig) error
type grpcRunnerOption func(*grpcRunnerConfig) error
type sshRunnerOption func(*sshRunnerConfig) error
func (c *sshRunnerConfig) validate() error {
if c.Host == "" && c.Hostname == "" {
return fmt.Errorf("host or hostname is required")
}
if c.IdentityFile != "" && c.IdentityKey != "" {
return fmt.Errorf("identityFile and identityKey cannot be used at the same time")
}
return nil
}
// OpenApi3 sets OpenAPI Document using file path.
func OpenApi3(l string) httpRunnerOption {
return func(c *httpRunnerConfig) error {
c.OpenApi3DocLocation = l
return nil
}
}
// OpenApi3FromData sets OpenAPI Document from data.
func OpenApi3FromData(d []byte) httpRunnerOption {
return func(c *httpRunnerConfig) error {
ctx := context.Background()
loader := openapi3.NewLoader()
doc, err := loader.LoadFromData(d)
if err != nil {
return err
}
if err := doc.Validate(ctx); err != nil {
return fmt.Errorf("openapi document validation error: %w", err)
}
c.openApi3Doc = doc
return nil
}
}
// SkipValidateRequest sets whether to skip validation of HTTP request with OpenAPI Document.
func SkipValidateRequest(skip bool) httpRunnerOption {
return func(c *httpRunnerConfig) error {
c.SkipValidateRequest = skip
return nil
}
}
// SkipValidateResponse sets whether to skip validation of HTTP response with OpenAPI Document.
func SkipValidateResponse(skip bool) httpRunnerOption {
return func(c *httpRunnerConfig) error {
c.SkipValidateResponse = skip
return nil
}
}
func NotFollowRedirect(nf bool) httpRunnerOption {
return func(c *httpRunnerConfig) error {
c.NotFollowRedirect = nf
return nil
}
}
func MultipartBoundary(b string) httpRunnerOption {
return func(c *httpRunnerConfig) error {
c.MultipartBoundary = b
return nil
}
}
func HTTPCACert(path string) httpRunnerOption {
return func(c *httpRunnerConfig) error {
c.CACert = path
return nil
}
}
func HTTPCert(path string) httpRunnerOption {
return func(c *httpRunnerConfig) error {
c.Cert = path
return nil
}
}
func HTTPKey(path string) httpRunnerOption {
return func(c *httpRunnerConfig) error {
c.Key = path
return nil
}
}
func HTTPSkipVerify(skip bool) httpRunnerOption {
return func(c *httpRunnerConfig) error {
c.SkipVerify = skip
return nil
}
}
func HTTPTimeout(timeout string) httpRunnerOption {
return func(c *httpRunnerConfig) error {
c.Timeout = timeout
return nil
}
}
func UseCookie(use bool) httpRunnerOption {
return func(c *httpRunnerConfig) error {
c.UseCookie = &use
return nil
}
}
func TLS(useTLS bool) grpcRunnerOption {
return func(c *grpcRunnerConfig) error {
c.TLS = &useTLS
return nil
}
}
func CACert(path string) grpcRunnerOption {
return func(c *grpcRunnerConfig) error {
c.CACert = path
return nil
}
}
func Cert(path string) grpcRunnerOption {
return func(c *grpcRunnerConfig) error {
c.Cert = path
return nil
}
}
func Key(path string) grpcRunnerOption {
return func(c *grpcRunnerConfig) error {
c.Key = path
return nil
}
}
func CACertFromData(b []byte) grpcRunnerOption {
return func(c *grpcRunnerConfig) error {
c.cacert = b
return nil
}
}
func CertFromData(b []byte) grpcRunnerOption {
return func(c *grpcRunnerConfig) error {
c.cert = b
return nil
}
}
func KeyFromData(b []byte) grpcRunnerOption {
return func(c *grpcRunnerConfig) error {
c.key = b
return nil
}
}
// Protos append protos.
func Protos(protos []string) grpcRunnerOption {
return func(c *grpcRunnerConfig) error {
c.Protos = unique(append(c.Protos, protos...))
return nil
}
}
// ImportPaths set import paths.
func ImportPaths(paths []string) grpcRunnerOption {
return func(c *grpcRunnerConfig) error {
c.ImportPaths = unique(append(c.ImportPaths, paths...))
return nil
}
}
func SSHConfig(p string) sshRunnerOption {
return func(c *sshRunnerConfig) error {
c.SSHConfig = p
return nil
}
}
func Host(h string) sshRunnerOption {
return func(c *sshRunnerConfig) error {
c.Host = h
return nil
}
}
func Hostname(h string) sshRunnerOption {
return func(c *sshRunnerConfig) error {
c.Hostname = h
return nil
}
}
func User(u string) sshRunnerOption {
return func(c *sshRunnerConfig) error {
c.User = u
return nil
}
}
func Port(p int) sshRunnerOption {
return func(c *sshRunnerConfig) error {
c.Port = p
return nil
}
}
func IdentityFile(p string) sshRunnerOption {
return func(c *sshRunnerConfig) error {
c.IdentityFile = p
return nil
}
}
func IdentityKey(k []byte) sshRunnerOption {
return func(c *sshRunnerConfig) error {
c.IdentityKey = string(k)
return nil
}
}
func KeepSession(enable bool) sshRunnerOption {
return func(c *sshRunnerConfig) error {
c.KeepSession = enable
return nil
}
}
func LocalForward(l string) sshRunnerOption {
return func(c *sshRunnerConfig) error {
c.LocalForward = l
return nil
}
}