-
Notifications
You must be signed in to change notification settings - Fork 2
/
executor_test.go
193 lines (159 loc) · 4.26 KB
/
executor_test.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
package main
import (
"errors"
"reflect"
"testing"
)
func TestRequestEndpointNotFound(t *testing.T) {
conf, _ := NewConfiguration(NewSilentConfigurationReader("_resources/valid", "api-requests.yaml"))
executor := NewDefaultExecutor(conf)
if err := executor.RunRequest("not-found", nil); err == nil || err.Error() != "Could not find request/endpoint not-found" {
t.Error("Should not throw a not found error")
}
}
func TestExecuteRequest(t *testing.T) {
reader := &MockReader{configurations: make(map[string][]byte)}
reader.configurations["test"] = []byte(
`
url: local
endpoints:
test:
path: /test
requests:
my_request:
endpoint: test
`)
conf, err := NewConfiguration(reader)
if err != nil {
t.Error(err)
return
}
command := []string{"local/test", "-XGET"}
executor := NewExecutor(conf, &MockCommandRunner{command: command}, &MockVariableReader{})
if err := executor.RunRequest("my_request", nil); err != nil {
t.Error("Should not throw an error ", err)
}
}
func TestExecuteEndpoint(t *testing.T) {
reader := &MockReader{configurations: make(map[string][]byte)}
reader.configurations["test"] = []byte(
`
url: local
endpoints:
test:
path: /test
query: test=1
`)
conf, err := NewConfiguration(reader)
if err != nil {
t.Error(err)
return
}
command := []string{"local/test?test=1", "-XGET"}
executor := NewExecutor(conf, &MockCommandRunner{command: command}, &MockVariableReader{})
if err := executor.RunRequest("test", nil); err != nil {
t.Error("Should not throw an error ", err)
}
}
func TestExecuteEndpointWithParams(t *testing.T) {
reader := &MockReader{configurations: make(map[string][]byte)}
reader.configurations["test"] = []byte(
`
url: local
endpoints:
test:
path: /test/{param}
query: test=1
`)
conf, err := NewConfiguration(reader)
if err != nil {
t.Error(err)
return
}
command := []string{"local/test/value?test=1", "-XGET"}
executor := NewExecutor(conf, &MockCommandRunner{command: command}, &MockVariableReader{})
if err := executor.RunRequest("test", nil); err != nil {
t.Error("Should not throw an error ", err)
}
}
func TestExecuteEndpointWithParamsResolvedByArgs(t *testing.T) {
reader := &MockReader{configurations: make(map[string][]byte)}
reader.configurations["test"] = []byte(
`
url: local
endpoints:
test:
path: /test/{param}
query: test=1
`)
conf, err := NewConfiguration(reader)
if err != nil {
t.Error(err)
return
}
command := []string{"local/test/argParam?test=1", "-XGET"}
executor := NewExecutor(conf, &MockCommandRunner{command: command}, &MockVariableReader{})
if err := executor.RunRequest("test", []string{"argParam"}); err != nil {
t.Error("Should not throw an error ", err)
}
}
func TestExecuteRequestWithParams(t *testing.T) {
reader := &MockReader{configurations: make(map[string][]byte)}
reader.configurations["test"] = []byte(
`
url: local
endpoints:
test:
path: /test/{param}
requests:
my_request:
endpoint: test
`)
conf, err := NewConfiguration(reader)
if err != nil {
t.Error(err)
return
}
command := []string{"local/test/value", "-XGET"}
executor := NewExecutor(conf, &MockCommandRunner{command: command}, &MockVariableReader{})
if err := executor.RunRequest("my_request", nil); err != nil {
t.Error("Should not throw an error ", err)
}
}
func TestExecuteRequestWithParamsResolvedByArgs(t *testing.T) {
reader := &MockReader{configurations: make(map[string][]byte)}
reader.configurations["test"] = []byte(
`
url: local
endpoints:
test:
path: /test/{param}
requests:
my_request:
endpoint: test
`)
conf, err := NewConfiguration(reader)
if err != nil {
t.Error(err)
return
}
command := []string{"local/test/argParam", "-XGET"}
executor := NewExecutor(conf, &MockCommandRunner{command: command}, &MockVariableReader{})
if err := executor.RunRequest("my_request", []string{"argParam"}); err != nil {
t.Error("Should not throw an error ", err)
}
}
func (runner *MockCommandRunner) Run(command []string) error {
if !reflect.DeepEqual(command, runner.command) {
return errors.New("CommandRunner array is not correct")
}
return nil
}
func (parameterReader *MockVariableReader) Read(variableName string) string {
return "value"
}
type MockCommandRunner struct {
command []string
}
type MockVariableReader struct {
}