blob: c663b28c89077d60642fb465b78f9cae1828ed8b [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 org.apache.jackrabbit.oak.commons.FixturesHelper.Fixture.SEGMENT_TAR;
import static org.apache.jackrabbit.oak.commons.FixturesHelper.getFixtures;
import static org.junit.Assume.assumeTrue;
import com.google.common.base.Strings;
import org.apache.jackrabbit.oak.blob.cloud.azure.blobstorage.AzureConstants;
import org.apache.jackrabbit.oak.blob.cloud.azure.blobstorage.AzureDataStoreUtils;
import org.apache.jackrabbit.oak.plugins.blob.datastore.DataStoreBlobStore;
import org.junit.After;
import org.junit.BeforeClass;
import java.io.File;
import java.util.Properties;
/**
* Tests for SegmentNodeStore on AzureDataStore GC
*/
public class SegmentAzureDataStoreBlobGCIT extends SegmentDataStoreBlobGCIT {
protected String containerName;
@BeforeClass
public static void assumptions() {
assumeTrue(getFixtures().contains(SEGMENT_TAR));
assumeTrue(AzureDataStoreUtils.isAzureConfigured());
}
@Override
protected DataStoreBlobStore getBlobStore(File rootFolder) throws Exception {
Properties props = AzureDataStoreUtils.getAzureConfig();
containerName = rootFolder.getName();
props.setProperty(AzureConstants.AZURE_BLOB_CONTAINER_NAME, containerName);
props.setProperty("cacheSize", "0");
return new DataStoreBlobStore(AzureDataStoreUtils.getAzureDataStore(props, rootFolder.getAbsolutePath()));
}
@After
public void close() throws Exception {
if (!Strings.isNullOrEmpty(containerName)) {
AzureDataStoreUtils.deleteContainer(containerName);
}
}
}