use of io.nem.symbol.sdk.model.blockchain.MerkleProofInfo in project nem2-sdk-java by nemtech.
the class BlockRepositoryOkHttpImplTest method shouldGetMerkleReceipts.
@Test
public void shouldGetMerkleReceipts() throws Exception {
MerkleProofInfoDTO merkleProofInfoDTO = new MerkleProofInfoDTO();
MerklePathItemDTO marklePathItem = new MerklePathItemDTO();
marklePathItem.setHash("SomeHash");
marklePathItem.setPosition(PositionEnum.LEFT);
merkleProofInfoDTO.setMerklePath(Collections.singletonList(marklePathItem));
mockRemoteCall(merkleProofInfoDTO);
BigInteger height = BigInteger.valueOf(10L);
MerkleProofInfo info = repository.getMerkleReceipts(height, "AnotherHash").toFuture().get();
Assertions.assertNotNull(info);
Assertions.assertEquals(1, info.getMerklePath().size());
Assertions.assertEquals(marklePathItem.getHash(), info.getMerklePath().get(0).getHash());
Assertions.assertEquals(Position.LEFT, info.getMerklePath().get(0).getPosition());
}
use of io.nem.symbol.sdk.model.blockchain.MerkleProofInfo in project nem2-sdk-java by nemtech.
the class BlockRepositoryIntegrationTest method getMerkleReceiptsFromAddresses.
@ParameterizedTest
@EnumSource(RepositoryType.class)
void getMerkleReceiptsFromAddresses(RepositoryType type) {
Pair<Account, NamespaceId> testAccount = helper().getTestAccount(type);
helper().basicSendMosaicFromNemesis(type, testAccount.getRight());
BlockRepository blockRepository = getBlockRepository(type);
ReceiptRepository receiptRepository = getRepositoryFactory(type).createReceiptRepository();
PaginationStreamer<AddressResolutionStatement, ResolutionStatementSearchCriteria> streamer = ReceiptPaginationStreamer.addresses(receiptRepository);
List<AddressResolutionStatement> list = get(streamer.search(new ResolutionStatementSearchCriteria()).take(5).toList().toObservable());
Assertions.assertFalse(list.isEmpty());
list.forEach(s -> {
String hash = s.generateHash(getNetworkType());
MerkleProofInfo merkleProofInfo = get(blockRepository.getMerkleReceipts(s.getHeight(), hash));
Assertions.assertFalse(merkleProofInfo.getMerklePath().isEmpty());
});
}
use of io.nem.symbol.sdk.model.blockchain.MerkleProofInfo in project nem2-sdk-java by nemtech.
the class BlockRepositoryIntegrationTest method getMerkleTransaction.
@ParameterizedTest
@EnumSource(RepositoryType.class)
void getMerkleTransaction(RepositoryType type) {
BlockRepository blockRepository = getBlockRepository(type);
TransactionRepository transactionRepository = getRepositoryFactory(type).createTransactionRepository();
TransactionPaginationStreamer streamer = new TransactionPaginationStreamer(transactionRepository);
List<Transaction> list = get(streamer.search(new TransactionSearchCriteria(TransactionGroup.CONFIRMED)).take(5).toList().toObservable());
Assertions.assertFalse(list.isEmpty());
list.forEach(s -> {
String hash = s.getTransactionInfo().get().getHash().get();
BigInteger height = s.getTransactionInfo().get().getHeight();
MerkleProofInfo merkleProofInfo = get(blockRepository.getMerkleTransaction(height, hash));
Assertions.assertFalse(merkleProofInfo.getMerklePath().isEmpty());
});
}
use of io.nem.symbol.sdk.model.blockchain.MerkleProofInfo in project nem2-sdk-java by nemtech.
the class BlockRepositoryIntegrationTest method getMerkleReceiptsFromTransactions.
@ParameterizedTest
@EnumSource(RepositoryType.class)
void getMerkleReceiptsFromTransactions(RepositoryType type) {
BlockRepository blockRepository = getBlockRepository(type);
ReceiptRepository receiptRepository = getRepositoryFactory(type).createReceiptRepository();
PaginationStreamer<TransactionStatement, TransactionStatementSearchCriteria> streamer = ReceiptPaginationStreamer.transactions(receiptRepository);
List<TransactionStatement> list = get(streamer.search(new TransactionStatementSearchCriteria()).take(5).toList().toObservable());
System.out.println(list.size());
list.forEach(s -> {
String hash = s.generateHash();
System.out.println(hash);
System.out.println(s.getHeight());
MerkleProofInfo merkleProofInfo = get(blockRepository.getMerkleReceipts(s.getHeight(), hash));
System.out.println(toJson(merkleProofInfo));
});
}
use of io.nem.symbol.sdk.model.blockchain.MerkleProofInfo in project nem2-sdk-java by nemtech.
the class BlockServiceTest method isValidTransactionInBlockMultipleEquals.
@Test
void isValidTransactionInBlockMultipleEquals() throws ExecutionException, InterruptedException {
BigInteger height = BigInteger.ONE;
String hash = "1234";
String root = "d7de53a6ec87b3cb8e0fb4d6d9aa40b96a17a54b7206702229a6517e91d88dcb";
BlockInfo blockInfo = Mockito.mock(BlockInfo.class);
Mockito.when(blockInfo.getBlockTransactionsHash()).thenReturn(root);
Mockito.when(blockRepositoryMock.getBlockByHeight(height)).thenReturn(Observable.just(blockInfo));
List<MerklePathItem> merklePath = new ArrayList<>();
merklePath.add(new MerklePathItem(Position.LEFT, "11"));
merklePath.add(new MerklePathItem(Position.RIGHT, "22"));
merklePath.add(new MerklePathItem(Position.LEFT, "33"));
merklePath.add(new MerklePathItem(Position.RIGHT, "44"));
MerkleProofInfo merkleProofInfo = new MerkleProofInfo(merklePath);
Mockito.when(blockRepositoryMock.getMerkleTransaction(height, hash)).thenReturn(Observable.just(merkleProofInfo));
Assertions.assertTrue(service.isValidTransactionInBlock(height, hash).toFuture().get());
}
Aggregations