-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathfeemodule_test.go
137 lines (120 loc) · 3.23 KB
/
feemodule_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
package photon
import (
"os"
"path"
"testing"
"github.com/stretchr/testify/assert"
"github.com/SmartMeshFoundation/Photon/channel"
"math/big"
"fmt"
"github.com/SmartMeshFoundation/Photon/codefortest"
"github.com/SmartMeshFoundation/Photon/models"
"github.com/SmartMeshFoundation/Photon/models/stormdb"
"github.com/SmartMeshFoundation/Photon/pfsproxy"
"github.com/SmartMeshFoundation/Photon/utils"
"github.com/ethereum/go-ethereum/common"
)
func TestFeeModule_Local(t *testing.T) {
db, err := newTestStormDb()
if err != nil {
t.Error(err.Error())
return
}
fm, err := NewFeeModule(db, nil)
fakeAddress := utils.NewRandomAddress()
var amount, fee *big.Int
// default fee
amount = big.NewInt(10000)
fee = fm.GetNodeChargeFee(fakeAddress, fakeAddress, amount)
fmt.Println(fee)
if fee == nil || fee.Int64() != 1 {
t.Error("fee wrong")
return
}
fm.feePolicy.AccountFee.FeeConstant = big.NewInt(5)
fm.SetFeePolicy(fm.feePolicy)
fee = fm.GetNodeChargeFee(fakeAddress, fakeAddress, amount)
fmt.Println(fee)
if fee == nil || fee.Int64() != 6 {
t.Error("fee wrong")
return
}
fm.feePolicy.TokenFeeMap[fakeAddress] = &models.FeeSetting{
FeeConstant: big.NewInt(10),
FeePercent: 100,
}
fm.SetFeePolicy(fm.feePolicy)
fee = fm.GetNodeChargeFee(fakeAddress, fakeAddress, amount)
fmt.Println(fee)
if fee == nil || fee.Int64() != 110 {
t.Error("fee wrong")
return
}
}
func TestFeeModule_WithPFS(t *testing.T) {
if testing.Short() {
return
}
// dao
db, err := newTestStormDb()
if err != nil {
t.Error(err.Error())
return
}
// pfs proxy
alice, err := codefortest.GetAccountsByAddress(common.HexToAddress("0x10b256b3C83904D524210958FA4E7F9cAFFB76c6"))
if err != nil {
t.Error(err.Error())
return
}
pfsProxy := pfsproxy.NewPfsProxy("http://192.168.124.9:7000", alice.PrivateKey)
// fee module
fm, err := NewFeeModule(db, pfsProxy)
fakeAddress := utils.NewRandomAddress()
var amount, fee *big.Int
// default fee
amount = big.NewInt(10000)
fee = fm.GetNodeChargeFee(fakeAddress, fakeAddress, amount)
fmt.Println(fee)
if fee == nil || fee.Int64() != 1 {
t.Error("fee wrong")
return
}
fm.feePolicy.AccountFee.FeeConstant = big.NewInt(5)
fm.SetFeePolicy(fm.feePolicy)
fee = fm.GetNodeChargeFee(fakeAddress, fakeAddress, amount)
fmt.Println(fee)
if fee == nil || fee.Int64() != 6 {
t.Error("fee wrong")
return
}
fm.feePolicy.TokenFeeMap[fakeAddress] = &models.FeeSetting{
FeeConstant: big.NewInt(10),
FeePercent: 100,
}
fm.SetFeePolicy(fm.feePolicy)
fee = fm.GetNodeChargeFee(fakeAddress, fakeAddress, amount)
fmt.Println(fee)
if fee == nil || fee.Int64() != 110 {
t.Error("fee wrong")
return
}
}
// newTestStormDb :
func newTestStormDb() (dao models.Dao, err error) {
dbPath := path.Join(os.TempDir(), "testxxxx.dao")
err = os.Remove(dbPath)
err = os.Remove(dbPath + ".lock")
return stormdb.OpenDb(dbPath)
}
func TestUninitMapMap(t *testing.T) {
var ts map[common.Address]map[common.Hash][]*channel.Channel
ts = make(map[common.Address]map[common.Hash][]*channel.Channel)
channelsRegistered := ts[utils.NewRandomAddress()][utils.NewRandomHash()]
assert.EqualValues(t, channelsRegistered == nil, true)
}
func TestSlice(t *testing.T) {
s := []int{1}
s = append(s[:0], s[1:]...)
fmt.Println(s)
}