-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathclient_test.go
63 lines (51 loc) · 1.14 KB
/
client_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
package golibre_test
import (
"context"
"io"
"log/slog"
"net/http"
"testing"
"github.com/equalsgibson/golibre"
)
func TestClientLogin_200(t *testing.T) {
t.Parallel()
srv := newTestServer(t)
defer srv.Close()
testService := golibre.NewService(
getTestServerAddress(srv),
golibre.Authentication{
Email: validEmail,
Password: validPassword,
},
golibre.WithTLSInsecureSkipVerify(),
)
ctx := context.Background()
_, err := testService.Connection().GetAllConnectionData(ctx)
if err != nil {
t.Fatal(err)
}
}
func TestRequestPreProcessor(t *testing.T) {
t.Parallel()
srv := newTestServer(t)
defer srv.Close()
testService := golibre.NewService(
getTestServerAddress(srv),
golibre.Authentication{
Email: validEmail,
Password: validPassword,
},
golibre.WithTLSInsecureSkipVerify(),
golibre.WithRequestPreProcessor(golibre.RequestPreProcessorFunc(
func(r *http.Request) error {
return nil
},
)),
golibre.WithSlogger(slog.New(slog.NewJSONHandler(io.Discard, nil))),
)
ctx := context.Background()
_, err := testService.Connection().GetAllConnectionData(ctx)
if err != nil {
t.Fatal(err)
}
}