-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsdbc_test.go
326 lines (261 loc) · 6.4 KB
/
sdbc_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
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
package sdbc
import (
"bytes"
"context"
"errors"
"fmt"
"github.com/brianvoe/gofakeit/v7"
"github.com/docker/docker/api/types/container"
"github.com/testcontainers/testcontainers-go"
"github.com/testcontainers/testcontainers-go/wait"
"io"
"log/slog"
"net/http"
"regexp"
"strings"
"sync"
"testing"
"time"
)
// errAlreadyInProgress is a regular expression that matches the error for a container
// removal that is already in progress.
var errAlreadyInProgress = regexp.MustCompile(`removal of container .* is already in progress`)
func prepare(tb testing.TB) {
tb.Helper()
slog.SetDefault(slog.New(newLogger(tb, nil)))
}
func prepareSurreal(ctx context.Context, tb testing.TB, opts ...Option) (*Client, func()) {
tb.Helper()
username := gofakeit.Username()
password := gofakeit.Password(true, true, true, true, true, 32)
namespace := gofakeit.FirstName()
database := gofakeit.LastName()
tb.Logf("Creating database with: username=%s, password=%s, namespace=%s, database=%s",
username, password, namespace, database,
)
dbHost, dbCleanup := prepareDatabase(ctx, tb, username, password)
client, clientCleanup := prepareClient(ctx, tb, dbHost, username, password, namespace, database, opts...)
cleanup := func() {
clientCleanup()
dbCleanup()
}
return client, cleanup
}
func prepareClient(
ctx context.Context, tb testing.TB, host, username, password, namespace, database string, opts ...Option,
) (
*Client, func(),
) {
tb.Helper()
opts = append(
[]Option{
WithLogger(slog.New(newLogger(tb, nil))),
WithHttpClient(http.DefaultClient),
WithTimeout(defaultTimeout),
WithReadLimit(defaultReadLimit),
},
opts...,
)
client, err := NewClient(ctx,
Config{
Host: host,
Username: username,
Password: password,
Namespace: namespace,
Database: database,
},
opts...,
)
if err != nil {
tb.Fatal(err)
}
cleanup := func() {
if err := client.Close(); err != nil {
tb.Fatalf("failed to close client: %s", err.Error())
}
}
return client, cleanup
}
func prepareDatabase(
ctx context.Context, tb testing.TB, username, password string,
) (
string, func(),
) {
tb.Helper()
req := testcontainers.ContainerRequest{
Name: "sdbc_" + toSlug(tb.Name()),
Image: "surrealdb/surrealdb:v" + surrealDBVersion,
Env: map[string]string{
"SURREAL_PATH": "memory",
"SURREAL_STRICT": "true",
"SURREAL_AUTH": "true",
"SURREAL_USER": username,
"SURREAL_PASS": password,
},
Cmd: []string{
"start", "--allow-funcs", "--log", "trace",
},
ExposedPorts: []string{"8000/tcp"},
WaitingFor: wait.ForLog(containerStartedMsg),
HostConfigModifier: func(conf *container.HostConfig) {
conf.AutoRemove = true
},
}
surreal, err := testcontainers.GenericContainer(ctx,
testcontainers.GenericContainerRequest{
ContainerRequest: req,
Started: true,
Reuse: true,
Logger: &logger{},
},
)
if err != nil {
tb.Fatal(err)
}
host, err := surreal.Endpoint(ctx, "")
if err != nil {
tb.Fatal(err)
}
cleanup := func() {
if err := surreal.Terminate(ctx); err != nil {
if errAlreadyInProgress.MatchString(err.Error()) {
return // this "error" is not caught by the Terminate method even though it is safe to ignore
}
tb.Fatalf("failed to terminate container: %s", err.Error())
}
}
return host, cleanup
}
func toSlug(input string) string {
// Remove special characters
reg, err := regexp.Compile("[^a-zA-Z0-9]+")
if err != nil {
panic(err)
}
processedString := reg.ReplaceAllString(input, " ")
// Remove leading and trailing spaces
processedString = strings.TrimSpace(processedString)
// Replace spaces with dashes
slug := strings.ReplaceAll(processedString, " ", "-")
// Convert to lowercase
slug = strings.ToLower(slug)
return slug
}
type logger struct{}
func (l *logger) Printf(format string, v ...any) {
slog.Info(fmt.Sprintf(format, v...))
}
//
// -- LOGGER
//
func newLogger(tb testing.TB, opts *slog.HandlerOptions) *testLogger {
tb.Helper()
buf := &bytes.Buffer{}
handler := slog.NewTextHandler(buf, opts)
if opts == nil {
opts = &slog.HandlerOptions{}
}
return &testLogger{
tb: tb,
opts: opts,
handler: handler,
buf: buf,
mu: &sync.Mutex{},
}
}
var _ slog.Handler = (*testLogger)(nil)
type testLogger struct {
tb testing.TB
opts *slog.HandlerOptions
handler slog.Handler
buf *bytes.Buffer
records []slog.Record
mu *sync.Mutex
}
func (l *testLogger) Enabled(_ context.Context, level slog.Level) bool {
if l.opts == nil || l.opts.Level == nil {
return true
}
return level >= l.opts.Level.Level()
}
func (l *testLogger) Handle(ctx context.Context, record slog.Record) error {
l.mu.Lock()
defer l.mu.Unlock()
l.records = append(l.records, record)
if err := l.handler.Handle(ctx, record); err != nil {
return err
}
output, err := io.ReadAll(l.buf)
if err != nil {
return err
}
// The output comes back with a newline, which we need to
// trim before feeding to t.Log.
output = bytes.TrimSuffix(output, []byte("\n"))
// Add calldepth. But it won't be enough, and the internal slog
// callsite will be printed. See discussion in README.md.
l.tb.Helper()
l.tb.Log(string(output))
return nil
}
func (l *testLogger) WithAttrs(attrs []slog.Attr) slog.Handler {
return &testLogger{
tb: l.tb,
opts: l.opts,
handler: l.handler.WithAttrs(attrs),
buf: l.buf,
mu: l.mu,
}
}
func (l *testLogger) WithGroup(group string) slog.Handler {
return &testLogger{
tb: l.tb,
opts: l.opts,
handler: l.handler.WithGroup(group),
buf: l.buf,
mu: l.mu,
}
}
func (l *testLogger) hasRecordMsg(msg string) bool {
l.mu.Lock()
defer l.mu.Unlock()
for _, r := range l.records {
if r.Message == msg {
return true
}
}
return false
}
//
// -- CONTEXT
//
type testContext struct {
mu sync.Mutex
err error
}
func (t *testContext) Deadline() (time.Time, bool) {
return time.Time{}, false
}
func (t *testContext) Done() <-chan struct{} {
return make(chan struct{})
}
func (t *testContext) Err() error {
t.mu.Lock()
defer t.mu.Unlock()
return t.err
}
func (t *testContext) Value(_ any) any {
return nil
}
func (t *testContext) setErr(err error) {
t.mu.Lock()
defer t.mu.Unlock()
t.err = err
}
//
// -- HTTP CLIENT
//
type mockHttpClientWithError struct{}
func (m *mockHttpClientWithError) Do(_ *http.Request) (*http.Response, error) {
return nil, errors.New("mock http client error")
}