generated from NdoleStudio/go-http-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cashin_service_test.go
74 lines (62 loc) · 1.66 KB
/
cashin_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
package smobilpay
import (
"context"
"net/http"
"testing"
"github.com/NdoleStudio/smobilpay-go/internal/helpers"
"github.com/NdoleStudio/smobilpay-go/internal/stubs"
"github.com/stretchr/testify/assert"
)
func TestCashinService_Get(t *testing.T) {
// Setup
t.Parallel()
// Arrange
server := helpers.MakeTestServer(http.StatusOK, stubs.CashinGetOk())
accessToken := "6B352110-4716-11ED-963F-0800200C9A66"
client := New(
WithBaseURL(server.URL),
WithAccessToken(accessToken),
WithAccessSecret("1B875FB0-4717-11ED-963F-0800200C9A66"),
)
nonce := "95cdf110-4614-4d95-b6c2-f14fe01c4995"
serviceID := "30052"
// Act
payItems, response, err := client.Cashout.Get(
context.Background(),
serviceID,
WithRequestNonce(nonce),
)
// Assert
assert.Nil(t, err)
assert.Equal(t, http.StatusOK, response.HTTPResponse.StatusCode)
assert.Equal(t, 1, len(payItems))
assert.Equal(t, serviceID, payItems[0].ServiceID)
// Teardown
server.Close()
}
func TestCashinService_GetError(t *testing.T) {
// Setup
t.Parallel()
// Arrange
server := helpers.MakeTestServer(http.StatusBadRequest, stubs.CashinGetError())
accessToken := "6B352110-4716-11ED-963F-0800200C9A66"
client := New(
WithBaseURL(server.URL),
WithAccessToken(accessToken),
WithAccessSecret("1B875FB0-4717-11ED-963F-0800200C9A66"),
)
nonce := "95cdf110-4614-4d95-b6c2-f14fe01c4995"
serviceID := "30052"
// Act
payItems, response, err := client.Cashout.Get(
context.Background(),
serviceID,
WithRequestNonce(nonce),
)
// Assert
assert.NotNil(t, err)
assert.Equal(t, http.StatusBadRequest, response.HTTPResponse.StatusCode)
assert.Equal(t, 0, len(payItems))
// Teardown
server.Close()
}