-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathexample_test.go
296 lines (249 loc) · 7 KB
/
example_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
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
package wasm_test
import (
"context"
_ "embed"
"fmt"
"io"
"log"
"net/http"
"net/http/httptest"
"os"
"strings"
"github.com/tetratelabs/wazero"
"github.com/http-wasm/http-wasm-host-go/api"
"github.com/http-wasm/http-wasm-host-go/handler"
wasm "github.com/http-wasm/http-wasm-host-go/handler/nethttp"
"github.com/http-wasm/http-wasm-host-go/internal/test"
)
var (
requestBody = "{\"hello\": \"panda\"}"
responseBody = "{\"hello\": \"world\"}"
serveJson = http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
r.Header.Set("Content-Type", "application/json")
w.Write([]byte(responseBody)) // nolint
})
servePath = http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
r.Header.Set("Content-Type", "text/plain")
w.Write([]byte(r.URL.Path)) // nolint
})
)
func Example_auth() {
ctx := context.Background()
// Configure and compile the WebAssembly guest binary. In this case, it is
// an auth interceptor.
mw, err := wasm.NewMiddleware(ctx, test.BinExampleAuth)
if err != nil {
log.Panicln(err)
}
defer mw.Close(ctx)
// Create the real request handler.
next := serveJson
// Wrap this with an interceptor implemented in WebAssembly.
wrapped := mw.NewHandler(ctx, next)
// Start the server with the wrapped handler.
ts := httptest.NewServer(wrapped)
defer ts.Close()
// Invoke some requests, only one of which should pass
headers := []http.Header{
{"NotAuthorization": {"1"}},
{"Authorization": {""}},
{"Authorization": {"Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ=="}},
{"Authorization": {"0"}},
}
for _, header := range headers {
req, err := http.NewRequest(http.MethodGet, ts.URL, nil)
if err != nil {
log.Panicln(err)
}
req.Header = header
resp, err := ts.Client().Do(req)
if err != nil {
log.Panicln(err)
}
resp.Body.Close()
switch resp.StatusCode {
case http.StatusOK:
fmt.Println("OK")
case http.StatusUnauthorized:
fmt.Println("Unauthorized")
default:
log.Panicln("unexpected status code", resp.StatusCode)
}
if auth, ok := resp.Header["Www-Authenticate"]; ok {
fmt.Println("Www-Authenticate:", auth[0])
}
}
// Output:
// Unauthorized
// Www-Authenticate: Basic realm="test"
// Unauthorized
// OK
// Unauthorized
}
func Example_wasi() {
ctx := context.Background()
moduleConfig := wazero.NewModuleConfig().WithStdout(os.Stdout)
// Configure and compile the WebAssembly guest binary. In this case, it
// prints the request and response to the STDOUT via WASI.
mw, err := wasm.NewMiddleware(ctx, test.BinExampleWASI,
handler.ModuleConfig(moduleConfig))
if err != nil {
log.Panicln(err)
}
defer mw.Close(ctx)
// Create the real request handler.
next := http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-Type", "application/json")
w.Header().Add("Set-Cookie", "a=b") // example of multiple headers
w.Header().Add("Set-Cookie", "c=d")
w.Header().Set("Date", "Tue, 15 Nov 1994 08:12:31 GMT")
// Use chunked encoding so we can set a test trailer
w.Header().Set("Transfer-Encoding", "chunked")
w.Header().Set("Trailer", "grpc-status")
w.Header().Set(http.TrailerPrefix+"grpc-status", "1")
w.Write([]byte(`{"hello": "world"}`)) // nolint
})
// Wrap this with an interceptor implemented in WebAssembly.
wrapped := mw.NewHandler(ctx, next)
// Start the server with the wrapped handler.
ts := httptest.NewServer(wrapped)
defer ts.Close()
// Make a client request which should print to the console
req, err := http.NewRequest("POST", ts.URL, strings.NewReader(requestBody))
if err != nil {
log.Panicln(err)
}
req.Header.Set("Content-Type", "application/json")
req.Host = "localhost"
resp, err := ts.Client().Do(req)
if err != nil {
log.Panicln(err)
}
defer resp.Body.Close()
// Output:
// POST / HTTP/1.1
// accept-encoding: gzip
// content-length: 18
// content-type: application/json
// host: localhost
// user-agent: Go-http-client/1.1
//
// {"hello": "panda"}
//
// HTTP/1.1 200
// content-type: application/json
// date: Tue, 15 Nov 1994 08:12:31 GMT
// set-cookie: a=b
// set-cookie: c=d
// trailer: grpc-status
// transfer-encoding: chunked
//
// {"hello": "world"}
// grpc-status: 1
}
func Example_log() {
ctx := context.Background()
// Configure and compile the WebAssembly guest binary. In this case, it is
// a logging interceptor.
mw, err := wasm.NewMiddleware(ctx, test.BinExampleLog, handler.Logger(api.ConsoleLogger{}))
if err != nil {
log.Panicln(err)
}
defer mw.Close(ctx)
// Create the real request handler.
next := serveJson
// Wrap this with an interceptor implemented in WebAssembly.
wrapped := mw.NewHandler(ctx, next)
// Start the server with the wrapped handler.
ts := httptest.NewServer(wrapped)
defer ts.Close()
// Make a client request.
resp, err := ts.Client().Get(ts.URL)
if err != nil {
log.Panicln(err)
}
defer resp.Body.Close()
// Output:
// hello world
}
func Example_router() {
ctx := context.Background()
// Configure and compile the WebAssembly guest binary. In this case, it is
// an example request router.
mw, err := wasm.NewMiddleware(ctx, test.BinExampleRouter)
if err != nil {
log.Panicln(err)
}
defer mw.Close(ctx)
// Wrap the real handler with an interceptor implemented in WebAssembly.
wrapped := mw.NewHandler(ctx, servePath)
// Start the server with the wrapped handler.
ts := httptest.NewServer(wrapped)
defer ts.Close()
// Invoke some requests, only one of which should pass
paths := []string{
"",
"nothosst",
"host/a",
}
for _, p := range paths {
url := fmt.Sprintf("%s/%s", ts.URL, p)
resp, err := ts.Client().Get(url)
if err != nil {
log.Panicln(err)
}
defer resp.Body.Close()
content, _ := io.ReadAll(resp.Body)
fmt.Println(string(content))
}
// Output:
// hello world
// hello world
// /a
}
func Example_redact() {
ctx := context.Background()
// Configure and compile the WebAssembly guest binary. In this case, it is
// an example response redact.
secret := "open sesame"
mw, err := wasm.NewMiddleware(ctx, test.BinExampleRedact,
handler.GuestConfig([]byte(secret)))
if err != nil {
log.Panicln(err)
}
defer mw.Close(ctx)
var body string
serveBody := http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
content, _ := io.ReadAll(r.Body)
fmt.Println(string(content))
r.Header.Set("Content-Type", "text/plain")
w.Write([]byte(body)) // nolint
})
// Wrap the real handler with an interceptor implemented in WebAssembly.
wrapped := mw.NewHandler(ctx, serveBody)
// Start the server with the wrapped handler.
ts := httptest.NewServer(wrapped)
defer ts.Close()
bodies := []string{
secret,
"hello world",
fmt.Sprintf("hello %s world", secret),
}
for _, b := range bodies {
body = b
resp, err := ts.Client().Post(ts.URL, "text/plain", strings.NewReader(body))
if err != nil {
log.Panicln(err)
}
defer resp.Body.Close()
content, _ := io.ReadAll(resp.Body)
fmt.Println(string(content))
}
// Output:
// ###########
// ###########
// hello world
// hello world
// hello ########### world
// hello ########### world
}