Search in sources :

Example 11 with MerkleProofInfo

use of io.nem.symbol.sdk.model.blockchain.MerkleProofInfo in project nem2-sdk-java by nemtech.

the class BlockRepositoryVertxImplTest method getMerkleTransaction.

@Test
public void getMerkleTransaction() throws Exception {
    MerkleProofInfoDTO merkleProofInfoDTO = new MerkleProofInfoDTO();
    MerklePathItemDTO item = new MerklePathItemDTO().hash("someHash").position(PositionEnum.LEFT);
    mockRemoteCall(merkleProofInfoDTO.addMerklePathItem(item));
    MerkleProofInfo merkleProofInfo = repository.getMerkleTransaction(BigInteger.ONE, "HASH!").toFuture().get();
    Assertions.assertEquals(1, merkleProofInfo.getMerklePath().size());
    Assertions.assertEquals("someHash", merkleProofInfo.getMerklePath().get(0).getHash());
    Assertions.assertEquals(Position.LEFT, merkleProofInfo.getMerklePath().get(0).getPosition());
}
Also used : MerklePathItemDTO(io.nem.symbol.sdk.openapi.vertx.model.MerklePathItemDTO) MerkleProofInfoDTO(io.nem.symbol.sdk.openapi.vertx.model.MerkleProofInfoDTO) MerkleProofInfo(io.nem.symbol.sdk.model.blockchain.MerkleProofInfo) Test(org.junit.jupiter.api.Test)

Example 12 with MerkleProofInfo

use of io.nem.symbol.sdk.model.blockchain.MerkleProofInfo in project nem2-sdk-java by nemtech.

the class BlockRepositoryVertxImplTest 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());
}
Also used : MerklePathItemDTO(io.nem.symbol.sdk.openapi.vertx.model.MerklePathItemDTO) MerkleProofInfoDTO(io.nem.symbol.sdk.openapi.vertx.model.MerkleProofInfoDTO) BigInteger(java.math.BigInteger) MerkleProofInfo(io.nem.symbol.sdk.model.blockchain.MerkleProofInfo) Test(org.junit.jupiter.api.Test)

Example 13 with MerkleProofInfo

use of io.nem.symbol.sdk.model.blockchain.MerkleProofInfo in project nem2-sdk-java by nemtech.

the class BlockServiceTest method isValidStatementInBlockEmpty.

@Test
void isValidStatementInBlockEmpty() throws ExecutionException, InterruptedException {
    BigInteger height = BigInteger.ONE;
    String leaf = "ABCD";
    String root = "ABCD";
    BlockInfo blockInfo = Mockito.mock(BlockInfo.class);
    Mockito.when(blockInfo.getBlockReceiptsHash()).thenReturn(root);
    Mockito.when(blockRepositoryMock.getBlockByHeight(height)).thenReturn(Observable.just(blockInfo));
    List<MerklePathItem> merklePath = new ArrayList<>();
    MerkleProofInfo merkleProofInfo = new MerkleProofInfo(merklePath);
    Mockito.when(blockRepositoryMock.getMerkleReceipts(height, leaf)).thenReturn(Observable.just(merkleProofInfo));
    Assertions.assertTrue(service.isValidStatementInBlock(height, leaf).toFuture().get());
}
Also used : BlockInfo(io.nem.symbol.sdk.model.blockchain.BlockInfo) ArrayList(java.util.ArrayList) BigInteger(java.math.BigInteger) MerklePathItem(io.nem.symbol.sdk.model.blockchain.MerklePathItem) MerkleProofInfo(io.nem.symbol.sdk.model.blockchain.MerkleProofInfo) Test(org.junit.jupiter.api.Test)

Example 14 with MerkleProofInfo

use of io.nem.symbol.sdk.model.blockchain.MerkleProofInfo in project nem2-sdk-java by nemtech.

the class BlockServiceTest method isValidTransactionInBlockOnError.

@Test
void isValidTransactionInBlockOnError() throws ExecutionException, InterruptedException {
    BigInteger height = BigInteger.ONE;
    String hash = "1234";
    Mockito.when(blockRepositoryMock.getBlockByHeight(height)).thenReturn(Observable.error(new RuntimeException("Some Error When getting Block")));
    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.assertFalse(service.isValidTransactionInBlock(height, hash).toFuture().get());
}
Also used : ArrayList(java.util.ArrayList) BigInteger(java.math.BigInteger) MerklePathItem(io.nem.symbol.sdk.model.blockchain.MerklePathItem) MerkleProofInfo(io.nem.symbol.sdk.model.blockchain.MerkleProofInfo) Test(org.junit.jupiter.api.Test)

Example 15 with MerkleProofInfo

use of io.nem.symbol.sdk.model.blockchain.MerkleProofInfo in project nem2-sdk-java by nemtech.

the class BlockServiceTest method isValidTransactionInBlockEmtpyNotEquals.

@Test
void isValidTransactionInBlockEmtpyNotEquals() throws ExecutionException, InterruptedException {
    BigInteger height = BigInteger.ONE;
    String leaf = "ABCD";
    String root = "1234";
    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<>();
    MerkleProofInfo merkleProofInfo = new MerkleProofInfo(merklePath);
    Mockito.when(blockRepositoryMock.getMerkleTransaction(height, leaf)).thenReturn(Observable.just(merkleProofInfo));
    Assertions.assertFalse(service.isValidTransactionInBlock(height, leaf).toFuture().get());
}
Also used : BlockInfo(io.nem.symbol.sdk.model.blockchain.BlockInfo) ArrayList(java.util.ArrayList) BigInteger(java.math.BigInteger) MerklePathItem(io.nem.symbol.sdk.model.blockchain.MerklePathItem) MerkleProofInfo(io.nem.symbol.sdk.model.blockchain.MerkleProofInfo) Test(org.junit.jupiter.api.Test)

Aggregations

MerkleProofInfo (io.nem.symbol.sdk.model.blockchain.MerkleProofInfo)17 Test (org.junit.jupiter.api.Test)13 BigInteger (java.math.BigInteger)12 MerklePathItem (io.nem.symbol.sdk.model.blockchain.MerklePathItem)9 ArrayList (java.util.ArrayList)9 BlockInfo (io.nem.symbol.sdk.model.blockchain.BlockInfo)8 BlockRepository (io.nem.symbol.sdk.api.BlockRepository)4 ParameterizedTest (org.junit.jupiter.params.ParameterizedTest)4 EnumSource (org.junit.jupiter.params.provider.EnumSource)4 ReceiptRepository (io.nem.symbol.sdk.api.ReceiptRepository)3 ResolutionStatementSearchCriteria (io.nem.symbol.sdk.api.ResolutionStatementSearchCriteria)2 MerklePathItemDTO (io.nem.symbol.sdk.openapi.okhttp_gson.model.MerklePathItemDTO)2 MerkleProofInfoDTO (io.nem.symbol.sdk.openapi.okhttp_gson.model.MerkleProofInfoDTO)2 MerklePathItemDTO (io.nem.symbol.sdk.openapi.vertx.model.MerklePathItemDTO)2 MerkleProofInfoDTO (io.nem.symbol.sdk.openapi.vertx.model.MerkleProofInfoDTO)2 TransactionPaginationStreamer (io.nem.symbol.sdk.api.TransactionPaginationStreamer)1 TransactionRepository (io.nem.symbol.sdk.api.TransactionRepository)1 TransactionSearchCriteria (io.nem.symbol.sdk.api.TransactionSearchCriteria)1 TransactionStatementSearchCriteria (io.nem.symbol.sdk.api.TransactionStatementSearchCriteria)1 Account (io.nem.symbol.sdk.model.account.Account)1