-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathproxy_test.go
More file actions
222 lines (201 loc) · 5.82 KB
/
proxy_test.go
File metadata and controls
222 lines (201 loc) · 5.82 KB
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
/*
Copyright © 2022 Pete Cornish <outofcoffee@gmail.com>
Licensed under the Apache License, Proxy 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package cmd
import (
"fmt"
"gatehill.io/imposter/internal/engine"
"gatehill.io/imposter/internal/engine/enginetests"
"gatehill.io/imposter/internal/proxy"
"github.com/sirupsen/logrus"
"io"
"net/http"
"os"
"path"
"strings"
"testing"
"time"
)
func init() {
logger.SetLevel(logrus.TraceLevel)
}
func Test_proxyUpstream(t *testing.T) {
type args struct {
rewrite bool
options proxy.RecorderOptions
}
tests := []struct {
name string
args args
}{
{
name: "proxy example.com, hierarchical response files",
args: args{
rewrite: false,
options: proxy.RecorderOptions{
FlatResponseFileStructure: false,
},
},
},
{
name: "proxy example.com, flat response files",
args: args{
rewrite: false,
options: proxy.RecorderOptions{
FlatResponseFileStructure: true,
},
},
},
{
name: "proxy SOAP 1.1 service with SOAPAction",
args: args{
rewrite: false,
options: proxy.RecorderOptions{
FlatResponseFileStructure: false,
Soap11Mode: true,
},
},
},
}
for _, tt := range tests {
server, upstream, upstreamPort, err := startUpstream()
if err != nil {
t.Fatal(err)
}
t.Cleanup(func() {
server.Close()
})
t.Run(tt.name, func(t *testing.T) {
port := enginetests.GetFreePort()
outputDir, err := os.MkdirTemp(os.TempDir(), "imposter-cli")
if err != nil {
panic(err)
}
go func() {
proxyUpstream(upstream, port, outputDir, tt.args.rewrite, tt.args.options)
}()
if up := engine.WaitUntilUp(port, nil); !up {
t.Fatalf("proxy did not come up on port %d", port)
}
// Send appropriate request based on test mode
if tt.args.options.Soap11Mode {
if err := sendSoapRequestToProxy(port); err != nil {
t.Fatal(err)
}
} else {
if err := sendRequestToProxy(port); err != nil {
t.Fatal(err)
}
}
upstreamHostAndPort := fmt.Sprintf("localhost-%d", upstreamPort)
cfgFileName := upstreamHostAndPort + "-config.yaml"
var indexFileName string
if tt.args.options.Soap11Mode {
// SOAP mode: expect SOAPAction in filename
if tt.args.options.FlatResponseFileStructure {
indexFileName = upstreamHostAndPort + "-POST-index_http___example_com_service_GetUser.txt"
} else {
indexFileName = "POST-index_http___example_com_service_GetUser.txt"
}
} else if tt.args.options.FlatResponseFileStructure {
indexFileName = upstreamHostAndPort + "-GET-index.txt"
} else {
indexFileName = "GET-index.txt"
}
if cfgExists := engine.WaitForOp(fmt.Sprintf("config file: %s", cfgFileName), 10*time.Second, nil, func() bool {
if _, err = os.Stat(path.Join(outputDir, cfgFileName)); err != nil {
return false
}
return true
}); !cfgExists {
t.Fatalf("config file not found")
}
if indexExists := engine.WaitForOp(fmt.Sprintf("index file: %s", indexFileName), 10*time.Second, nil, func() bool {
if _, err = os.Stat(path.Join(outputDir, indexFileName)); err != nil {
return false
}
return true
}); !indexExists {
t.Fatalf("index file not found")
}
})
}
}
func startUpstream() (server *http.Server, url string, port int, err error) {
mux := http.NewServeMux()
mux.HandleFunc("/", func(writer http.ResponseWriter, request *http.Request) {
writer.Header().Set("Content-Disposition", "filename=hello.txt")
writer.Write([]byte("hello world"))
})
port = enginetests.GetFreePort()
server = &http.Server{Addr: fmt.Sprintf(":%d", port), Handler: mux}
go func() {
server.ListenAndServe()
}()
url = fmt.Sprintf("http://localhost:%d", port)
if up := engine.WaitForUrl("upstream", url, nil); !up {
return nil, "", 0, fmt.Errorf("failed to start upstream on port %d", port)
}
return server, url, port, nil
}
func sendRequestToProxy(port int) error {
client := http.Client{
Timeout: 2 * time.Second,
}
url := fmt.Sprintf("http://localhost:%d", port)
resp, err := client.Get(url)
if err != nil {
return fmt.Errorf("request failed for proxy at %s: %s", url, err)
}
if _, err := io.ReadAll(resp.Body); err != nil {
return fmt.Errorf("body read failed for proxy at %s: %s", url, err)
}
_ = resp.Body.Close()
if resp.StatusCode == 200 {
logger.Tracef("proxy up at %s", url)
return nil
}
return nil
}
func sendSoapRequestToProxy(port int) error {
client := http.Client{
Timeout: 2 * time.Second,
}
url := fmt.Sprintf("http://localhost:%d", port)
soapBody := `<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<GetUser xmlns="http://example.com/service">
<userId>123</userId>
</GetUser>
</soap:Body>
</soap:Envelope>`
req, err := http.NewRequest("POST", url, strings.NewReader(soapBody))
if err != nil {
return fmt.Errorf("failed to create SOAP request: %s", err)
}
req.Header.Set("Content-Type", "text/xml; charset=utf-8")
req.Header.Set("SOAPAction", "http://example.com/service/GetUser")
resp, err := client.Do(req)
if err != nil {
return fmt.Errorf("SOAP request failed for proxy at %s: %s", url, err)
}
if _, err := io.ReadAll(resp.Body); err != nil {
return fmt.Errorf("body read failed for proxy at %s: %s", url, err)
}
_ = resp.Body.Close()
if resp.StatusCode == 200 {
logger.Tracef("SOAP proxy up at %s", url)
return nil
}
return nil
}