-
Notifications
You must be signed in to change notification settings - Fork 43
/
charge_test.go
64 lines (52 loc) · 1.25 KB
/
charge_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
package paystack
import (
"testing"
)
func TestChargeServiceCreate(t *testing.T) {
bankAccount := BankAccount{
Code: "057",
AccountNumber: "0000000000",
}
charge := ChargeRequest{
Email: "your_own_email_here@gmail.com",
Amount: 10000,
Bank: &bankAccount,
Birthday: "1999-12-31",
}
resp, err := c.Charge.Create(&charge)
if err != nil {
t.Errorf("Create Charge returned error: %v", err)
}
if resp["reference"] == "" {
t.Error("Missing transaction reference")
}
}
func TestChargeServiceCheckPending(t *testing.T) {
bankAccount := BankAccount{
Code: "057",
AccountNumber: "0000000000",
}
charge := ChargeRequest{
Email: "your_own_email_here@gmail.com",
Amount: 10000,
Bank: &bankAccount,
Birthday: "1999-12-31",
}
resp, err := c.Charge.Create(&charge)
if err != nil {
t.Errorf("Create charge returned error: %v", err)
}
if resp["reference"] == "" {
t.Error("Missing charge reference")
}
resp2, err := c.Charge.CheckPending(resp["reference"].(string))
if err != nil {
t.Errorf("Check pending charge returned error: %v", err)
}
if resp2["status"] == "" {
t.Error("Missing charge pending status")
}
if resp2["reference"] == "" {
t.Error("Missing charge pending reference")
}
}