blob: 38a892ccaae6fea9de4a24e76489ae42dce0a3a8 [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.jackrabbit.oak.segment;
import static com.google.common.collect.Maps.newHashMap;
import static org.apache.jackrabbit.oak.segment.SegmentNodeStoreService.CUSTOM_BLOB_STORE;
import static org.apache.jackrabbit.oak.segment.SegmentNodeStoreService.REPOSITORY_HOME_DIRECTORY;
import static org.apache.sling.testing.mock.osgi.MockOsgi.deactivate;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertNull;
import static org.mockito.Mockito.mock;
import java.io.File;
import java.util.Map;
import org.apache.jackrabbit.oak.api.jmx.ConsolidatedDataStoreCacheStatsMBean;
import org.apache.jackrabbit.oak.plugins.blob.AbstractSharedCachingDataStore;
import org.apache.jackrabbit.oak.plugins.blob.ConsolidatedDataStoreCacheStats;
import org.apache.jackrabbit.oak.spi.blob.BlobStore;
import org.apache.jackrabbit.oak.spi.state.NodeStore;
import org.apache.jackrabbit.oak.stats.StatisticsProvider;
import org.apache.sling.testing.mock.osgi.ReferenceViolationException;
import org.apache.sling.testing.mock.osgi.junit.OsgiContext;
import org.junit.Before;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.ExpectedException;
import org.junit.rules.TemporaryFolder;
import org.osgi.framework.ServiceRegistration;
/**
* Tests the registration of the {@link ConsolidatedDataStoreCacheStatsMBean}.
*/
public class SegmentCachingDataStoreStatsTest {
@Rule
public OsgiContext context = new OsgiContext();
@Rule
public TemporaryFolder folder = new TemporaryFolder(new File("target"));
@Rule
public ExpectedException expectedEx = ExpectedException.none();
@Before
public void setUp() {
context.registerService(StatisticsProvider.class, StatisticsProvider.NOOP);
}
@Test
public void testUseCachingBlobStore() {
ServiceRegistration delegateReg =
context.bundleContext().registerService(AbstractSharedCachingDataStore.class.getName(),
mock(AbstractSharedCachingDataStore.class), null);
assertNotNull(context.getService(AbstractSharedCachingDataStore.class));
registerBlobStore();
registerSegmentNodeStoreService(true);
assertServiceActivated();
ConsolidatedDataStoreCacheStats dataStoreStats =
context.registerInjectActivateService(new ConsolidatedDataStoreCacheStats());
assertNotNull(context.getService(ConsolidatedDataStoreCacheStatsMBean.class));
deactivate(dataStoreStats, context.bundleContext());
unregisterSegmentNodeStoreService();
unregisterBlobStore();
delegateReg.unregister();
}
@Test
public void testNoCachingBlobStore() {
expectedEx.expect(ReferenceViolationException.class);
registerBlobStore();
registerSegmentNodeStoreService(true);
assertServiceActivated();
ConsolidatedDataStoreCacheStats dataStoreStats =
context.registerInjectActivateService(new ConsolidatedDataStoreCacheStats());
assertNull(context.getService(ConsolidatedDataStoreCacheStatsMBean.class));
unregisterSegmentNodeStoreService();
unregisterBlobStore();
}
private SegmentNodeStoreService segmentNodeStoreService;
private void registerSegmentNodeStoreService(boolean customBlobStore) {
Map<String, Object> properties = newHashMap();
properties.put(CUSTOM_BLOB_STORE, customBlobStore);
properties.put(REPOSITORY_HOME_DIRECTORY, folder.getRoot().getAbsolutePath());
segmentNodeStoreService =
context.registerInjectActivateService(new SegmentNodeStoreService(), properties);
}
private void unregisterSegmentNodeStoreService() {
deactivate(segmentNodeStoreService, context.bundleContext());
}
private ServiceRegistration blobStore;
private void registerBlobStore() {
blobStore = context.bundleContext().registerService(BlobStore.class.getName(), mock(BlobStore.class), null);
}
private void unregisterBlobStore() {
blobStore.unregister();
}
private void assertServiceActivated() {
assertNotNull(context.getService(NodeStore.class));
assertNotNull(context.getService(SegmentStoreProvider.class));
}
}