use of com.hedera.services.state.merkle.MerkleAccount in project hedera-services by hashgraph.
the class WorldLedgersTest method wrapsAsExpectedWithCommitInterceptors.
@Test
void wrapsAsExpectedWithCommitInterceptors() {
final var liveTokenRels = new TransactionalLedger<>(TokenRelProperty.class, MerkleTokenRelStatus::new, new HashMapBackingTokenRels(), new ChangeSummaryManager<>());
final var liveAccounts = new TransactionalLedger<>(AccountProperty.class, MerkleAccount::new, new HashMapBackingAccounts(), new ChangeSummaryManager<>());
final var liveNfts = new TransactionalLedger<>(NftProperty.class, MerkleUniqueToken::new, new HashMapBackingNfts(), new ChangeSummaryManager<>());
final var liveTokens = new TransactionalLedger<>(TokenProperty.class, MerkleToken::new, new HashMapBackingTokens(), new ChangeSummaryManager<>());
final var liveAliases = new AliasManager();
final var source = new WorldLedgers(liveAliases, liveTokenRels, liveAccounts, liveNfts, liveTokens);
assertTrue(source.areMutable());
final var nullTokenRels = new WorldLedgers(liveAliases, null, liveAccounts, liveNfts, liveTokens);
final var nullAccounts = new WorldLedgers(liveAliases, liveTokenRels, null, liveNfts, liveTokens);
final var nullNfts = new WorldLedgers(liveAliases, liveTokenRels, liveAccounts, null, liveTokens);
final var nullTokens = new WorldLedgers(liveAliases, liveTokenRels, liveAccounts, liveNfts, null);
assertFalse(nullTokenRels.areMutable());
assertFalse(nullAccounts.areMutable());
assertFalse(nullNfts.areMutable());
assertFalse(nullTokens.areMutable());
final var wrappedUnusable = nullAccounts.wrapped(sideEffectsTracker);
assertSame(((StackedContractAliases) wrappedUnusable.aliases()).wrappedAliases(), nullAccounts.aliases());
assertFalse(wrappedUnusable.areMutable());
final var wrappedSource = source.wrapped(sideEffectsTracker);
assertSame(liveTokenRels, wrappedSource.tokenRels().getEntitiesLedger());
assertSame(liveAccounts, wrappedSource.accounts().getEntitiesLedger());
assertSame(liveNfts, wrappedSource.nfts().getEntitiesLedger());
assertSame(liveTokens, wrappedSource.tokens().getEntitiesLedger());
final var stackedAliases = (StackedContractAliases) wrappedSource.aliases();
assertSame(liveAliases, stackedAliases.wrappedAliases());
}
use of com.hedera.services.state.merkle.MerkleAccount in project hedera-services by hashgraph.
the class AbstractLedgerWorldUpdaterTest method setupLedgers.
private void setupLedgers() {
final var tokenRelsLedger = new TransactionalLedger<>(TokenRelProperty.class, MerkleTokenRelStatus::new, new HashMapBackingTokenRels(), new ChangeSummaryManager<>());
final var accountsLedger = new TransactionalLedger<>(AccountProperty.class, MerkleAccount::new, new HashMapBackingAccounts(), new ChangeSummaryManager<>());
final var tokensLedger = new TransactionalLedger<>(TokenProperty.class, MerkleToken::new, new HashMapBackingTokens(), new ChangeSummaryManager<>());
final var nftsLedger = new TransactionalLedger<>(NftProperty.class, MerkleUniqueToken::new, new HashMapBackingNfts(), new ChangeSummaryManager<>());
tokenRelsLedger.begin();
accountsLedger.begin();
nftsLedger.begin();
tokensLedger.begin();
ledgers = new WorldLedgers(aliases, tokenRelsLedger, accountsLedger, nftsLedger, tokensLedger);
}
use of com.hedera.services.state.merkle.MerkleAccount in project hedera-services by hashgraph.
the class AbstractStackedLedgerUpdaterTest method setupLedgers.
private void setupLedgers() {
final var tokenRelsLedger = new TransactionalLedger<>(TokenRelProperty.class, MerkleTokenRelStatus::new, new HashMapBackingTokenRels(), new ChangeSummaryManager<>());
final var accountsLedger = new TransactionalLedger<>(AccountProperty.class, MerkleAccount::new, new HashMapBackingAccounts(), new ChangeSummaryManager<>());
final var nftsLedger = new TransactionalLedger<>(NftProperty.class, MerkleUniqueToken::new, new HashMapBackingNfts(), new ChangeSummaryManager<>());
final var tokensLedger = new TransactionalLedger<>(TokenProperty.class, MerkleToken::new, new HashMapBackingTokens(), new ChangeSummaryManager<>());
tokenRelsLedger.begin();
accountsLedger.begin();
nftsLedger.begin();
ledgers = new WorldLedgers(aliases, tokenRelsLedger, accountsLedger, nftsLedger, tokensLedger);
}
use of com.hedera.services.state.merkle.MerkleAccount in project hedera-services by hashgraph.
the class HederaWorldStateTest method usesContractKeyWhenSponsorDid.
@Test
void usesContractKeyWhenSponsorDid() {
final var sponsorId = AccountID.newBuilder().setAccountNum(123L).build();
final var sponsoredId = AccountID.newBuilder().setAccountNum(321L).build();
final var sponsorAddress = EntityIdUtils.asEvmAddress(sponsorId);
final var sponsoredAddress = EntityIdUtils.asEvmAddress(sponsoredId);
givenNonNullWorldLedgers();
given(entityAccess.isExtant(any())).willReturn(true);
given(entityAccess.getKey(sponsorId)).willReturn(new JContractIDKey(0, 0, 123L));
final var updater = subject.updater();
updater.getSponsorMap().put(Address.fromHexString(Hex.encodeHexString(sponsoredAddress)), Address.fromHexString(Hex.encodeHexString(sponsorAddress)));
final ArgumentCaptor<HederaAccountCustomizer> captor = forClass(HederaAccountCustomizer.class);
updater.commit();
subject.customizeSponsoredAccounts();
verify(entityAccess).customize(eq(sponsoredId), captor.capture());
final var customizer = captor.getValue();
final var standin = new MerkleAccount();
customizer.customizing(standin);
final var key = standin.getAccountKey();
assertInstanceOf(JContractIDKey.class, key);
assertEquals(sponsoredId.getAccountNum(), ((JContractIDKey) key).getContractID().getContractNum());
}
use of com.hedera.services.state.merkle.MerkleAccount in project hedera-services by hashgraph.
the class BasedLedgerValidatorTest method expectedWith.
private MerkleAccount expectedWith(long balance) throws NegativeAccountBalanceException {
MerkleAccount hAccount = new HederaAccountCustomizer().isReceiverSigRequired(false).proxy(MISSING_ENTITY_ID).isDeleted(false).expiry(1_234_567L).memo("").isSmartContract(false).customizing(new MerkleAccount());
hAccount.setBalance(balance);
return hAccount;
}
Aggregations