-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproxy_http_test.go
117 lines (95 loc) · 2.72 KB
/
proxy_http_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
package proxyclient
import (
"crypto/tls"
"fmt"
"io"
"net/http"
"net/http/httptest"
"testing"
"time"
"github.com/stretchr/testify/require"
)
func TestProxyHTTP(t *testing.T) {
// Create a test server that we'll try to access through the proxy
targetServer := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
fmt.Fprintf(w, "Hello from target server")
}))
defer targetServer.Close()
t.Run("http", func(t *testing.T) {
var proxyWasUsed bool
// Create a mock proxy server
proxyServer := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
proxyWasUsed = true
if r.Method == http.MethodConnect {
handleTunneling(w, r)
} else {
handleHTTP(w, r)
}
}))
defer proxyServer.Close()
client, err := New(proxyServer.URL)
require.NoError(t, err)
// Make request to target server
resp, err := client.Get(targetServer.URL)
if err != nil {
t.Fatalf("Failed to make request through proxy: %v", err)
}
defer resp.Body.Close()
// Check if proxy was used
if !proxyWasUsed {
t.Error("Proxy was not used for the request")
}
// Verify response status
if resp.StatusCode != http.StatusOK {
t.Errorf("Expected status OK, got %v", resp.Status)
}
// Verify response body
body, err := io.ReadAll(resp.Body)
if err != nil {
t.Fatalf("Failed to read response body: %v", err)
}
expectedBody := "Hello from target server"
if string(body) != expectedBody {
t.Errorf("Expected body %q, got %q", expectedBody, string(body))
}
})
t.Run("https", func(t *testing.T) {
var proxyWasUsed bool
proxyServer := httptest.NewTLSServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
proxyWasUsed = true
if r.Method == http.MethodConnect {
handleTunneling(w, r)
} else {
handleHTTP(w, r)
}
}))
defer proxyServer.Close()
tr := &http.Transport{
TLSClientConfig: &tls.Config{InsecureSkipVerify: true},
}
client, err := New(proxyServer.URL, WithTransport(tr), WithTimeout(5*time.Second))
require.NoError(t, err)
resp, err := client.Get(targetServer.URL)
if err != nil {
t.Fatalf("Failed to make request through proxy: %v", err)
}
defer resp.Body.Close()
// Check if proxy was used
if !proxyWasUsed {
t.Error("Proxy was not used for the request")
}
// Verify response status
if resp.StatusCode != http.StatusOK {
t.Errorf("Expected status OK, got %v", resp.Status)
}
// Verify response body
body, err := io.ReadAll(resp.Body)
if err != nil {
t.Fatalf("Failed to read response body: %v", err)
}
expectedBody := "Hello from target server"
if string(body) != expectedBody {
t.Errorf("Expected body %q, got %q", expectedBody, string(body))
}
})
}