/* * Copyright (c) 2008-2017, Hazelcast, Inc. All Rights Reserved. * * Licensed 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 com.hazelcast.spi.impl.operationexecutor.impl; import com.hazelcast.instance.OutOfMemoryErrorDispatcher; import com.hazelcast.logging.ILogger; import com.hazelcast.nio.Packet; import com.hazelcast.spi.Operation; import com.hazelcast.spi.impl.PartitionSpecificRunnable; import com.hazelcast.spi.impl.operationexecutor.OperationRunner; import com.hazelcast.spi.impl.operationexecutor.OperationRunnerFactory; import com.hazelcast.test.AssertTask; import com.hazelcast.test.HazelcastParallelClassRunner; import com.hazelcast.test.annotation.ParallelTest; import com.hazelcast.test.annotation.QuickTest; import org.junit.Test; import org.junit.experimental.categories.Category; import org.junit.runner.RunWith; import static org.junit.Assert.assertEquals; import static org.junit.Assert.fail; import static org.mockito.Matchers.anyInt; import static org.mockito.Mockito.doThrow; import static org.mockito.Mockito.mock; import static org.mockito.Mockito.when; @RunWith(HazelcastParallelClassRunner.class) @Category({QuickTest.class, ParallelTest.class}) public class OperationThreadTest extends OperationExecutorImpl_AbstractTest { @Test public void testOOME_whenDeserializing() throws Exception { handlerFactory = mock(OperationRunnerFactory.class); OperationRunner handler = mock(OperationRunner.class); when(handlerFactory.createGenericRunner()).thenReturn(handler); when(handlerFactory.createPartitionRunner(anyInt())).thenReturn(handler); initExecutor(); DummyOperation operation = new DummyOperation(Operation.GENERIC_PARTITION_ID); Packet packet = new Packet(serializationService.toBytes(operation), operation.getPartitionId()) .setPacketType(Packet.Type.OPERATION); doThrow(new OutOfMemoryError()).when(handler).run(packet); final int oldCount = OutOfMemoryErrorDispatcher.getOutOfMemoryErrorCount(); executor.handle(packet); assertTrueEventually(new AssertTask() { @Override public void run() throws Exception { assertEquals(oldCount + 1, OutOfMemoryErrorDispatcher.getOutOfMemoryErrorCount()); } }); } @Test public void priorityPendingCount_returnScheduleQueuePrioritySize() { OperationQueue mockOperationQueue = mock(OperationQueue.class); when(mockOperationQueue.prioritySize()).thenReturn(Integer.MAX_VALUE); PartitionOperationThread operationThread = createNewOperationThread(mockOperationQueue); int prioritySize = operationThread.priorityPendingCount(); assertEquals(Integer.MAX_VALUE, prioritySize); } @Test public void normalPendingCount_returnScheduleQueueNormalSize() { OperationQueue mockOperationQueue = mock(OperationQueue.class); when(mockOperationQueue.normalSize()).thenReturn(Integer.MAX_VALUE); PartitionOperationThread operationThread = createNewOperationThread(mockOperationQueue); int normalSize = operationThread.normalPendingCount(); assertEquals(Integer.MAX_VALUE, normalSize); } @Test public void executeOperation_withInvalid_partitionId() { final int partitionId = Integer.MAX_VALUE; Operation operation = new DummyPartitionOperation(partitionId); testExecute_withInvalid_partitionId(operation); } @Test public void executePartitionSpecificRunnable_withInvalid_partitionId() { final int partitionId = Integer.MAX_VALUE; testExecute_withInvalid_partitionId(new PartitionSpecificRunnable() { @Override public int getPartitionId() { return partitionId; } @Override public void run() { } }); } @Test public void executePacket_withInvalid_partitionId() { final int partitionId = Integer.MAX_VALUE; Operation operation = new DummyPartitionOperation(partitionId); Packet packet = new Packet(serializationService.toBytes(operation), operation.getPartitionId()) .setPacketType(Packet.Type.OPERATION); testExecute_withInvalid_partitionId(packet); } private void testExecute_withInvalid_partitionId(Object task) { handlerFactory = mock(OperationRunnerFactory.class); OperationRunner handler = mock(OperationRunner.class); when(handlerFactory.createGenericRunner()).thenReturn(handler); when(handlerFactory.createPartitionRunner(anyInt())).thenReturn(handler); initExecutor(); if (task instanceof Operation) { executor.execute((Operation) task); } else if (task instanceof PartitionSpecificRunnable) { executor.execute((PartitionSpecificRunnable) task); } else if (task instanceof Packet) { executor.handle((Packet) task); } else { fail("invalid task!"); } final Runnable emptyRunnable = new Runnable() { @Override public void run() { } }; executor.executeOnPartitionThreads(emptyRunnable); assertTrueEventually(new AssertTask() { @Override public void run() throws Exception { assertEquals(0, executor.getPriorityQueueSize()); } }); } private PartitionOperationThread createNewOperationThread(OperationQueue mockOperationQueue) { ILogger mockLogger = mock(ILogger.class); OperationRunner[] runners = new OperationRunner[0]; return new PartitionOperationThread("threadName", 0, mockOperationQueue, mockLogger, nodeExtension, runners, Thread.currentThread().getContextClassLoader()); } }