This repository has been archived by the owner on Dec 17, 2024. It is now read-only.
forked from stellar/go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
path_payment_strict_send_test.go
158 lines (140 loc) · 4.69 KB
/
path_payment_strict_send_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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
package txnbuild
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestPathPaymentStrictSendValidateSendAsset(t *testing.T) {
kp0 := newKeypair0()
kp2 := newKeypair2()
sourceAccount := NewSimpleAccount(kp2.Address(), int64(187316408680450))
abcdAsset := CreditAsset{"ABCD", kp0.Address()}
pathPayment := PathPaymentStrictSend{
SendAsset: CreditAsset{"ABCD", ""},
SendAmount: "10",
Destination: kp2.Address(),
DestAsset: NativeAsset{},
DestMin: "1",
Path: []Asset{abcdAsset},
}
_, err := NewTransaction(
TransactionParams{
SourceAccount: &sourceAccount,
IncrementSequenceNum: false,
Operations: []Operation{&pathPayment},
BaseFee: MinBaseFee,
Timebounds: NewInfiniteTimeout(),
},
)
if assert.Error(t, err) {
expected := "validation failed for *txnbuild.PathPaymentStrictSend operation: Field: SendAsset, Error: asset issuer: public key is undefined"
assert.Contains(t, err.Error(), expected)
}
}
func TestPathPaymentStrictSendValidateDestAsset(t *testing.T) {
kp0 := newKeypair0()
kp2 := newKeypair2()
sourceAccount := NewSimpleAccount(kp2.Address(), int64(187316408680450))
abcdAsset := CreditAsset{"ABCD", kp0.Address()}
pathPayment := PathPaymentStrictSend{
SendAsset: NativeAsset{},
SendAmount: "10",
Destination: kp2.Address(),
DestAsset: CreditAsset{"", kp0.Address()},
DestMin: "1",
Path: []Asset{abcdAsset},
}
_, err := NewTransaction(
TransactionParams{
SourceAccount: &sourceAccount,
IncrementSequenceNum: false,
Operations: []Operation{&pathPayment},
BaseFee: MinBaseFee,
Timebounds: NewInfiniteTimeout(),
},
)
if assert.Error(t, err) {
expected := "validation failed for *txnbuild.PathPaymentStrictSend operation: Field: DestAsset, Error: asset code length must be between 1 and 12 characters"
assert.Contains(t, err.Error(), expected)
}
}
func TestPathPaymentStrictSendValidateDestination(t *testing.T) {
kp0 := newKeypair0()
kp2 := newKeypair2()
sourceAccount := NewSimpleAccount(kp2.Address(), int64(187316408680450))
abcdAsset := CreditAsset{"ABCD", kp0.Address()}
pathPayment := PathPaymentStrictSend{
SendAsset: NativeAsset{},
SendAmount: "10",
Destination: "SASND3NRUY5K43PN3H3HOP5JNTIDXJFLOKKNSCZQQAFBRSEIRD5OJKXZ",
DestAsset: CreditAsset{"ABCD", kp0.Address()},
DestMin: "1",
Path: []Asset{abcdAsset},
}
_, err := NewTransaction(
TransactionParams{
SourceAccount: &sourceAccount,
IncrementSequenceNum: false,
Operations: []Operation{&pathPayment},
BaseFee: MinBaseFee,
Timebounds: NewInfiniteTimeout(),
},
)
if assert.Error(t, err) {
expected := "validation failed for *txnbuild.PathPaymentStrictSend operation: Field: Destination"
assert.Contains(t, err.Error(), expected)
}
}
func TestPathPaymentStrictSendValidateSendMax(t *testing.T) {
kp0 := newKeypair0()
kp2 := newKeypair2()
sourceAccount := NewSimpleAccount(kp2.Address(), int64(187316408680450))
abcdAsset := CreditAsset{"ABCD", kp0.Address()}
pathPayment := PathPaymentStrictSend{
SendAsset: NativeAsset{},
SendAmount: "abc",
Destination: kp2.Address(),
DestAsset: CreditAsset{"ABCD", kp0.Address()},
DestMin: "1",
Path: []Asset{abcdAsset},
}
_, err := NewTransaction(
TransactionParams{
SourceAccount: &sourceAccount,
IncrementSequenceNum: false,
Operations: []Operation{&pathPayment},
BaseFee: MinBaseFee,
Timebounds: NewInfiniteTimeout(),
},
)
if assert.Error(t, err) {
expected := "validation failed for *txnbuild.PathPaymentStrictSend operation: Field: SendAmount, Error: invalid amount format: abc"
assert.Contains(t, err.Error(), expected)
}
}
func TestPathPaymentStrictSendValidateDestAmount(t *testing.T) {
kp0 := newKeypair0()
kp2 := newKeypair2()
sourceAccount := NewSimpleAccount(kp2.Address(), int64(187316408680450))
abcdAsset := CreditAsset{"ABCD", kp0.Address()}
pathPayment := PathPaymentStrictSend{
SendAsset: NativeAsset{},
SendAmount: "10",
Destination: kp2.Address(),
DestAsset: CreditAsset{"ABCD", kp0.Address()},
DestMin: "-1",
Path: []Asset{abcdAsset},
}
_, err := NewTransaction(
TransactionParams{
SourceAccount: &sourceAccount,
IncrementSequenceNum: false,
Operations: []Operation{&pathPayment},
BaseFee: MinBaseFee,
Timebounds: NewInfiniteTimeout(),
},
)
if assert.Error(t, err) {
expected := "validation failed for *txnbuild.PathPaymentStrictSend operation: Field: DestMin, Error: amount can not be negative"
assert.Contains(t, err.Error(), expected)
}
}