forked from stellar/go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
liquidity_pool_withdraw_test.go
77 lines (66 loc) · 2.06 KB
/
liquidity_pool_withdraw_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
package txnbuild
import (
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func TestNewLiquidityPoolWithdraw(t *testing.T) {
assetA := NativeAsset{}
assetB := CreditAsset{
Code: "EUR",
Issuer: "GB7BDSZU2Y27LYNLALKKALB52WS2IZWYBDGY6EQBLEED3TJOCVMZRH7H",
}
poolId, err := NewLiquidityPoolId(assetA, assetB)
require.NoError(t, err)
t.Run("basic", func(t *testing.T) {
lpd, err := NewLiquidityPoolWithdraw(
"GB7BDSZU2Y27LYNLALKKALB52WS2IZWYBDGY6EQBLEED3TJOCVMZRH7H",
AssetAmount{assetA, "0.1000000"},
AssetAmount{assetB, "0.2000000"},
"52.5",
)
require.NoError(t, err)
assert.Equal(t, LiquidityPoolWithdraw{
SourceAccount: "GB7BDSZU2Y27LYNLALKKALB52WS2IZWYBDGY6EQBLEED3TJOCVMZRH7H",
LiquidityPoolID: poolId,
Amount: "52.5",
MinAmountA: "0.1000000",
MinAmountB: "0.2000000",
}, lpd)
})
t.Run("reversed assets", func(t *testing.T) {
_, err := NewLiquidityPoolWithdraw(
"GB7BDSZU2Y27LYNLALKKALB52WS2IZWYBDGY6EQBLEED3TJOCVMZRH7H",
AssetAmount{assetB, "0.1000000"},
AssetAmount{assetA, "0.2000000"},
"52.5",
)
require.EqualError(t, err, "AssetA must be <= AssetB")
})
}
func TestLiquidityPoolWithdrawRoundTrip(t *testing.T) {
assetA := NativeAsset{}
assetB := CreditAsset{
Code: "EUR",
Issuer: "GB7BDSZU2Y27LYNLALKKALB52WS2IZWYBDGY6EQBLEED3TJOCVMZRH7H",
}
poolId, err := NewLiquidityPoolId(assetA, assetB)
require.NoError(t, err)
lpd := &LiquidityPoolWithdraw{
SourceAccount: "GB7BDSZU2Y27LYNLALKKALB52WS2IZWYBDGY6EQBLEED3TJOCVMZRH7H",
LiquidityPoolID: poolId,
Amount: "0.1000000",
MinAmountA: "0.1000000",
MinAmountB: "0.2000000",
}
testOperationsMarshalingRoundtrip(t, []Operation{lpd}, false)
// with muxed accounts
lpd = &LiquidityPoolWithdraw{
SourceAccount: "MA7QYNF7SOWQ3GLR2BGMZEHXAVIRZA4KVWLTJJFC7MGXUA74P7UJVAAAAAAAAAAAAAJLK",
LiquidityPoolID: poolId,
Amount: "0.1000000",
MinAmountA: "0.1000000",
MinAmountB: "0.2000000",
}
testOperationsMarshalingRoundtrip(t, []Operation{lpd}, true)
}