Commit 9a7d0563 authored by linj's avatar linj Committed by linj

fmt

parent 5d430bfe
......@@ -4,14 +4,13 @@ import (
"github.com/stretchr/testify/assert"
"testing"
pty "gitlab.33.cn/chain33/chain33/plugin/dapp/unfreeze/types"
"gitlab.33.cn/chain33/chain33/types"
dbm "gitlab.33.cn/chain33/chain33/common/db"
"gitlab.33.cn/chain33/chain33/account"
"gitlab.33.cn/chain33/chain33/common/address"
"gitlab.33.cn/chain33/chain33/common"
"gitlab.33.cn/chain33/chain33/common/address"
"gitlab.33.cn/chain33/chain33/common/crypto"
dbm "gitlab.33.cn/chain33/chain33/common/db"
pty "gitlab.33.cn/chain33/chain33/plugin/dapp/unfreeze/types"
"gitlab.33.cn/chain33/chain33/types"
)
type execEnv struct {
......@@ -99,10 +98,9 @@ func TestUnfreeze(t *testing.T) {
assert.NotNil(t, receipt)
//t.Log(receipt)
accTmp := accA.LoadExecAccount(accountA.Addr, execAddr)
assert.Equal(t, total - p1.TotalCount, accTmp.Balance)
assert.Equal(t, total-p1.TotalCount, accTmp.Balance)
assert.Equal(t, p1.TotalCount, accTmp.Frozen)
// 提币
p2 := &pty.UnfreezeWithdraw{
UnfreezeID: string(unfreezeID(string(createTx.Hash()))),
......@@ -123,14 +121,13 @@ func TestUnfreeze(t *testing.T) {
//t.Log(receipt)
accATmp := accA.LoadExecAccount(accountA.Addr, execAddr)
accBTmp := accB.LoadExecAccount(accountB.Addr, execAddr)
assert.Equal(t, total - p1.TotalCount, accATmp.Balance)
assert.Equal(t, total-p1.TotalCount, accATmp.Balance)
u := pty.Unfreeze{}
e := types.Decode(receipt.KV[2].Value, &u)
assert.Nil(t, e)
assert.Equal(t, u.Remaining, accATmp.Frozen)
assert.Equal(t, accountB.Balance + p1.TotalCount - u.Remaining, accBTmp.Balance)
assert.Equal(t, accountB.Balance+p1.TotalCount-u.Remaining, accBTmp.Balance)
// 不是受益人提币
{
......@@ -187,7 +184,7 @@ func TestUnfreeze(t *testing.T) {
assert.NotNil(t, receipt)
//t.Log(receipt)
accATmp = accA.LoadExecAccount(accountA.Addr, execAddr)
assert.Equal(t, total + total, accATmp.Balance + accBTmp.Balance)
assert.Equal(t, total+total, accATmp.Balance+accBTmp.Balance)
assert.Equal(t, int64(0), accATmp.Frozen)
// 终止后不能继续提币
......@@ -231,4 +228,3 @@ func signTx(tx *types.Transaction, hexPrivKey string) (*types.Transaction, error
tx.Sign(int32(signType), privKey)
return tx, nil
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment