You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
84 lines
2.5 KiB
84 lines
2.5 KiB
package worker
|
|
|
|
import (
|
|
"math/big"
|
|
"math/rand"
|
|
"testing"
|
|
|
|
"github.com/ethereum/go-ethereum/crypto"
|
|
"github.com/ethereum/go-ethereum/ethdb"
|
|
"github.com/ethereum/go-ethereum/params"
|
|
"github.com/harmony-one/harmony/consensus"
|
|
"github.com/harmony-one/harmony/core"
|
|
"github.com/harmony-one/harmony/core/types"
|
|
"github.com/harmony-one/harmony/core/vm"
|
|
)
|
|
|
|
var (
|
|
// Test accounts
|
|
testBankKey, _ = crypto.GenerateKey()
|
|
testBankAddress = crypto.PubkeyToAddress(testBankKey.PublicKey)
|
|
testBankFunds = big.NewInt(8000000000000000000)
|
|
|
|
chainConfig = params.TestChainConfig
|
|
)
|
|
|
|
func TestNewWorker(t *testing.T) {
|
|
// Setup a new blockchain with genesis block containing test token on test address
|
|
var (
|
|
database = ethdb.NewMemDatabase()
|
|
gspec = core.Genesis{
|
|
Config: chainConfig,
|
|
Alloc: core.GenesisAlloc{testBankAddress: {Balance: testBankFunds}},
|
|
ShardID: 10,
|
|
}
|
|
)
|
|
|
|
genesis := gspec.MustCommit(database)
|
|
_ = genesis
|
|
chain, _ := core.NewBlockChain(database, nil, gspec.Config, consensus.NewFaker(), vm.Config{}, nil)
|
|
|
|
// Create a new worker
|
|
worker := New(params.TestChainConfig, chain, consensus.NewFaker(), testBankAddress, 0)
|
|
|
|
if worker.GetCurrentState().GetBalance(crypto.PubkeyToAddress(testBankKey.PublicKey)).Cmp(testBankFunds) != 0 {
|
|
t.Error("Worker state is not setup correctly")
|
|
}
|
|
}
|
|
|
|
func TestCommitTransactions(t *testing.T) {
|
|
// Setup a new blockchain with genesis block containing test token on test address
|
|
var (
|
|
database = ethdb.NewMemDatabase()
|
|
gspec = core.Genesis{
|
|
Config: chainConfig,
|
|
Alloc: core.GenesisAlloc{testBankAddress: {Balance: testBankFunds}},
|
|
ShardID: 10,
|
|
}
|
|
)
|
|
|
|
gspec.MustCommit(database)
|
|
chain, _ := core.NewBlockChain(database, nil, gspec.Config, consensus.NewFaker(), vm.Config{}, nil)
|
|
|
|
// Create a new worker
|
|
worker := New(params.TestChainConfig, chain, consensus.NewFaker(), testBankAddress, 0)
|
|
|
|
// Generate a test tx
|
|
baseNonce := worker.GetCurrentState().GetNonce(crypto.PubkeyToAddress(testBankKey.PublicKey))
|
|
randAmount := rand.Float32()
|
|
tx, _ := types.SignTx(types.NewTransaction(baseNonce, testBankAddress, uint32(0), big.NewInt(int64(params.Ether*randAmount)), params.TxGas, nil, nil), types.HomesteadSigner{}, testBankKey)
|
|
|
|
// Commit the tx to the worker
|
|
err := worker.CommitTransactions(types.Transactions{tx})
|
|
if err != nil {
|
|
t.Error(err)
|
|
}
|
|
|
|
if len(worker.GetCurrentReceipts()) == 0 {
|
|
t.Error("No receipt is created for new transactions")
|
|
}
|
|
|
|
if len(worker.current.txs) != 1 {
|
|
t.Error("Transaction is not committed")
|
|
}
|
|
}
|
|
|