generated from NdoleStudio/go-http-client
-
Notifications
You must be signed in to change notification settings - Fork 5
/
message_service_test.go
69 lines (53 loc) · 1.63 KB
/
message_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
package httpsms
import (
"context"
"encoding/json"
"net/http"
"testing"
"github.com/NdoleStudio/httpsms-go/internal/helpers"
"github.com/NdoleStudio/httpsms-go/internal/stubs"
"github.com/stretchr/testify/assert"
)
const (
fromNumber = "+18005550199"
toNumber = "+18005550100"
messageContent = "This is a sample text message"
)
func TestMessagesService_Send(t *testing.T) {
// Setup
t.Parallel()
// Arrange
apiKey := "test-api-key"
server := helpers.MakeTestServer(http.StatusOK, stubs.MessagesSendResponse())
client := New(WithBaseURL(server.URL), WithAPIKey(apiKey))
sendParams := &MessageSendParams{
Content: messageContent,
From: fromNumber,
To: toNumber,
}
// Act
message, response, err := client.Messages.Send(context.Background(), sendParams)
// Assert
assert.Nil(t, err)
assert.Equal(t, http.StatusOK, response.HTTPResponse.StatusCode)
jsonContent, _ := json.Marshal(message)
assert.JSONEq(t, string(stubs.MessagesSendResponse()), string(jsonContent))
// Teardown
server.Close()
}
func TestMessagesService_SendWithError(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.Messages.Send(context.Background(), &MessageSendParams{})
// 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()
}