-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapi_example_test.go
More file actions
268 lines (236 loc) · 8.16 KB
/
api_example_test.go
File metadata and controls
268 lines (236 loc) · 8.16 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
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
package core_test
import . "dappco.re/go"
type exampleStream struct {
response []byte
sent []byte
}
func (s *exampleStream) Send(data []byte) error {
s.sent = data
return nil
}
func (s *exampleStream) Receive() ([]byte, error) {
return s.response, nil
}
func (s *exampleStream) Close() error {
return nil
}
// ExampleAPI_RegisterProtocol registers a transport protocol through
// `API.RegisterProtocol` for a Lethean drive integration. Transport details stay behind
// the API wrapper while callers exchange drives, streams, and Results.
func ExampleAPI_RegisterProtocol() {
c := New()
c.API().RegisterProtocol("http", func(h *DriveHandle) (Stream, error) {
return &exampleStream{response: []byte("pong")}, nil
})
Println(c.API().Protocols())
// Output: [http]
}
// ExampleAPI_Stream opens a stream through `API.Stream` for a Lethean drive integration.
// Transport details stay behind the API wrapper while callers exchange drives, streams,
// and Results.
func ExampleAPI_Stream() {
c := New()
c.API().RegisterProtocol("http", func(h *DriveHandle) (Stream, error) {
return &exampleStream{response: []byte(Concat("connected to ", h.Name))}, nil
})
c.Drive().New(NewOptions(
Option{Key: "name", Value: "charon"},
Option{Key: "transport", Value: "http://10.69.69.165:9101"},
))
r := c.API().Stream("charon")
if r.OK {
stream := r.Value.(Stream)
resp, _ := stream.Receive()
Println(string(resp))
stream.Close()
}
// Output: connected to charon
}
// ExampleAPI_Call calls a remote method through `API.Call` for a Lethean drive
// integration. Transport details stay behind the API wrapper while callers exchange
// drives, streams, and Results.
func ExampleAPI_Call() {
c := New()
c.API().RegisterProtocol("http", func(_ *DriveHandle) (Stream, error) {
return &exampleStream{response: []byte(`{"ok":true}`)}, nil
})
c.Drive().New(NewOptions(
Option{Key: "name", Value: "charon"},
Option{Key: "transport", Value: "http://10.69.69.165:9101"},
))
r := c.API().Call("charon", "agent.status", NewOptions())
Println(r.Value)
// Output: {"ok":true}
}
// ExampleAPI_Protocols lists transport protocols through `API.Protocols` for a Lethean
// drive integration. Transport details stay behind the API wrapper while callers exchange
// drives, streams, and Results.
func ExampleAPI_Protocols() {
c := New()
c.API().RegisterProtocol("http", func(_ *DriveHandle) (Stream, error) {
return &exampleStream{}, nil
})
Println(c.API().Protocols())
// Output: [http]
}
// ExampleCore_RemoteAction resolves an action name locally before a remote drive prefix is
// needed. Transport details stay behind the API wrapper while callers exchange drives,
// streams, and Results.
func ExampleCore_RemoteAction() {
c := New()
// Local action
c.Action("status", func(_ Context, _ Options) Result {
return Result{Value: "running", OK: true}
})
// No colon — resolves locally
r := c.RemoteAction("status", Background(), NewOptions())
Println(r.Value)
// Output: running
}
// ExampleHTTPGet fetches a local health endpoint through the core HTTP client wrapper for
// a Lethean drive integration. Transport details stay behind the API wrapper while callers
// exchange drives, streams, and Results.
func ExampleHTTPGet() {
srv := NewHTTPTestServer(HandlerFunc(func(w ResponseWriter, _ *Request) {
WriteString(w, "ok")
}))
defer srv.Close()
r := HTTPGet(srv.URL)
defer r.Value.(*Response).Body.Close()
body := ReadAll(r.Value.(*Response).Body)
Println(body.Value)
// Output: ok
}
// ExampleHTTPPost sends a reader-backed payload through the core HTTP client wrapper for a
// Lethean drive integration. Transport details stay behind the API wrapper while callers
// exchange drives, streams, and Results.
func ExampleHTTPPost() {
srv := NewHTTPTestServer(HandlerFunc(func(w ResponseWriter, _ *Request) {
WriteString(w, "created")
}))
defer srv.Close()
r := HTTPPost(srv.URL, "text/plain", NewReader("payload"))
defer r.Value.(*Response).Body.Close()
body := ReadAll(r.Value.(*Response).Body)
Println(body.Value)
// Output: created
}
// ExampleHTTPPostForm submits form data through the core HTTP client wrapper for a Lethean
// drive integration. Transport details stay behind the API wrapper while callers exchange
// drives, streams, and Results.
func ExampleHTTPPostForm() {
srv := NewHTTPTestServer(HandlerFunc(func(w ResponseWriter, _ *Request) {
WriteString(w, "submitted")
}))
defer srv.Close()
r := HTTPPostForm(srv.URL, nil)
defer r.Value.(*Response).Body.Close()
body := ReadAll(r.Value.(*Response).Body)
Println(body.Value)
// Output: submitted
}
// ExampleNewHTTPRequest builds a POST request with a payload for a deployment endpoint.
// Transport details stay behind the API wrapper while callers exchange drives, streams,
// and Results.
func ExampleNewHTTPRequest() {
r := NewHTTPRequest("POST", "https://example.com/deploy", NewReader("payload"))
req := r.Value.(*Request)
Println(req.Method)
Println(req.URL.Path)
// Output:
// POST
// /deploy
}
// ExampleNewHTTPRequestContext builds a request bound to the active Core context for a
// status endpoint. Transport details stay behind the API wrapper while callers exchange
// drives, streams, and Results.
func ExampleNewHTTPRequestContext() {
ctx := New().Context()
r := NewHTTPRequestContext(ctx, "GET", "https://example.com/status", nil)
req := r.Value.(*Request)
Println(req.Context() == ctx)
Println(req.Method)
// Output:
// true
// GET
}
// ExampleHTTPStatusText reads status reason text through `HTTPStatusText` for a Lethean
// drive integration. Transport details stay behind the API wrapper while callers exchange
// drives, streams, and Results.
func ExampleHTTPStatusText() {
Println(HTTPStatusText(201))
// Output: Created
}
// ExampleNewMultipartWriter creates multipart form data through `NewMultipartWriter` for a
// Lethean drive integration. Transport details stay behind the API wrapper while callers
// exchange drives, streams, and Results.
func ExampleNewMultipartWriter() {
buf := NewBuffer()
writer := NewMultipartWriter(buf)
writer.WriteField("name", "codex")
boundary := writer.Boundary()
writer.Close()
Println(boundary != "")
Println(Contains(buf.String(), "codex"))
// Output:
// true
// true
}
// ExampleNewMultipartReader reads multipart form data through `NewMultipartReader` for a
// Lethean drive integration. Transport details stay behind the API wrapper while callers
// exchange drives, streams, and Results.
func ExampleNewMultipartReader() {
buf := NewBuffer()
writer := NewMultipartWriter(buf)
writer.WriteField("name", "codex")
boundary := writer.Boundary()
writer.Close()
reader := NewMultipartReader(buf, boundary)
part, _ := reader.NextPart()
data := ReadAll(part)
Println(part.FormName())
Println(data.Value)
// Output:
// name
// codex
}
// ExampleNewHTTPTestServer creates an HTTP fixture server for handler validation.
// Transport details stay behind the API wrapper while callers exchange drives, streams,
// and Results.
func ExampleNewHTTPTestServer() {
srv := NewHTTPTestServer(HandlerFunc(func(w ResponseWriter, _ *Request) {
WriteString(w, "ok")
}))
defer srv.Close()
Println(HasPrefix(srv.URL, "http://"))
// Output: true
}
// ExampleNewHTTPTestTLSServer creates a TLS fixture server for HTTPS handler validation.
// Transport details stay behind the API wrapper while callers exchange drives, streams,
// and Results.
func ExampleNewHTTPTestTLSServer() {
srv := NewHTTPTestTLSServer(HandlerFunc(func(w ResponseWriter, _ *Request) {
WriteString(w, "ok")
}))
defer srv.Close()
Println(HasPrefix(srv.URL, "https://"))
// Output: true
}
// ExampleNewHTTPTestRecorder records response status for handler validation. Transport
// details stay behind the API wrapper while callers exchange drives, streams, and Results.
func ExampleNewHTTPTestRecorder() {
rec := NewHTTPTestRecorder()
rec.WriteHeader(202)
Println(rec.Code)
// Output: 202
}
// ExampleNewHTTPTestRequest builds a request fixture for a status route. Transport details
// stay behind the API wrapper while callers exchange drives, streams, and Results.
func ExampleNewHTTPTestRequest() {
req := NewHTTPTestRequest("GET", "/status", nil)
Println(req.Method)
Println(req.URL.Path)
// Output:
// GET
// /status
}