generated from NdoleStudio/go-http-client
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathusers_service_test.go
96 lines (72 loc) · 2.02 KB
/
users_service_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
package lemonsqueezy
import (
"context"
"errors"
"net/http"
"strings"
"testing"
"github.com/NdoleStudio/lemonsqueezy-go/internal/helpers"
"github.com/NdoleStudio/lemonsqueezy-go/internal/stubs"
"github.com/stretchr/testify/assert"
)
func TestUsersService_Me(t *testing.T) {
// Setup
t.Parallel()
// Arrange
server := helpers.MakeTestServer(http.StatusOK, stubs.UsersMeResponse())
client := New(WithBaseURL(server.URL))
// Act
user, response, err := client.Users.Me(context.Background())
// Assert
assert.Nil(t, err)
assert.Equal(t, http.StatusOK, response.HTTPResponse.StatusCode)
assert.Equal(t, stubs.UsersMeResponse(), *response.Body)
assert.Equal(t, "[email protected]", user.Data.Attributes.Email)
// Teardown
server.Close()
}
func TestUsersService_MeWithError(t *testing.T) {
// Setup
t.Parallel()
// Arrange
server := helpers.MakeTestServer(http.StatusInternalServerError, nil)
client := New(WithBaseURL(server.URL))
// Act
_, response, err := client.Users.Me(context.Background())
// Assert
assert.NotNil(t, err)
assert.Equal(t, http.StatusInternalServerError, response.HTTPResponse.StatusCode)
// Teardown
server.Close()
}
func TestUsersService_MeCancelledContext(t *testing.T) {
// Setup
t.Parallel()
// Arrange
server := helpers.MakeTestServer(http.StatusInternalServerError, nil)
client := New(WithBaseURL(server.URL))
ctx, cancel := context.WithCancel(context.Background())
cancel()
// Act
_, response, err := client.Users.Me(ctx)
// Assert
assert.NotNil(t, err)
assert.Nil(t, response)
assert.True(t, errors.Is(err, context.Canceled))
// Teardown
server.Close()
}
func TestUsersService_MeWithInvalidJSONResponse(t *testing.T) {
// Setup
t.Parallel()
// Arrange
server := helpers.MakeTestServer(http.StatusOK, []byte("invalid JSON response"))
client := New(WithBaseURL(server.URL))
// Act
_, _, err := client.Users.Me(context.Background())
// Assert
assert.NotNil(t, err)
assert.True(t, strings.Contains(err.Error(), "invalid character"))
// Teardown
server.Close()
}