Search in sources :

Example 6 with TransactionStagedSnapshot

use of com.jd.blockchain.ledger.core.TransactionStagedSnapshot in project jdchain-core by blockchain-jd-com.

the class LedgerTransactionDataTest method initTransactionStagedSnapshot.

private TransactionStagedSnapshot initTransactionStagedSnapshot() {
    TransactionStagedSnapshot transactionStagedSnapshot = new TransactionStagedSnapshot();
    transactionStagedSnapshot.setAdminAccountHash(ClassicCryptoService.SHA256.hash("zhangsan".getBytes()));
    transactionStagedSnapshot.setContractAccountSetHash(ClassicCryptoService.SHA256.hash("lisi".getBytes()));
    transactionStagedSnapshot.setDataAccountSetHash(ClassicCryptoService.SHA256.hash("wangwu".getBytes()));
    transactionStagedSnapshot.setUserAccountSetHash(ClassicCryptoService.SHA256.hash("zhaoliu".getBytes()));
    return transactionStagedSnapshot;
}
Also used : TransactionStagedSnapshot(com.jd.blockchain.ledger.core.TransactionStagedSnapshot)

Example 7 with TransactionStagedSnapshot

use of com.jd.blockchain.ledger.core.TransactionStagedSnapshot in project jdchain-core by blockchain-jd-com.

the class TransactionSetTest method buildTransactionResult.

private TransactionResult buildTransactionResult(TransactionRequest txReq, long blockHeight, TransactionState txState) {
    TransactionStagedSnapshot txSnapshot = new TransactionStagedSnapshot();
    HashDigest adminAccountHash = LedgerTestUtils.generateRandomHash();
    txSnapshot.setAdminAccountHash(adminAccountHash);
    HashDigest userAccountSetHash = LedgerTestUtils.generateRandomHash();
    txSnapshot.setUserAccountSetHash(userAccountSetHash);
    HashDigest dataAccountSetHash = LedgerTestUtils.generateRandomHash();
    txSnapshot.setDataAccountSetHash(dataAccountSetHash);
    HashDigest contractAccountSetHash = LedgerTestUtils.generateRandomHash();
    txSnapshot.setContractAccountSetHash(contractAccountSetHash);
    OperationResult[] opResults = new OperationResult[0];
    TransactionResultData txResult = new TransactionResultData(txReq.getTransactionHash(), blockHeight, txState, txSnapshot, opResults);
    return txResult;
}
Also used : TransactionStagedSnapshot(com.jd.blockchain.ledger.core.TransactionStagedSnapshot) HashDigest(com.jd.blockchain.crypto.HashDigest) OperationResult(com.jd.blockchain.ledger.OperationResult) TransactionResultData(com.jd.blockchain.ledger.core.TransactionResultData)

Example 8 with TransactionStagedSnapshot

use of com.jd.blockchain.ledger.core.TransactionStagedSnapshot in project jdchain-core by blockchain-jd-com.

the class TransactionSetTest method testSpecialCase_1.

/**
 * 根据实际运行中一个随机出现的错误中提取到的数据来建立的测试用例,可以更简化地验证正确性;
 *
 * <p>
 *
 * 注:重构了 {@link LedgerTransaction} 和 {@link TransactionContent}
 * 等交易结构相关的类型之后,此用例已经失效; by huanghaiquan on 2020-09-16;
 */
// @Test
public void testSpecialCase_1() {
    CryptoSetting defCryptoSetting = LedgerTestUtils.createDefaultCryptoSetting();
    MemoryKVStorage testStorage = new MemoryKVStorage();
    BufferedKVStorage bufferStorage = new BufferedKVStorage(null, testStorage, testStorage, false);
    // Create a new TransactionSet, it's empty;
    TransactionSetEditor txset = new TransactionSetEditor(defCryptoSetting, keyPrefix, bufferStorage, bufferStorage, LedgerDataStructure.MERKLE_TREE);
    assertTrue(txset.isUpdated());
    assertFalse(txset.isReadonly());
    assertNull(txset.getRootHash());
    HashDigest ledgerHash = Crypto.resolveAsHashDigest(Base58Utils.decode("j5iF5xJ7KN4kjRrhD3EUKVSPmHz2bExxp3h9avqxcnnzch"));
    assertEquals("j5iF5xJ7KN4kjRrhD3EUKVSPmHz2bExxp3h9avqxcnnzch", ledgerHash.toBase58());
    BlockchainKeypair parti0 = LedgerTestUtils.createKeyPair("7VeRLBwqTAz8oRazEazeaEfqei46sk2FzvBgyHMUBJvrUEGT", "7VeRUm27GbrsX9HbQSZguChLp24HZYub6s5FJ7FjBht8BmbA");
    BlockchainKeypair userKeypair1 = LedgerTestUtils.createKeyPair("7VeRKf3GFLFcBfzvtzmtyMXEoX2HYGEJ4j7CmHcnRV99W5Dp", "7VeRYQjeAaQY5Po8MMtmGNHA2SniqLXmJaZwBS5K8zTtMAU1");
    TransactionRequest transactionRequest1 = LedgerTestUtils.createTxRequest_UserReg_SHA256(userKeypair1, ledgerHash, 1580315317127L, parti0, parti0);
    // TransactionRequest transactionRequest1 = LedgerTestUtils.createTxRequest_UserReg(userKeypair1, ledgerHash, 202001202020L,
    // parti0, parti0);
    System.out.printf("\r\n ===||=== transactionRequest1.getTransactionHash()=[%s]\r\n", transactionRequest1.getTransactionHash().toBase58());
    // assertEquals("j5sXmpcomtM2QMUNWeQWsF8bNFFnyeXoCjVAekEeLSscgY", transactionRequest1.getTransactionHash().toBase58());
    assertEquals("j5wPGKT5CUzwi8j6VfCWaP2p9YZ6WVWtMANp9HbHWzvhgG", transactionRequest1.getTransactionHash().toBase58());
    TransactionStagedSnapshot txSnapshot = new TransactionStagedSnapshot();
    txSnapshot.setAdminAccountHash(Crypto.resolveAsHashDigest(Base58Utils.decode("j5taeK6cpmJGcn8QbEYCqadna6s7NDSheDTK6NJdU4mFhh")));
    txSnapshot.setUserAccountSetHash(Crypto.resolveAsHashDigest(Base58Utils.decode("j5oQDSob92mCoGSHtrXa9soqgAtMyjwfRMt2kj7igXXJrP")));
    TransactionResult tx = new TransactionResultData(transactionRequest1.getTransactionHash(), 1, TransactionState.SUCCESS, txSnapshot);
    txset.addTransaction(transactionRequest1, tx);
    LedgerTransaction tx_query = txset.getTransaction(transactionRequest1.getTransactionHash());
    assertNotNull(tx_query);
    txset.commit();
    bufferStorage.commit();
    tx_query = txset.getTransaction(transactionRequest1.getTransactionHash());
    TransactionState tx_state = txset.getState(transactionRequest1.getTransactionHash());
    assertNotNull(tx_query);
    assertEquals(0, tx_state.CODE);
    HashDigest txsetRootHash = txset.getRootHash();
    txset = new TransactionSetEditor(-1, txsetRootHash, defCryptoSetting, keyPrefix, testStorage, testStorage, LedgerDataStructure.MERKLE_TREE, false);
    tx_query = txset.getTransaction(transactionRequest1.getTransactionHash());
    tx_state = txset.getState(transactionRequest1.getTransactionHash());
    assertNotNull(tx_query);
    assertEquals(0, tx_state.CODE);
}
Also used : TransactionState(com.jd.blockchain.ledger.TransactionState) TransactionStagedSnapshot(com.jd.blockchain.ledger.core.TransactionStagedSnapshot) TransactionResult(com.jd.blockchain.ledger.TransactionResult) CryptoSetting(com.jd.blockchain.ledger.CryptoSetting) BufferedKVStorage(com.jd.blockchain.storage.service.utils.BufferedKVStorage) HashDigest(com.jd.blockchain.crypto.HashDigest) LedgerTransaction(com.jd.blockchain.ledger.LedgerTransaction) MemoryKVStorage(com.jd.blockchain.storage.service.utils.MemoryKVStorage) BlockchainKeypair(com.jd.blockchain.ledger.BlockchainKeypair) TransactionSetEditor(com.jd.blockchain.ledger.core.TransactionSetEditor) TransactionRequest(com.jd.blockchain.ledger.TransactionRequest) TransactionResultData(com.jd.blockchain.ledger.core.TransactionResultData)

Aggregations

TransactionStagedSnapshot (com.jd.blockchain.ledger.core.TransactionStagedSnapshot)8 HashDigest (com.jd.blockchain.crypto.HashDigest)4 TransactionResultData (com.jd.blockchain.ledger.core.TransactionResultData)3 Before (org.junit.Before)2 BlockchainKeypair (com.jd.blockchain.ledger.BlockchainKeypair)1 CryptoSetting (com.jd.blockchain.ledger.CryptoSetting)1 LedgerDataSnapshot (com.jd.blockchain.ledger.LedgerDataSnapshot)1 LedgerTransaction (com.jd.blockchain.ledger.LedgerTransaction)1 OperationResult (com.jd.blockchain.ledger.OperationResult)1 TransactionRequest (com.jd.blockchain.ledger.TransactionRequest)1 TransactionResult (com.jd.blockchain.ledger.TransactionResult)1 TransactionState (com.jd.blockchain.ledger.TransactionState)1 LedgerTransactionData (com.jd.blockchain.ledger.core.LedgerTransactionData)1 TransactionSetEditor (com.jd.blockchain.ledger.core.TransactionSetEditor)1 BufferedKVStorage (com.jd.blockchain.storage.service.utils.BufferedKVStorage)1 MemoryKVStorage (com.jd.blockchain.storage.service.utils.MemoryKVStorage)1 Test (org.junit.Test)1