OSDN Git Service

update TestRescanWallet
[bytom/vapor.git] / test / wallet_test.go
index b310161..f1a5b7e 100644 (file)
 package test
 
-// func TestEncodeDecodeGlobalTxIndex(t *testing.T) {
-//     want := &struct {
-//             BlockHash bc.Hash
-//             Position  uint64
-//     }{
-//             BlockHash: bc.NewHash([32]byte{0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, 0x20}),
-//             Position:  1,
-//     }
-
-//     globalTxIdx := database.CalcGlobalTxIndex(&want.BlockHash, want.Position)
-//     blockHashGot, positionGot := wallet.ParseGlobalTxIdx(globalTxIdx)
-//     if *blockHashGot != want.BlockHash {
-//             t.Errorf("blockHash mismatch. Get: %v. Expect: %v", *blockHashGot, want.BlockHash)
-//     }
-
-//     if positionGot != want.Position {
-//             t.Errorf("position mismatch. Get: %v. Expect: %v", positionGot, want.Position)
-//     }
-// }
+import (
+       "io/ioutil"
+       "os"
+       "reflect"
+       "testing"
+       "time"
+
+       "github.com/vapor/account"
+       "github.com/vapor/asset"
+       "github.com/vapor/blockchain/pseudohsm"
+       "github.com/vapor/blockchain/signers"
+       "github.com/vapor/blockchain/txbuilder"
+       "github.com/vapor/config"
+       "github.com/vapor/consensus"
+       "github.com/vapor/crypto/ed25519/chainkd"
+       "github.com/vapor/database"
+       dbm "github.com/vapor/database/leveldb"
+       "github.com/vapor/event"
+       "github.com/vapor/protocol"
+       "github.com/vapor/protocol/bc"
+       "github.com/vapor/protocol/bc/types"
+       wt "github.com/vapor/wallet"
+)
+
+func TestWalletUpdate(t *testing.T) {
+       dirPath, err := ioutil.TempDir(".", "")
+       if err != nil {
+               t.Fatal(err)
+       }
+       defer os.RemoveAll(dirPath)
+
+       config.CommonConfig = config.DefaultConfig()
+       testDB := dbm.NewDB("testdb", "leveldb", "temp")
+       defer func() {
+               testDB.Close()
+               os.RemoveAll("temp")
+       }()
+
+       store := database.NewStore(testDB)
+       walletStore := database.NewWalletStore(testDB)
+       dispatcher := event.NewDispatcher()
+       txPool := protocol.NewTxPool(store, dispatcher)
+
+       chain, err := protocol.NewChain(store, txPool, dispatcher)
+       if err != nil {
+               t.Fatal(err)
+       }
+
+       accountStore := database.NewAccountStore(testDB)
+       accountManager := account.NewManager(accountStore, chain)
+       hsm, err := pseudohsm.New(dirPath)
+       if err != nil {
+               t.Fatal(err)
+       }
+
+       xpub1, _, err := hsm.XCreate("test_pub1", "password", "en")
+       if err != nil {
+               t.Fatal(err)
+       }
+
+       testAccount, err := accountManager.Create([]chainkd.XPub{xpub1.XPub}, 1, "testAccount", signers.BIP0044)
+       if err != nil {
+               t.Fatal(err)
+       }
+
+       controlProg, err := accountManager.CreateAddress(testAccount.ID, false)
+       if err != nil {
+               t.Fatal(err)
+       }
+
+       controlProg.KeyIndex = 1
+
+       reg := asset.NewRegistry(testDB, chain)
+       // reg := asset.NewRegistry(testDB, nil)
+       asset := bc.AssetID{V0: 5}
+
+       utxos := []*account.UTXO{}
+       btmUtxo := mockUTXO(controlProg, consensus.BTMAssetID)
+       utxos = append(utxos, btmUtxo)
+       OtherUtxo := mockUTXO(controlProg, &asset)
+       utxos = append(utxos, OtherUtxo)
+
+       _, txData, err := mockTxData(utxos, testAccount)
+       if err != nil {
+               t.Fatal(err)
+       }
+
+       tx := types.NewTx(*txData)
+       block := mockSingleBlock(tx)
+       txStatus := bc.NewTransactionStatus()
+       txStatus.SetStatus(0, false)
+       txStatus.SetStatus(1, false)
+       store.SaveBlock(block, txStatus)
+
+       w := newMockWallet(walletStore, accountManager, reg, chain, dispatcher, true)
+       err = w.Wallet.AttachBlock(block)
+       if err != nil {
+               t.Fatal(err)
+       }
+
+       if _, err := w.Wallet.GetTransactionByTxID(tx.ID.String()); err != nil {
+               t.Fatal(err)
+       }
+
+       wants, err := w.Wallet.GetTransactions(testAccount.ID, "", 1, false)
+       if len(wants) != 1 {
+               t.Fatal(err)
+       }
+
+       if wants[0].ID != tx.ID {
+               t.Fatal("account txID mismatch")
+       }
+
+       for position, tx := range block.Transactions {
+               get := testDB.Get(database.CalcGlobalTxIndexKey(tx.ID.String()))
+               bh := block.BlockHeader.Hash()
+               expect := database.CalcGlobalTxIndex(&bh, uint64(position))
+               if !reflect.DeepEqual(get, expect) {
+                       t.Fatalf("position#%d: compare retrieved globalTxIdx err", position)
+               }
+       }
+}
+
+func TestRescanWallet(t *testing.T) {
+       // prepare wallet & db
+       dirPath, err := ioutil.TempDir(".", "")
+       if err != nil {
+               t.Fatal(err)
+       }
+       defer os.RemoveAll(dirPath)
+
+       config.CommonConfig = config.DefaultConfig()
+       testDB := dbm.NewDB("testdb", "leveldb", "temp")
+       walletStore := database.NewWalletStore(testDB)
+       defer func() {
+               testDB.Close()
+               os.RemoveAll("temp")
+       }()
+
+       store := database.NewStore(testDB)
+       dispatcher := event.NewDispatcher()
+       txPool := protocol.NewTxPool(store, dispatcher)
+       chain, err := protocol.NewChain(store, txPool, dispatcher)
+       if err != nil {
+               t.Fatal(err)
+       }
+
+       statusInfo := wt.StatusInfo{
+               Version:  uint(1),
+               WorkHash: bc.Hash{V0: 0xff},
+       }
+       if err := walletStore.SetWalletInfo(&statusInfo); err != nil {
+               t.Fatal(err)
+       }
+       walletInfo, err := walletStore.GetWalletInfo()
+       if err != nil {
+               t.Fatal(err)
+       }
+
+       // rawWallet, err := json.Marshal(statusInfo)
+       // if err != nil {
+       //      t.Fatal("save wallet info")
+       // }
+
+       w := newMockWallet(walletStore, nil, nil, chain, dispatcher, false)
+       w.Wallet.Status = *walletInfo
+       // w.store.SetWalletInfo(rawWallet)
+       // rawWallet = w.store.GetWalletInfo()
+       // if rawWallet == nil {
+       //      t.Fatal("fail to load wallet StatusInfo")
+       // }
+
+       // if err := json.Unmarshal(rawWallet, &w.Wallet.Status); err != nil {
+       //      t.Fatal(err)
+       // }
+
+       // rescan wallet
+       if err := w.Wallet.LoadWalletInfo(); err != nil {
+               t.Fatal(err)
+       }
+
+       block := config.GenesisBlock()
+       if w.Wallet.Status.WorkHash != block.Hash() {
+               t.Fatal("reattach from genesis block")
+       }
+}
+
+func mockUTXO(controlProg *account.CtrlProgram, assetID *bc.AssetID) *account.UTXO {
+       utxo := &account.UTXO{}
+       utxo.OutputID = bc.Hash{V0: 1}
+       utxo.SourceID = bc.Hash{V0: 2}
+       utxo.AssetID = *assetID
+       utxo.Amount = 1000000000
+       utxo.SourcePos = 0
+       utxo.ControlProgram = controlProg.ControlProgram
+       utxo.AccountID = controlProg.AccountID
+       utxo.Address = controlProg.Address
+       utxo.ControlProgramIndex = controlProg.KeyIndex
+       return utxo
+}
+
+func mockTxData(utxos []*account.UTXO, testAccount *account.Account) (*txbuilder.Template, *types.TxData, error) {
+       tplBuilder := txbuilder.NewBuilder(time.Now())
+
+       for _, utxo := range utxos {
+               txInput, sigInst, err := account.UtxoToInputs(testAccount.Signer, utxo)
+               if err != nil {
+                       return nil, nil, err
+               }
+               tplBuilder.AddInput(txInput, sigInst)
+
+               out := &types.TxOutput{}
+               if utxo.AssetID == *consensus.BTMAssetID {
+                       out = types.NewIntraChainOutput(utxo.AssetID, 100, utxo.ControlProgram)
+               } else {
+                       out = types.NewIntraChainOutput(utxo.AssetID, utxo.Amount, utxo.ControlProgram)
+               }
+               tplBuilder.AddOutput(out)
+       }
+
+       return tplBuilder.Build()
+}
+
+type mockWallet struct {
+       Wallet *wt.Wallet
+}
+
+func newMockWallet(store wt.WalletStore, account *account.Manager, asset *asset.Registry, chain *protocol.Chain, dispatcher *event.Dispatcher, txIndexFlag bool) *mockWallet {
+       w, err := wt.NewWallet(store, account, asset, nil, chain, dispatcher, txIndexFlag)
+       if err != nil {
+               panic(err)
+       }
+       return &mockWallet{w}
+}
+
+func mockSingleBlock(tx *types.Tx) *types.Block {
+       return &types.Block{
+               BlockHeader: types.BlockHeader{
+                       Version: 1,
+                       Height:  1,
+                       PreviousBlockHash: bc.Hash{
+                               V0: uint64(14952355164967094643),
+                               V1: uint64(2960316323621296529),
+                               V2: uint64(4202730371317372163),
+                               V3: uint64(7569611631634777133),
+                       },
+               },
+               Transactions: []*types.Tx{config.GenesisTx(), tx},
+       }
+}