Search in sources :

Example 1 with TOKEN

use of com.hedera.mirror.common.domain.entity.EntityType.TOKEN in project hedera-mirror-node by hashgraph.

the class TokenTransferRepositoryTest method findById.

@Test
void findById() {
    EntityId tokenId = EntityId.of(0L, 1L, 20L, TOKEN);
    EntityId accountId = EntityId.of(0L, 1L, 7L, ACCOUNT);
    EntityId payerAccountId = EntityId.of(0L, 1L, 500L, ACCOUNT);
    long amount = 40L;
    TokenTransfer tokenTransfer = domainBuilder.tokenTransfer().customize(t -> t.amount(amount).id(new TokenTransfer.Id(1L, tokenId, accountId)).payerAccountId(payerAccountId).tokenDissociate(false)).get();
    tokenTransferRepository.save(tokenTransfer);
    assertThat(tokenTransferRepository.findById(tokenTransfer.getId())).get().isEqualTo(tokenTransfer);
}
Also used : EntityId(com.hedera.mirror.common.domain.entity.EntityId) Test(org.junit.jupiter.api.Test) EntityId(com.hedera.mirror.common.domain.entity.EntityId) TOKEN(com.hedera.mirror.common.domain.entity.EntityType.TOKEN) Assertions.assertThat(org.assertj.core.api.Assertions.assertThat) Resource(javax.annotation.Resource) ACCOUNT(com.hedera.mirror.common.domain.entity.EntityType.ACCOUNT) TokenTransfer(com.hedera.mirror.common.domain.token.TokenTransfer) TokenTransfer(com.hedera.mirror.common.domain.token.TokenTransfer) Test(org.junit.jupiter.api.Test)

Example 2 with TOKEN

use of com.hedera.mirror.common.domain.entity.EntityType.TOKEN in project hedera-mirror-node by hashgraph.

the class TransferTransactionPayerMigrationTest method verifyEntityTimestampMigration.

@Test
void verifyEntityTimestampMigration() throws Exception {
    Entity node = domainBuilder.entity().customize(e -> e.createdTimestamp(10L).timestampRange(Range.atLeast(10L))).get();
    Entity treasury = domainBuilder.entity().customize(e -> e.createdTimestamp(20L).timestampRange(Range.atLeast(20L))).get();
    Entity sender = domainBuilder.entity().customize(e -> e.createdTimestamp(30L).timestampRange(Range.atLeast(30L))).get();
    Entity receiver = domainBuilder.entity().customize(e -> e.createdTimestamp(40L).timestampRange(Range.atLeast(40L))).get();
    Entity contract = domainBuilder.entity().customize(e -> e.createdTimestamp(50L).timestampRange(Range.atLeast(50L)).type(EntityType.CONTRACT)).get();
    Entity file = domainBuilder.entity().customize(e -> e.createdTimestamp(60L).timestampRange(Range.atLeast(60L)).type(EntityType.FILE)).get();
    Entity topic = domainBuilder.entity().customize(e -> e.createdTimestamp(70L).timestampRange(Range.atLeast(70L)).type(EntityType.TOPIC)).get();
    Entity token = domainBuilder.entity().customize(e -> e.createdTimestamp(80L).timestampRange(Range.atLeast(80L)).type(TOKEN)).get();
    Entity schedule = domainBuilder.entity().customize(e -> e.createdTimestamp(90L).timestampRange(Range.atLeast(90L)).type(EntityType.SCHEDULE)).get();
    // given
    persistEntities(List.of(node, treasury, sender, receiver, contract, file, topic, token, schedule));
    MigrationTransaction transfer1 = transaction(schedule.getCreatedTimestamp() + 200L, 0, SUCCESS, TransactionType.CRYPTOTRANSFER);
    MigrationTransaction transfer2 = transaction(schedule.getCreatedTimestamp() + 300L, 0, SUCCESS, TransactionType.CRYPTOTRANSFER);
    MigrationTransaction transfer3 = transaction(schedule.getCreatedTimestamp() + 400L, 0, SUCCESS, TransactionType.CRYPTOTRANSFER);
    MigrationTransaction transfer4 = transaction(schedule.getCreatedTimestamp() + 500L, 0, SUCCESS, TransactionType.CRYPTOTRANSFER);
    MigrationTransaction transfer5 = transaction(schedule.getCreatedTimestamp() + 600L, 0, SUCCESS, TransactionType.CRYPTOTRANSFER);
    persistTransactions(List.of(transaction(contract.getCreatedTimestamp(), contract.getId(), SUCCESS, TransactionType.CONTRACTCREATEINSTANCE), transaction(contract.getCreatedTimestamp() + 1, contract.getId(), INSUFFICIENT_TX_FEE, TransactionType.CONTRACTUPDATEINSTANCE), transaction(file.getCreatedTimestamp(), file.getId(), SUCCESS, TransactionType.FILECREATE), transaction(file.getCreatedTimestamp() + 1, file.getId(), SUCCESS, TransactionType.FILEDELETE), transaction(topic.getCreatedTimestamp(), topic.getId(), SUCCESS, TransactionType.CONSENSUSCREATETOPIC), transaction(topic.getCreatedTimestamp() + 1, topic.getId(), SUCCESS, TransactionType.CONSENSUSUPDATETOPIC), transaction(topic.getCreatedTimestamp() + 2, topic.getId(), SUCCESS, TransactionType.CONSENSUSUPDATETOPIC), transaction(topic.getCreatedTimestamp() + 3, topic.getId(), SUCCESS, TransactionType.CONSENSUSUPDATETOPIC), transaction(token.getCreatedTimestamp(), token.getId(), SUCCESS, TransactionType.TOKENCREATION), transaction(schedule.getCreatedTimestamp(), schedule.getId(), SUCCESS, TransactionType.SCHEDULECREATE), transfer1, transfer2, transfer3, transfer4, transfer5));
    EntityId nodeId = node.toEntityId();
    EntityId treasuryId = treasury.toEntityId();
    EntityId senderId = sender.toEntityId();
    EntityId receiverId = receiver.toEntityId();
    EntityId tokenId = token.toEntityId();
    long senderPaymentAmount = -45L;
    long receivedAmount = 30L;
    long nodePaymentAmount = 10L;
    long treasuryPaymentAmount = 5L;
    AssessedCustomFee assessedCustomFee1 = new AssessedCustomFee();
    assessedCustomFee1.setAmount(receivedAmount);
    assessedCustomFee1.setEffectivePayerAccountIds(List.of(senderId.getId()));
    assessedCustomFee1.setId(new AssessedCustomFee.Id(receiverId, transfer1.getConsensusTimestamp()));
    assessedCustomFee1.setPayerAccountId(tokenId);
    assessedCustomFee1.setTokenId(tokenId);
    AssessedCustomFee assessedCustomFee2 = new AssessedCustomFee();
    assessedCustomFee2.setAmount(receivedAmount);
    assessedCustomFee2.setEffectivePayerAccountIds(List.of(senderId.getId()));
    assessedCustomFee2.setId(new AssessedCustomFee.Id(receiverId, transfer5.getConsensusTimestamp()));
    assessedCustomFee2.setPayerAccountId(tokenId);
    assessedCustomFee2.setTokenId(tokenId);
    persistAssessedCustomFees(List.of(// assessed custom fee transfer
    assessedCustomFee1, // all transfers
    assessedCustomFee2));
    persistCryptoTransfers(List.of(// assessed custom fee transfer
    new CryptoTransfer(transfer1.getConsensusTimestamp(), senderPaymentAmount, senderId), new CryptoTransfer(transfer1.getConsensusTimestamp(), receivedAmount, receiverId), new CryptoTransfer(transfer1.getConsensusTimestamp(), nodePaymentAmount, nodeId), new CryptoTransfer(transfer1.getConsensusTimestamp(), treasuryPaymentAmount, treasuryId), // crypto only transfer
    new CryptoTransfer(transfer2.getConsensusTimestamp(), senderPaymentAmount, senderId), new CryptoTransfer(transfer2.getConsensusTimestamp(), receivedAmount, receiverId), new CryptoTransfer(transfer2.getConsensusTimestamp(), nodePaymentAmount, nodeId), new CryptoTransfer(transfer2.getConsensusTimestamp(), treasuryPaymentAmount, treasuryId), // nft transfer
    new CryptoTransfer(transfer3.getConsensusTimestamp(), senderPaymentAmount, senderId), new CryptoTransfer(transfer3.getConsensusTimestamp(), receivedAmount, receiverId), new CryptoTransfer(transfer3.getConsensusTimestamp(), nodePaymentAmount, nodeId), new CryptoTransfer(transfer3.getConsensusTimestamp(), treasuryPaymentAmount, treasuryId), // token transfer
    new CryptoTransfer(transfer4.getConsensusTimestamp(), senderPaymentAmount, senderId), new CryptoTransfer(transfer4.getConsensusTimestamp(), receivedAmount, receiverId), new CryptoTransfer(transfer4.getConsensusTimestamp(), nodePaymentAmount, nodeId), new CryptoTransfer(transfer4.getConsensusTimestamp(), treasuryPaymentAmount, treasuryId), // all transfers
    new CryptoTransfer(transfer5.getConsensusTimestamp(), senderPaymentAmount, senderId), new CryptoTransfer(transfer5.getConsensusTimestamp(), receivedAmount, receiverId), new CryptoTransfer(transfer5.getConsensusTimestamp(), nodePaymentAmount, nodeId), new CryptoTransfer(transfer5.getConsensusTimestamp(), treasuryPaymentAmount, treasuryId)));
    persistNonFeeTransfers(List.of(// assessed custom fee only transfer
    domainBuilder.nonFeeTransfer().customize(n -> n.consensusTimestamp(transfer1.getConsensusTimestamp()).amount(senderPaymentAmount).entityId(senderId)).get(), domainBuilder.nonFeeTransfer().customize(n -> n.amount(receivedAmount).consensusTimestamp(transfer1.getConsensusTimestamp()).entityId(receiverId)).get(), // crypto only transfer
    domainBuilder.nonFeeTransfer().customize(n -> n.amount(senderPaymentAmount).consensusTimestamp(transfer2.getConsensusTimestamp()).entityId(senderId)).get(), domainBuilder.nonFeeTransfer().customize(n -> n.amount(receivedAmount).consensusTimestamp(transfer2.getConsensusTimestamp()).entityId(receiverId)).get(), // nft transfer
    domainBuilder.nonFeeTransfer().customize(n -> n.amount(senderPaymentAmount).consensusTimestamp(transfer3.getConsensusTimestamp()).entityId(senderId)).get(), domainBuilder.nonFeeTransfer().customize(n -> n.amount(receivedAmount).consensusTimestamp(transfer3.getConsensusTimestamp()).entityId(receiverId)).get(), // token transfer
    domainBuilder.nonFeeTransfer().customize(n -> n.amount(senderPaymentAmount).consensusTimestamp(transfer4.getConsensusTimestamp()).entityId(senderId)).get(), domainBuilder.nonFeeTransfer().customize(n -> n.amount(receivedAmount).consensusTimestamp(transfer4.getConsensusTimestamp()).entityId(receiverId)).get(), // all transfers
    domainBuilder.nonFeeTransfer().customize(n -> n.amount(senderPaymentAmount).consensusTimestamp(transfer5.getConsensusTimestamp()).entityId(senderId)).get(), domainBuilder.nonFeeTransfer().customize(n -> n.amount(receivedAmount).consensusTimestamp(transfer5.getConsensusTimestamp()).entityId(receiverId)).get()));
    persistNftTransfers(List.of(// nft transfer
    domainBuilder.nftTransfer().customize(n -> n.id(new NftTransferId(transfer3.getConsensusTimestamp(), 1L, tokenId)).payerAccountId(null).receiverAccountId(receiverId).senderAccountId(senderId)).get(), // all transfers
    domainBuilder.nftTransfer().customize(n -> n.id(new NftTransferId(transfer5.getConsensusTimestamp(), 2L, tokenId)).payerAccountId(null).receiverAccountId(receiverId).senderAccountId(senderId)).get()));
    persistTokenTransfers(List.of(// token transfer
    new TokenTransfer(transfer4.getConsensusTimestamp(), -receivedAmount, tokenId, senderId), new TokenTransfer(transfer4.getConsensusTimestamp(), receivedAmount, tokenId, receiverId), // all transfers
    new TokenTransfer(transfer5.getConsensusTimestamp(), -receivedAmount, tokenId, senderId), new TokenTransfer(transfer5.getConsensusTimestamp(), receivedAmount, tokenId, receiverId)));
    // when
    migrate();
    List<SharedTransfer> expectedAssessedCustomFeeTransfers = List.of(// assessed custom fee transfer
    new SharedTransfer(receivedAmount, transfer1.getConsensusTimestamp(), PAYER_ID, receiverId, senderId), new SharedTransfer(receivedAmount, transfer5.getConsensusTimestamp(), PAYER_ID, receiverId, senderId));
    List<SharedTransfer> expectedCryptoTransfers = List.of(// assessed custom fee transfer
    new SharedTransfer(senderPaymentAmount, transfer1.getConsensusTimestamp(), PAYER_ID, null, senderId), new SharedTransfer(receivedAmount, transfer1.getConsensusTimestamp(), PAYER_ID, receiverId, null), new SharedTransfer(nodePaymentAmount, transfer1.getConsensusTimestamp(), PAYER_ID, nodeId, null), new SharedTransfer(treasuryPaymentAmount, transfer1.getConsensusTimestamp(), PAYER_ID, treasuryId, null), // crypto only transfer
    new SharedTransfer(senderPaymentAmount, transfer2.getConsensusTimestamp(), PAYER_ID, null, senderId), new SharedTransfer(receivedAmount, transfer2.getConsensusTimestamp(), PAYER_ID, receiverId, null), new SharedTransfer(nodePaymentAmount, transfer2.getConsensusTimestamp(), PAYER_ID, nodeId, null), new SharedTransfer(treasuryPaymentAmount, transfer2.getConsensusTimestamp(), PAYER_ID, treasuryId, null), // nft transfer
    new SharedTransfer(senderPaymentAmount, transfer3.getConsensusTimestamp(), PAYER_ID, null, senderId), new SharedTransfer(receivedAmount, transfer3.getConsensusTimestamp(), PAYER_ID, receiverId, null), new SharedTransfer(nodePaymentAmount, transfer3.getConsensusTimestamp(), PAYER_ID, nodeId, null), new SharedTransfer(treasuryPaymentAmount, transfer3.getConsensusTimestamp(), PAYER_ID, treasuryId, null), // token transfer
    new SharedTransfer(senderPaymentAmount, transfer4.getConsensusTimestamp(), PAYER_ID, null, senderId), new SharedTransfer(receivedAmount, transfer4.getConsensusTimestamp(), PAYER_ID, receiverId, null), new SharedTransfer(nodePaymentAmount, transfer4.getConsensusTimestamp(), PAYER_ID, nodeId, null), new SharedTransfer(treasuryPaymentAmount, transfer4.getConsensusTimestamp(), PAYER_ID, treasuryId, null), // all transfers
    new SharedTransfer(senderPaymentAmount, transfer5.getConsensusTimestamp(), PAYER_ID, null, senderId), new SharedTransfer(receivedAmount, transfer5.getConsensusTimestamp(), PAYER_ID, receiverId, null), new SharedTransfer(nodePaymentAmount, transfer5.getConsensusTimestamp(), PAYER_ID, nodeId, null), new SharedTransfer(treasuryPaymentAmount, transfer5.getConsensusTimestamp(), PAYER_ID, treasuryId, null));
    List<SharedTransfer> expectedNftTransfers = List.of(// nft transfer
    new SharedTransfer(1L, transfer3.getConsensusTimestamp(), PAYER_ID, receiverId, senderId), new SharedTransfer(2L, transfer5.getConsensusTimestamp(), PAYER_ID, receiverId, senderId));
    List<SharedTransfer> expectedNonFeeTransfers = List.of(// assessed custom fee only transfer
    new SharedTransfer(senderPaymentAmount, transfer1.getConsensusTimestamp(), PAYER_ID, null, senderId), new SharedTransfer(receivedAmount, transfer1.getConsensusTimestamp(), PAYER_ID, receiverId, null), // crypto only transfer
    new SharedTransfer(senderPaymentAmount, transfer2.getConsensusTimestamp(), PAYER_ID, null, senderId), new SharedTransfer(receivedAmount, transfer2.getConsensusTimestamp(), PAYER_ID, receiverId, null), // nft transfer
    new SharedTransfer(senderPaymentAmount, transfer3.getConsensusTimestamp(), PAYER_ID, null, senderId), new SharedTransfer(receivedAmount, transfer3.getConsensusTimestamp(), PAYER_ID, receiverId, null), // token transfer
    new SharedTransfer(senderPaymentAmount, transfer4.getConsensusTimestamp(), PAYER_ID, null, senderId), new SharedTransfer(receivedAmount, transfer4.getConsensusTimestamp(), PAYER_ID, receiverId, null), // token transfer
    new SharedTransfer(senderPaymentAmount, transfer5.getConsensusTimestamp(), PAYER_ID, null, senderId), new SharedTransfer(receivedAmount, transfer5.getConsensusTimestamp(), PAYER_ID, receiverId, null));
    List<SharedTransfer> expectedTokenTransfers = List.of(// token transfer
    new SharedTransfer(-receivedAmount, transfer4.getConsensusTimestamp(), PAYER_ID, null, senderId), new SharedTransfer(receivedAmount, transfer4.getConsensusTimestamp(), PAYER_ID, receiverId, null), // all transfer
    new SharedTransfer(-receivedAmount, transfer5.getConsensusTimestamp(), PAYER_ID, null, senderId), new SharedTransfer(receivedAmount, transfer5.getConsensusTimestamp(), PAYER_ID, receiverId, null));
    // then
    assertThat(findAssessedCustomFees()).containsExactlyInAnyOrderElementsOf(expectedAssessedCustomFeeTransfers);
    assertThat(findCryptoTransfers()).containsExactlyInAnyOrderElementsOf(expectedCryptoTransfers);
    assertThat(findNftTransfers()).containsExactlyInAnyOrderElementsOf(expectedNftTransfers);
    assertThat(findNonFeeTransfersAsSharedTransfers()).containsExactlyInAnyOrderElementsOf(expectedNonFeeTransfers);
    assertThat(findTokenTransfers()).containsExactlyInAnyOrderElementsOf(expectedTokenTransfers);
}
Also used : BeforeEach(org.junit.jupiter.api.BeforeEach) Arrays(java.util.Arrays) JdbcOperations(org.springframework.jdbc.core.JdbcOperations) EntityId(com.hedera.mirror.common.domain.entity.EntityId) NonFeeTransfer(com.hedera.mirror.common.domain.transaction.NonFeeTransfer) Assertions.assertThat(org.assertj.core.api.Assertions.assertThat) TransactionRepository(com.hedera.mirror.importer.repository.TransactionRepository) StringUtils(org.apache.commons.lang3.StringUtils) EntityType(com.hedera.mirror.common.domain.entity.EntityType) TransactionType(com.hedera.mirror.common.domain.transaction.TransactionType) Value(org.springframework.beans.factory.annotation.Value) TOKEN(com.hedera.mirror.common.domain.entity.EntityType.TOKEN) ObjectUtils(org.apache.commons.lang3.ObjectUtils) NftTransfer(com.hedera.mirror.common.domain.token.NftTransfer) NftTransferRepository(com.hedera.mirror.importer.repository.NftTransferRepository) Tag(org.junit.jupiter.api.Tag) AssessedCustomFee(com.hedera.mirror.common.domain.transaction.AssessedCustomFee) EnabledIfV1(com.hedera.mirror.importer.EnabledIfV1) NonFeeTransferRepository(com.hedera.mirror.importer.repository.NonFeeTransferRepository) ResponseCodeEnum(com.hederahashgraph.api.proto.java.ResponseCodeEnum) EntityIdEndec(com.hedera.mirror.common.domain.entity.EntityIdEndec) Range(com.google.common.collect.Range) Resource(javax.annotation.Resource) CryptoTransfer(com.hedera.mirror.common.domain.transaction.CryptoTransfer) IOException(java.io.IOException) FileUtils(org.apache.commons.io.FileUtils) TestPropertySource(org.springframework.test.context.TestPropertySource) SUCCESS(com.hederahashgraph.api.proto.java.ResponseCodeEnum.SUCCESS) PostgreSQLGuavaRangeType(com.vladmihalcea.hibernate.type.range.guava.PostgreSQLGuavaRangeType) PreparedStatement(java.sql.PreparedStatement) File(java.io.File) TokenTransferRepository(com.hedera.mirror.importer.repository.TokenTransferRepository) Entity(com.hedera.mirror.common.domain.entity.Entity) Test(org.junit.jupiter.api.Test) IntegrationTest(com.hedera.mirror.importer.IntegrationTest) List(java.util.List) EntityRepository(com.hedera.mirror.importer.repository.EntityRepository) CryptoTransferRepository(com.hedera.mirror.importer.repository.CryptoTransferRepository) Data(lombok.Data) NftTransferId(com.hedera.mirror.common.domain.token.NftTransferId) INSUFFICIENT_TX_FEE(com.hederahashgraph.api.proto.java.ResponseCodeEnum.INSUFFICIENT_TX_FEE) AllArgsConstructor(lombok.AllArgsConstructor) NoArgsConstructor(lombok.NoArgsConstructor) TokenTransfer(com.hedera.mirror.common.domain.token.TokenTransfer) EntityId(com.hedera.mirror.common.domain.entity.EntityId) Entity(com.hedera.mirror.common.domain.entity.Entity) NftTransferId(com.hedera.mirror.common.domain.token.NftTransferId) TokenTransfer(com.hedera.mirror.common.domain.token.TokenTransfer) CryptoTransfer(com.hedera.mirror.common.domain.transaction.CryptoTransfer) AssessedCustomFee(com.hedera.mirror.common.domain.transaction.AssessedCustomFee) Test(org.junit.jupiter.api.Test) IntegrationTest(com.hedera.mirror.importer.IntegrationTest)

Example 3 with TOKEN

use of com.hedera.mirror.common.domain.entity.EntityType.TOKEN in project hedera-mirror-node by hashgraph.

the class BatchUpserterTest method tokenDissociateTransfer.

@Test
void tokenDissociateTransfer() {
    // given
    EntityId accountId = EntityId.of("0.0.215", ACCOUNT);
    EntityId accountId2 = EntityId.of("0.0.216", ACCOUNT);
    Token nftClass1 = getDeletedNftClass(10L, 25L, EntityId.of("0.0.100", TOKEN));
    Token nftClass2 = getDeletedNftClass(11L, 24L, EntityId.of("0.0.101", TOKEN));
    EntityId tokenId1 = nftClass1.getTokenId().getTokenId();
    // already deleted, result of wipe
    Nft nft1 = getNft(tokenId1, accountId, 1L, 11L, 16L, true);
    Nft nft2 = getNft(tokenId1, accountId, 2L, 11L, 11L, false);
    Nft nft3 = getNft(tokenId1, accountId, 3L, 12L, 12L, false);
    // different account
    Nft nft4 = getNft(tokenId1, accountId2, 4L, 18L, 18L, false);
    Nft nft5 = getNft(nftClass2.getTokenId().getTokenId(), accountId, 1L, 15L, 15L, false);
    nftRepository.saveAll(List.of(nft1, nft2, nft3, nft4, nft5));
    tokenRepository.saveAll(List.of(nftClass1, nftClass2));
    long consensusTimestamp = 30L;
    EntityId ftId = EntityId.of("0.0.217", TOKEN);
    EntityId payerId = EntityId.of("0.0.2002", ACCOUNT);
    TokenTransfer fungibleTokenTransfer = domainBuilder.tokenTransfer().customize(t -> t.amount(-10).id(new TokenTransfer.Id(consensusTimestamp, ftId, accountId)).isApproval(false).payerAccountId(payerId).tokenDissociate(true)).get();
    TokenTransfer nonFungibleTokenTransfer = domainBuilder.tokenTransfer().customize(t -> t.amount(-2).id(new TokenTransfer.Id(consensusTimestamp, tokenId1, accountId)).isApproval(false).payerAccountId(payerId).tokenDissociate(true)).get();
    List<TokenTransfer> tokenTransfers = List.of(fungibleTokenTransfer, nonFungibleTokenTransfer);
    // when
    persist(tokenDissociateTransferBatchUpserter, tokenTransfers);
    // then
    assertThat(nftRepository.findAll()).containsExactlyInAnyOrder(nft1, getNft(tokenId1, accountId, 2L, 11L, 30L, true), getNft(tokenId1, accountId, 3L, 12L, 30L, true), nft4, nft5);
    NftTransfer serial2Transfer = getNftTransfer(tokenId1, accountId, 2L, consensusTimestamp);
    serial2Transfer.setPayerAccountId(payerId);
    NftTransfer serial3Transfer = getNftTransfer(tokenId1, accountId, 3L, consensusTimestamp);
    serial3Transfer.setPayerAccountId(payerId);
    assertThat(nftTransferRepository.findAll()).containsExactlyInAnyOrder(serial2Transfer, serial3Transfer);
    assertThat(tokenTransferRepository.findAll()).usingElementComparatorIgnoringFields("tokenDissociate").containsOnly(fungibleTokenTransfer);
}
Also used : EntityId(com.hedera.mirror.common.domain.entity.EntityId) CryptoAllowanceRepository(com.hedera.mirror.importer.repository.CryptoAllowanceRepository) SneakyThrows(lombok.SneakyThrows) EntityId(com.hedera.mirror.common.domain.entity.EntityId) ContractRepository(com.hedera.mirror.importer.repository.ContractRepository) Assertions.assertThat(org.assertj.core.api.Assertions.assertThat) ScheduleRepository(com.hedera.mirror.importer.repository.ScheduleRepository) EntityType(com.hedera.mirror.common.domain.entity.EntityType) TOKEN(com.hedera.mirror.common.domain.entity.EntityType.TOKEN) NftTransfer(com.hedera.mirror.common.domain.token.NftTransfer) TokenSupplyTypeEnum(com.hedera.mirror.common.domain.token.TokenSupplyTypeEnum) NftAllowanceRepository(com.hedera.mirror.importer.repository.NftAllowanceRepository) Token(com.hedera.mirror.common.domain.token.Token) TokenId(com.hedera.mirror.common.domain.token.TokenId) TokenRepository(com.hedera.mirror.importer.repository.TokenRepository) TokenFreezeStatusEnum(com.hedera.mirror.common.domain.token.TokenFreezeStatusEnum) Collection(java.util.Collection) TOKEN_DISSOCIATE_BATCH_PERSISTER(com.hedera.mirror.importer.config.MirrorImporterConfiguration.TOKEN_DISSOCIATE_BATCH_PERSISTER) Resource(javax.annotation.Resource) CryptoAllowance(com.hedera.mirror.common.domain.entity.CryptoAllowance) TokenPauseStatusEnum(com.hedera.mirror.common.domain.token.TokenPauseStatusEnum) StandardCharsets(java.nio.charset.StandardCharsets) NftAllowance(com.hedera.mirror.common.domain.entity.NftAllowance) ByteString(com.google.protobuf.ByteString) Test(org.junit.jupiter.api.Test) List(java.util.List) Nft(com.hedera.mirror.common.domain.token.Nft) EntityRepository(com.hedera.mirror.importer.repository.EntityRepository) TransactionOperations(org.springframework.transaction.support.TransactionOperations) TokenAccountRepository(com.hedera.mirror.importer.repository.TokenAccountRepository) NftTransferId(com.hedera.mirror.common.domain.token.NftTransferId) TokenAccount(com.hedera.mirror.common.domain.token.TokenAccount) ACCOUNT(com.hedera.mirror.common.domain.entity.EntityType.ACCOUNT) Schedule(com.hedera.mirror.common.domain.schedule.Schedule) TokenTypeEnum(com.hedera.mirror.common.domain.token.TokenTypeEnum) NftId(com.hedera.mirror.common.domain.token.NftId) Contract(com.hedera.mirror.common.domain.contract.Contract) Hex(org.apache.commons.codec.binary.Hex) ArrayList(java.util.ArrayList) DomainBuilder(com.hedera.mirror.common.domain.DomainBuilder) NftTransferRepository(com.hedera.mirror.importer.repository.NftTransferRepository) NftRepository(com.hedera.mirror.importer.repository.NftRepository) TokenAllowanceRepository(com.hedera.mirror.importer.repository.TokenAllowanceRepository) Tuple(org.assertj.core.groups.Tuple) TokenTransferRepository(com.hedera.mirror.importer.repository.TokenTransferRepository) Entity(com.hedera.mirror.common.domain.entity.Entity) IntegrationTest(com.hedera.mirror.importer.IntegrationTest) Key(com.hederahashgraph.api.proto.java.Key) TokenKycStatusEnum(com.hedera.mirror.common.domain.token.TokenKycStatusEnum) TokenAllowance(com.hedera.mirror.common.domain.entity.TokenAllowance) TokenTransfer(com.hedera.mirror.common.domain.token.TokenTransfer) NftTransfer(com.hedera.mirror.common.domain.token.NftTransfer) Token(com.hedera.mirror.common.domain.token.Token) TokenTransfer(com.hedera.mirror.common.domain.token.TokenTransfer) EntityId(com.hedera.mirror.common.domain.entity.EntityId) TokenId(com.hedera.mirror.common.domain.token.TokenId) NftTransferId(com.hedera.mirror.common.domain.token.NftTransferId) NftId(com.hedera.mirror.common.domain.token.NftId) Nft(com.hedera.mirror.common.domain.token.Nft) Test(org.junit.jupiter.api.Test) IntegrationTest(com.hedera.mirror.importer.IntegrationTest)

Aggregations

EntityId (com.hedera.mirror.common.domain.entity.EntityId)3 TOKEN (com.hedera.mirror.common.domain.entity.EntityType.TOKEN)3 TokenTransfer (com.hedera.mirror.common.domain.token.TokenTransfer)3 Entity (com.hedera.mirror.common.domain.entity.Entity)2 EntityType (com.hedera.mirror.common.domain.entity.EntityType)2 ACCOUNT (com.hedera.mirror.common.domain.entity.EntityType.ACCOUNT)2 NftTransfer (com.hedera.mirror.common.domain.token.NftTransfer)2 NftTransferId (com.hedera.mirror.common.domain.token.NftTransferId)2 IntegrationTest (com.hedera.mirror.importer.IntegrationTest)2 EntityRepository (com.hedera.mirror.importer.repository.EntityRepository)2 NftTransferRepository (com.hedera.mirror.importer.repository.NftTransferRepository)2 TokenTransferRepository (com.hedera.mirror.importer.repository.TokenTransferRepository)2 Resource (javax.annotation.Resource)2 Assertions.assertThat (org.assertj.core.api.Assertions.assertThat)2 Test (org.junit.jupiter.api.Test)2 Range (com.google.common.collect.Range)1 ByteString (com.google.protobuf.ByteString)1 DomainBuilder (com.hedera.mirror.common.domain.DomainBuilder)1 Contract (com.hedera.mirror.common.domain.contract.Contract)1 CryptoAllowance (com.hedera.mirror.common.domain.entity.CryptoAllowance)1