blob: 23edbbc5905b72c0024a53ebb9e23b1941e74b74 [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.gora.rethinkdb.store;
import org.apache.gora.rethinkdb.RethinkDBTestDriver;
import org.apache.gora.store.DataStoreTestBase;
import org.junit.After;
import org.junit.AfterClass;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.ClassRule;
import org.junit.Ignore;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.testcontainers.containers.GenericContainer;
import java.time.Duration;
/**
* Executes all the dataStore specific integration tests for RethinkDB dataStore.
*/
public class RethinkDBGoraDataStoreTest extends DataStoreTestBase {
private static final Logger log = LoggerFactory.getLogger(RethinkDBGoraDataStoreTest.class);
private static final String DOCKER_CONTAINER_NAME = "rethinkdb:2.3.6";
@ClassRule
public static GenericContainer rethinkdbContainer = new GenericContainer(DOCKER_CONTAINER_NAME)
.waitingFor(new RethinkDBStartupWaitStrategy())
.withStartupTimeout(Duration.ofSeconds(10));
@BeforeClass
public static void setUpClass() throws Exception {
setTestDriver(new RethinkDBTestDriver(rethinkdbContainer));
DataStoreTestBase.setUpClass();
}
@AfterClass
public static void tearDownClass() throws Exception {
DataStoreTestBase.tearDownClass();
}
@Before
public void setUp() throws Exception {
super.setUp();
}
@After
public void tearDown() throws Exception {
super.tearDown();
}
@Ignore("3 types union field is not supported by OrientDBStore.")
@Override
public void testGet3UnionField() throws Exception {
//3 types union field is not supported by OrientDBStore.
}
}