-
Notifications
You must be signed in to change notification settings - Fork 0
/
slogtest_test.go
73 lines (63 loc) · 1.6 KB
/
slogtest_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
package slogbugsnag_test
import (
"bytes"
"encoding/json"
"fmt"
"log/slog"
"net/http"
"net/http/httptest"
"testing"
"testing/slogtest"
"github.com/bugsnag/bugsnag-go/v2"
slogbugsnag "github.com/veqryn/slog-bugsnag"
)
func TestSlogtest(t *testing.T) {
svr := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(http.StatusOK)
}))
defer svr.Close()
// Set the bugsnag config to send all communication to the test server
notifiers := slogbugsnag.NewNotifierWorkers(&slogbugsnag.NotifierOptions{
Notifier: bugsnag.New(bugsnag.Configuration{
Endpoints: bugsnag.Endpoints{
Notify: svr.URL,
Sessions: svr.URL,
},
}),
})
opts := &slogbugsnag.HandlerOptions{Notifiers: notifiers}
var buf bytes.Buffer
h := slogbugsnag.NewHandler(slog.NewJSONHandler(&buf, nil), opts)
results := func() []map[string]any {
ms, err := parseLines(buf.Bytes(), parseJSON)
if err != nil {
t.Fatal(err)
}
return ms
}
if err := slogtest.TestHandler(h, results); err != nil {
t.Fatal(err)
}
}
func parseLines(src []byte, parse func([]byte) (map[string]any, error)) ([]map[string]any, error) {
fmt.Println(string(src))
var records []map[string]any
for _, line := range bytes.Split(src, []byte{'\n'}) {
if len(line) == 0 {
continue
}
m, err := parse(line)
if err != nil {
return nil, fmt.Errorf("%s: %w", string(line), err)
}
records = append(records, m)
}
return records, nil
}
func parseJSON(bs []byte) (map[string]any, error) {
var m map[string]any
if err := json.Unmarshal(bs, &m); err != nil {
return nil, err
}
return m, nil
}