forked from k1LoW/runn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrunner_option.go
201 lines (171 loc) · 4.34 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
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"`
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"`
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"`
KeepSession bool `yaml:"keepSession,omitempty"`
}
type httpRunnerOption func(*httpRunnerConfig) error
type grpcRunnerOption func(*grpcRunnerConfig) error
type sshRunnerOption func(*sshRunnerConfig) error
// 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
}
}
// SkipValidateRequest 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 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
}
}
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 KeepSession(enable bool) sshRunnerOption {
return func(c *sshRunnerConfig) error {
c.KeepSession = enable
return nil
}
}