blob: d7658f126eb4ba411505950d2995f6821edf6d35 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more contributor license
* agreements. See the NOTICE file distributed with this work for additional information regarding
* copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance with the License. You may obtain a
* copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
package org.apache.geode.internal.cache;
import static org.apache.geode.internal.statistics.StatisticsClockFactory.disabledClock;
import static org.assertj.core.api.Assertions.assertThat;
import static org.mockito.Mockito.doReturn;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.spy;
import static org.mockito.Mockito.when;
import org.junit.Before;
import org.junit.Test;
import org.apache.geode.GemFireException;
import org.apache.geode.cache.TransactionDataNotColocatedException;
import org.apache.geode.cache.TransactionDataRebalancedException;
import org.apache.geode.cache.TransactionException;
import org.apache.geode.distributed.DistributedMember;
import org.apache.geode.distributed.DistributedSystem;
import org.apache.geode.distributed.internal.InternalDistributedSystem;
import org.apache.geode.distributed.internal.membership.InternalDistributedMember;
import org.apache.geode.internal.cache.region.entry.RegionEntryFactoryBuilder;
public class TXStateProxyImplTest {
private InternalCache cache;
private LocalRegion region;
private String key = "testkey";
private LocalRegionDataView view;
private TXId txId;
private TXManagerImpl txManager;
private DistributedSystem system;
private DistributedMember member;
@Before
public void setUp() {
cache = mock(InternalCache.class);
region = mock(LocalRegion.class);
txId = new TXId(mock(InternalDistributedMember.class), 1);
txManager = mock(TXManagerImpl.class);
view = mock(LocalRegionDataView.class);
system = mock(InternalDistributedSystem.class);
member = mock(InternalDistributedMember.class);
when(cache.getDistributedSystem()).thenReturn(system);
when(system.getDistributedMember()).thenReturn(member);
}
@Test
public void getKeyForIteratorReturnsKey() {
RegionEntryFactory regionEntryFactory =
new RegionEntryFactoryBuilder().create(false, false, false, false, false);
RegionEntry regionEntry = regionEntryFactory.createEntry(region, key, null);
KeyInfo stringKeyInfo = new KeyInfo(key, null, null);
KeyInfo regionEntryKeyInfo = new KeyInfo(regionEntry, null, null);
boolean allowTombstones = false;
boolean rememberReads = true;
when(region.getSharedDataView()).thenReturn(view);
when(view.getEntry(stringKeyInfo, region, allowTombstones)).thenReturn(mock(NonTXEntry.class));
when(view.getKeyForIterator(stringKeyInfo, region, rememberReads, allowTombstones))
.thenCallRealMethod();
when(view.getKeyForIterator(regionEntryKeyInfo, region, rememberReads, allowTombstones))
.thenCallRealMethod();
TXStateProxyImpl tx = new TXStateProxyImpl(cache, txManager, txId, false, disabledClock());
Object key1 = tx.getKeyForIterator(regionEntryKeyInfo, region, rememberReads, allowTombstones);
assertThat(key1.equals(key)).isTrue();
Object key2 = tx.getKeyForIterator(stringKeyInfo, region, rememberReads, allowTombstones);
assertThat(key2.equals(key)).isTrue();
}
@Test
public void getCacheReturnsInjectedCache() {
TXStateProxyImpl tx = new TXStateProxyImpl(cache, txManager, txId, false, disabledClock());
assertThat(tx.getCache()).isSameAs(cache);
}
@Test
public void isOverTransactionTimeoutLimitReturnsTrueIfHavingRecentOperation() {
TXStateProxyImpl tx = spy(new TXStateProxyImpl(cache, txManager, txId, false, disabledClock()));
doReturn(0L).when(tx).getLastOperationTimeFromClient();
doReturn(1001L).when(tx).getCurrentTime();
when(txManager.getTransactionTimeToLive()).thenReturn(1);
assertThat(tx.isOverTransactionTimeoutLimit()).isEqualTo(true);
}
@Test
public void isOverTransactionTimeoutLimitReturnsFalseIfNotHavingRecentOperation() {
TXStateProxyImpl tx = spy(new TXStateProxyImpl(cache, txManager, txId, false, disabledClock()));
doReturn(0L).when(tx).getLastOperationTimeFromClient();
doReturn(1000L).when(tx).getCurrentTime();
when(txManager.getTransactionTimeToLive()).thenReturn(1);
assertThat(tx.isOverTransactionTimeoutLimit()).isEqualTo(false);
}
@Test
public void setTargetWillSetTargetToItselfAndSetTXStateIfRealDealIsNull() {
TXStateProxyImpl tx = spy(new TXStateProxyImpl(cache, txManager, txId, false, disabledClock()));
assertThat(tx.hasRealDeal()).isFalse();
assertThat(tx.getTarget()).isNull();
tx.setTarget(member);
assertThat(tx.getTarget()).isEqualTo(member);
assertThat(tx.isRealDealLocal()).isTrue();
}
@Test
public void setTargetWillSetTXStateStubIfTargetIsDifferentFromLocalMember() {
TXStateProxyImpl tx = spy(new TXStateProxyImpl(cache, txManager, txId, false, disabledClock()));
assertThat(tx.hasRealDeal()).isFalse();
assertThat(tx.getTarget()).isNull();
DistributedMember remoteMember = mock(InternalDistributedMember.class);
tx.setTarget(remoteMember);
assertThat(tx.getTarget()).isEqualTo(remoteMember);
assertThat(tx.isRealDealLocal()).isFalse();
assertThat(tx.hasRealDeal()).isTrue();
}
@Test
public void setTargetToItSelfIfRealDealIsTXStateAndTargetIsSameAsLocalMember() {
TXStateProxyImpl tx = spy(new TXStateProxyImpl(cache, txManager, txId, false, disabledClock()));
tx.setLocalTXState(new TXState(tx, true, disabledClock()));
assertThat(tx.isRealDealLocal()).isTrue();
assertThat(tx.getTarget()).isNull();
tx.setTarget(member);
assertThat(tx.getTarget()).isEqualTo(member);
assertThat(tx.isRealDealLocal()).isTrue();
}
@Test(expected = AssertionError.class)
public void setTargetThrowsIfIfRealDealIsTXStateAndTargetIsDifferentFromLocalMember() {
TXStateProxyImpl tx = spy(new TXStateProxyImpl(cache, txManager, txId, false, disabledClock()));
tx.setLocalTXState(new TXState(tx, true, disabledClock()));
assertThat(tx.getTarget()).isNull();
DistributedMember remoteMember = mock(InternalDistributedMember.class);
tx.setTarget(remoteMember);
}
@Test
public void txHostGetTransactionExceptionReturnsTransactionDataNotColocatedExceptionIfKeyNotInBuckets() {
TXStateProxyImpl tx = new TXStateProxyImpl(cache, txManager, txId, false, disabledClock());
tx.setLocalTXState(new TXState(tx, true, disabledClock()));
KeyInfo keyInfo1 = mock(KeyInfo.class);
when(keyInfo1.getBucketId()).thenReturn(1);
KeyInfo keyInfo2 = mock(KeyInfo.class);
when(keyInfo2.getBucketId()).thenReturn(2);
tx.trackBucketForTx(keyInfo1);
TransactionException transactionException =
tx.getTransactionException(keyInfo2, new PrimaryBucketException());
assertThat(transactionException).isInstanceOf(TransactionDataNotColocatedException.class);
}
@Test
public void txHostGetTransactionExceptionReturnsTransactionDataNotColocatedExceptionIfFirstOperationOnReplicate() {
TXStateProxyImpl tx = new TXStateProxyImpl(cache, txManager, txId, false, disabledClock());
tx.setLocalTXState(new TXState(tx, true, disabledClock()));
KeyInfo keyInfo = mock(KeyInfo.class);
TransactionException transactionException =
tx.getTransactionException(keyInfo, new PrimaryBucketException());
assertThat(transactionException).isInstanceOf(TransactionDataNotColocatedException.class);
}
@Test
public void txHostGetTransactionExceptionReturnsTransactionDataRebalancedExceptionIfFirstOperationOnPartitioned() {
TXStateProxyImpl tx = new TXStateProxyImpl(cache, txManager, txId, false, disabledClock());
tx.setLocalTXState(new TXState(tx, true, disabledClock()));
KeyInfo keyInfo = mock(KeyInfo.class);
GemFireException exception = mock(GemFireException.class);
when(exception.getCause()).thenReturn(new PrimaryBucketException());
tx.setFirstOperationOnPartitionedRegion(true);
TransactionException transactionException = tx.getTransactionException(keyInfo, exception);
assertThat(transactionException).isInstanceOf(TransactionDataRebalancedException.class);
}
@Test
public void txHostGetTransactionExceptionReturnsSameTransactionExceptionIfNotCausedByPrimaryBucketException() {
TXStateProxyImpl tx = new TXStateProxyImpl(cache, txManager, txId, false, disabledClock());
tx.setLocalTXState(new TXState(tx, true, disabledClock()));
TransactionException exception = mock(TransactionException.class);
KeyInfo keyInfo = mock(KeyInfo.class);
TransactionException transactionException = tx.getTransactionException(keyInfo, exception);
assertThat(transactionException).isSameAs(exception);
}
@Test
public void txStubGetTransactionExceptionReturnsTransactionDataRebalancedExceptionIfCausedByPrimaryBucketException() {
TXStateProxyImpl tx = new TXStateProxyImpl(cache, txManager, txId, false, disabledClock());
DistributedMember target = mock(InternalDistributedMember.class);
tx.setLocalTXState(new PeerTXStateStub(tx, target, null));
KeyInfo keyInfo = mock(KeyInfo.class);
TransactionException transactionException =
tx.getTransactionException(keyInfo, new PrimaryBucketException());
assertThat(transactionException).isInstanceOf(TransactionDataRebalancedException.class);
}
@Test
public void txStubGetTransactionExceptionReturnsSameTransactionExceptionIfNotCausedByPrimaryBucketException() {
TXStateProxyImpl tx = new TXStateProxyImpl(cache, txManager, txId, false, disabledClock());
DistributedMember target = mock(InternalDistributedMember.class);
tx.setLocalTXState(new PeerTXStateStub(tx, target, null));
TransactionException exception = mock(TransactionException.class);
KeyInfo keyInfo = mock(KeyInfo.class);
TransactionException transactionException = tx.getTransactionException(keyInfo, exception);
assertThat(transactionException).isSameAs(exception);
}
}