blob: 90193bb11bfa015f938491af8f2468cf4d1e3dcc [file] [log] [blame]
// Copyright (C) 2015 Ericsson
//
// 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.ericsson.gerrit.plugins.evictcache;
import static com.google.common.truth.Truth.assertThat;
import static org.easymock.EasyMock.expect;
import static org.easymock.EasyMock.expectLastCall;
import com.google.gerrit.extensions.annotations.PluginName;
import com.google.gerrit.server.git.WorkQueue;
import org.easymock.EasyMockSupport;
import org.junit.Before;
import org.junit.Test;
public class EvictCacheExecutorProviderTest extends EasyMockSupport {
private WorkQueue.Executor executorMock;
private EvictCacheExecutorProvider evictCacheExecutorProvider;
@PluginName String pluginName;
@Before
public void setUp() throws Exception {
executorMock = createStrictMock(WorkQueue.Executor.class);
WorkQueue workQueueMock = createNiceMock(WorkQueue.class);
expect(workQueueMock.createQueue(4,
"Evict cache [" + pluginName + " plugin]"))
.andReturn(executorMock);
Configuration configMock = createStrictMock(Configuration.class);
expect(configMock.getThreadPoolSize()).andReturn(4);
replayAll();
evictCacheExecutorProvider =
new EvictCacheExecutorProvider(workQueueMock, pluginName, configMock);
}
@Test
public void shouldReturnExecutor() throws Exception {
assertThat(evictCacheExecutorProvider.get()).isEqualTo(executorMock);
}
@Test
public void testStop() throws Exception {
resetAll();
executorMock.shutdown();
expectLastCall().once();
executorMock.unregisterWorkQueue();
expectLastCall().once();
replayAll();
evictCacheExecutorProvider.start();
assertThat(evictCacheExecutorProvider.get()).isEqualTo(executorMock);
evictCacheExecutorProvider.stop();
verifyAll();
assertThat(evictCacheExecutorProvider.get()).isNull();
}
}