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.
68 lines
2.1 KiB
68 lines
2.1 KiB
package blockchain
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestVerifyOneTransactionAndUpdate(t *testing.T) {
|
|
bc := CreateBlockchain(TestAddressOne, 0)
|
|
utxoPool := CreateUTXOPoolFromGenesisBlock(bc.Blocks[0])
|
|
|
|
bc.AddNewUserTransfer(utxoPool, PriKeyOne, TestAddressOne, TestAddressThree, 3, 0)
|
|
bc.AddNewUserTransfer(utxoPool, PriKeyOne, TestAddressOne, TestAddressTwo, 100, 0)
|
|
|
|
tx := bc.NewUTXOTransaction(PriKeyOne, TestAddressOne, TestAddressFour, 10, 0)
|
|
if tx == nil {
|
|
t.Error("failed to create a new transaction.")
|
|
}
|
|
|
|
if _, err := utxoPool.VerifyOneTransaction(tx, nil); err != nil {
|
|
t.Error("failed to verify a valid transaction.")
|
|
}
|
|
utxoPool.VerifyOneTransactionAndUpdate(tx)
|
|
}
|
|
|
|
func TestVerifyOneTransactionFail(t *testing.T) {
|
|
bc := CreateBlockchain(TestAddressOne, 0)
|
|
utxoPool := CreateUTXOPoolFromGenesisBlock(bc.Blocks[0])
|
|
|
|
bc.AddNewUserTransfer(utxoPool, PriKeyOne, TestAddressOne, TestAddressThree, 3, 0)
|
|
bc.AddNewUserTransfer(utxoPool, PriKeyOne, TestAddressOne, TestAddressTwo, 100, 0)
|
|
|
|
tx := bc.NewUTXOTransaction(PriKeyOne, TestAddressOne, TestAddressFour, 10, 0)
|
|
if tx == nil {
|
|
t.Error("failed to create a new transaction.")
|
|
}
|
|
|
|
tx.TxInput = append(tx.TxInput, tx.TxInput[0])
|
|
if _, err := utxoPool.VerifyOneTransaction(tx, nil); err == nil {
|
|
t.Error("Tx with multiple identical TxInput shouldn't be valid")
|
|
}
|
|
}
|
|
|
|
func TestDeleteOneBalanceItem(t *testing.T) {
|
|
bc := CreateBlockchain(TestAddressOne, 0)
|
|
utxoPool := CreateUTXOPoolFromGenesisBlock(bc.Blocks[0])
|
|
|
|
bc.AddNewUserTransfer(utxoPool, PriKeyOne, TestAddressOne, TestAddressThree, 3, 0)
|
|
bc.AddNewUserTransfer(utxoPool, PriKeyThree, TestAddressThree, TestAddressTwo, 3, 0)
|
|
|
|
if _, ok := utxoPool.UtxoMap[TestAddressThree]; ok {
|
|
t.Errorf("alok should not be contained in the balance map")
|
|
}
|
|
}
|
|
|
|
func TestCleanUp(t *testing.T) {
|
|
var utxoPool UTXOPool
|
|
utxoPool.UtxoMap = make(UtxoMap)
|
|
utxoPool.UtxoMap[TestAddressOne] = make(TXHash2Vout2AmountMap)
|
|
utxoPool.UtxoMap[TestAddressTwo] = TXHash2Vout2AmountMap{
|
|
"abcd": {
|
|
0: 1,
|
|
},
|
|
}
|
|
utxoPool.CleanUp()
|
|
if _, ok := utxoPool.UtxoMap[TestAddressOne]; ok {
|
|
t.Errorf("minh should not be contained in the balance map")
|
|
}
|
|
}
|
|
|