forked from stripe/stripe-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpaymentsource_test.go
109 lines (93 loc) · 2.64 KB
/
paymentsource_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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
package stripe
import (
"encoding/json"
"testing"
"github.com/fatsoma/tabb-stripe-go/form"
assert "github.com/stretchr/testify/require"
)
func TestSourceParams_AppendTo(t *testing.T) {
{
params := &SourceParams{Token: String("tok_123")}
body := &form.Values{}
form.AppendTo(body, params)
t.Logf("body = %+v", body)
assert.Equal(t, []string{"tok_123"}, body.Get("source"))
}
{
params := &SourceParams{Card: &CardParams{Number: String("4242424242424242")}}
body := &form.Values{}
form.AppendTo(body, params)
t.Logf("body = %+v", body)
assert.Equal(t, []string{"4242424242424242"}, body.Get("source[number]"))
assert.Equal(t, []string{"card"}, body.Get("source[object]"))
}
}
func TestPaymentSource_MarshalJSON(t *testing.T) {
{
id := "card_123"
name := "alice cooper"
paymentSource := &PaymentSource{
Type: PaymentSourceTypeCard,
ID: id,
Card: &Card{
ID: id,
Name: name,
},
}
d, err := json.Marshal(paymentSource)
assert.NoError(t, err)
assert.NotNil(t, d)
unmarshalled := &PaymentSource{}
err = json.Unmarshal(d, unmarshalled)
assert.NoError(t, err)
assert.Equal(t, unmarshalled.ID, id)
assert.NotNil(t, unmarshalled.Card)
assert.Equal(t, unmarshalled.Card.ID, id)
assert.Equal(t, unmarshalled.Card.Name, name)
}
{
id := "ba_123"
name := "big bank"
paymentSource := &PaymentSource{
Type: PaymentSourceTypeBankAccount,
ID: id,
BankAccount: &BankAccount{
ID: id,
AccountHolderName: name,
},
}
d, err := json.Marshal(paymentSource)
assert.NoError(t, err)
assert.NotNil(t, d)
unmarshalled := &PaymentSource{}
err = json.Unmarshal(d, unmarshalled)
assert.NoError(t, err)
assert.Equal(t, unmarshalled.ID, id)
assert.NotNil(t, unmarshalled.BankAccount)
assert.Equal(t, unmarshalled.BankAccount.ID, id)
assert.Equal(t, unmarshalled.BankAccount.AccountHolderName, name)
}
}
func TestPaymentSource_UnmarshalJSON(t *testing.T) {
// Unmarshals from a JSON string
{
var v PaymentSource
err := json.Unmarshal([]byte(`"ba_123"`), &v)
assert.NoError(t, err)
assert.Equal(t, "ba_123", v.ID)
}
// Unmarshals from a JSON object
{
// We build the JSON object manually here because it's key that the
// `object` field is included so that the source knows what type to
// decode
data := []byte(`{"id":"ba_123", "object":"bank_account"}`)
var v PaymentSource
err := json.Unmarshal(data, &v)
assert.NoError(t, err)
assert.Equal(t, PaymentSourceTypeBankAccount, v.Type)
// The payment source has a field for each possible type, so the bank
// account is located one level down
assert.Equal(t, "ba_123", v.BankAccount.ID)
}
}