generated from NdoleStudio/go-http-client
-
Notifications
You must be signed in to change notification settings - Fork 5
/
heartbeat_service_test.go
66 lines (53 loc) · 1.57 KB
/
heartbeat_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
package httpsms
import (
"context"
"encoding/json"
"github.com/NdoleStudio/httpsms-go/internal/helpers"
"github.com/NdoleStudio/httpsms-go/internal/stubs"
"github.com/stretchr/testify/assert"
"net/http"
"testing"
)
func TestHeartbeatService_Index(t *testing.T) {
// Setup
t.Parallel()
// Arrange
apiKey := "test-api-key"
server := helpers.MakeTestServer(http.StatusOK, stubs.HeartbeatIndexResponse())
client := New(WithBaseURL(server.URL), WithAPIKey(apiKey))
// Act
heartbeats, response, err := client.Heartbeats.Index(context.Background(), &HeartbeatIndexParams{
Skip: 0,
Owner: "+18005550199",
Query: nil,
Limit: 100,
})
// Assert
assert.Nil(t, err)
assert.Equal(t, http.StatusOK, response.HTTPResponse.StatusCode)
jsonContent, _ := json.Marshal(heartbeats)
assert.JSONEq(t, string(stubs.HeartbeatIndexResponse()), string(jsonContent))
// Teardown
server.Close()
}
func TestHeartbeatService_IndexWithError(t *testing.T) {
// Setup
t.Parallel()
// Arrange
apiKey := "test-api-key"
server := helpers.MakeTestServer(http.StatusInternalServerError, stubs.HttpInternalServerErrorResponse())
client := New(WithBaseURL(server.URL), WithAPIKey(apiKey))
// Act
_, response, err := client.Heartbeats.Index(context.Background(), &HeartbeatIndexParams{
Skip: 0,
Owner: "+18005550199",
Query: nil,
Limit: 100,
})
// Assert
assert.NotNil(t, err)
assert.Equal(t, http.StatusInternalServerError, response.HTTPResponse.StatusCode)
assert.Equal(t, string(stubs.HttpInternalServerErrorResponse()), string(*response.Body))
// Teardown
server.Close()
}