generated from NdoleStudio/go-http-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbill_service_test.go
84 lines (71 loc) · 1.82 KB
/
bill_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
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 TestBillService_Get(t *testing.T) {
// Setup
t.Parallel()
// Arrange
server := helpers.MakeTestServer(http.StatusOK, stubs.BillGet())
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"
params := &BillGetParams{
ServiceID: "10039",
Merchant: "ENEO",
ServiceNumber: "500000001",
}
// Act
bill, response, err := client.Bill.Get(
context.Background(),
params,
WithRequestNonce(nonce),
)
// Assert
assert.Nil(t, err)
assert.Equal(t, http.StatusOK, response.HTTPResponse.StatusCode)
assert.Equal(t, 1, len(bill))
assert.Equal(t, params.ServiceID, bill[0].ServiceID)
assert.Equal(t, params.Merchant, bill[0].Merchant)
assert.Equal(t, params.ServiceNumber, bill[0].ServiceNumber)
// Teardown
server.Close()
}
func TestBillService_GetEmpty(t *testing.T) {
// Setup
t.Parallel()
// Arrange
server := helpers.MakeTestServer(http.StatusOK, stubs.BillEmpty())
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"
params := &BillGetParams{
ServiceID: "10039",
Merchant: "ENEO",
ServiceNumber: "500000001",
}
// Act
bills, _, err := client.Bill.Get(
context.Background(),
params,
WithRequestNonce(nonce),
)
// Assert
assert.Nil(t, err)
assert.Equal(t, 0, len(bills))
// Teardown
server.Close()
}