blob: b90403df95274ea2ca2e5d494c585ac7a46ee7d0 [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.plugins.document.blob.ds;
import java.io.File;
import org.apache.commons.io.FileUtils;
import org.apache.jackrabbit.oak.plugins.blob.datastore.DataStoreUtils;
import org.apache.jackrabbit.oak.plugins.document.DocumentMK;
import org.apache.jackrabbit.oak.plugins.document.MongoUtils;
import org.apache.jackrabbit.oak.plugins.document.blob.DocumentMKWriteTest;
import org.junit.After;
import org.junit.Assume;
import org.junit.Before;
import org.junit.BeforeClass;
import static org.junit.Assert.assertNotNull;
/**
* Tests for {@code DocumentMK#write(java.io.InputStream)} using
* {@link DataStore}
*/
public class DocumentMKDataStoreWriteTest extends DocumentMKWriteTest {
@BeforeClass
public static void setUpBeforeClass() {
try {
Assume.assumeNotNull(DataStoreUtils.getBlobStore());
} catch (Exception e) {
Assume.assumeNoException(e);
}
}
@Override
@Before
public void setUpConnection() throws Exception {
mongoConnection = connectionFactory.getConnection();
assertNotNull(mongoConnection);
MongoUtils.dropCollections(mongoConnection.getDBName());
mk = new DocumentMK.Builder()
.setMongoDB(mongoConnection.getMongoClient(), mongoConnection.getDBName())
.setBlobStore(DataStoreUtils.getBlobStore()).open();
}
@Override
@After
public void tearDownConnection() throws Exception {
FileUtils.deleteDirectory(new File(DataStoreUtils.getHomeDir()));
mk.dispose();
MongoUtils.dropCollections(connectionFactory.getConnection().getDatabase());
}
}