blob: faa716ce4b3f7bde26a592d4ae4607db515b9387 [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.drill.exec.store.splunk;
import org.apache.drill.categories.SlowTest;
import org.apache.drill.common.logical.StoragePluginConfig;
import org.apache.drill.common.logical.StoragePluginConfig.AuthMode;
import org.apache.drill.common.logical.security.PlainCredentialsProvider;
import org.apache.drill.exec.ExecConstants;
import org.apache.drill.exec.store.StoragePluginRegistry;
import org.apache.drill.test.ClusterFixtureBuilder;
import org.apache.drill.test.ClusterTest;
import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.junit.ClassRule;
import org.junit.experimental.categories.Category;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.testcontainers.containers.GenericContainer;
import org.testcontainers.utility.DockerImageName;
import java.util.HashMap;
import java.util.concurrent.atomic.AtomicInteger;
import static org.apache.drill.exec.rpc.user.security.testing.UserAuthenticatorTestImpl.TEST_USER_1;
import static org.apache.drill.exec.rpc.user.security.testing.UserAuthenticatorTestImpl.TEST_USER_2;
@RunWith(Suite.class)
@Suite.SuiteClasses({
SplunkConnectionTest.class,
SplunkQueryBuilderTest.class,
SplunkLimitPushDownTest.class,
SplunkIndexesTest.class,
SplunkPluginTest.class,
SplunkTestSplunkUtils.class,
TestSplunkUserTranslation.class
})
@Category({SlowTest.class})
public class SplunkTestSuite extends ClusterTest {
private static final Logger logger = LoggerFactory.getLogger(SplunkTestSuite.class);
protected static SplunkPluginConfig SPLUNK_STORAGE_PLUGIN_CONFIG = null;
protected static SplunkPluginConfig SPLUNK_STORAGE_PLUGIN_CONFIG_WITH_USER_TRANSLATION = null;
public static final String SPLUNK_LOGIN = "admin";
public static final String SPLUNK_PASS = "password";
private static volatile boolean runningSuite = true;
private static AtomicInteger initCount = new AtomicInteger(0);
@ClassRule
public static GenericContainer<?> splunk = new GenericContainer<>(
DockerImageName.parse("splunk/splunk:9.0.2")
)
.withExposedPorts(8089, 8089)
.withEnv("SPLUNK_START_ARGS", "--accept-license")
.withEnv("SPLUNK_PASSWORD", SPLUNK_PASS)
.withEnv("SPLUNKD_SSL_ENABLE", "false");
@BeforeClass
public static void initSplunk() throws Exception {
synchronized (SplunkTestSuite.class) {
if (initCount.get() == 0) {
ClusterFixtureBuilder builder = new ClusterFixtureBuilder(dirTestWatcher)
.configProperty(ExecConstants.HTTP_ENABLE, true)
.configProperty(ExecConstants.HTTP_PORT_HUNT, true)
.configProperty(ExecConstants.IMPERSONATION_ENABLED, true);
startCluster(builder);
splunk.start();
String hostname = splunk.getHost();
Integer port = splunk.getFirstMappedPort();
StoragePluginRegistry pluginRegistry = cluster.drillbit().getContext().getStorage();
SPLUNK_STORAGE_PLUGIN_CONFIG = new SplunkPluginConfig(
SPLUNK_LOGIN, SPLUNK_PASS,
"http", hostname, port,
null, null, null, null, null, // app, owner, token, cookie, validateCertificates
"1", "now",
null,
4,
StoragePluginConfig.AuthMode.SHARED_USER.name()
);
SPLUNK_STORAGE_PLUGIN_CONFIG.setEnabled(true);
pluginRegistry.put(SplunkPluginConfig.NAME, SPLUNK_STORAGE_PLUGIN_CONFIG);
runningSuite = true;
logger.info("Take a time to ready more Splunk events (10 sec)...");
Thread.sleep(10000);
PlainCredentialsProvider credentialsProvider = new PlainCredentialsProvider(new HashMap<>());
// Add authorized user
credentialsProvider.setUserCredentials(SPLUNK_LOGIN, SPLUNK_PASS, TEST_USER_1);
// Add unauthorized user
credentialsProvider.setUserCredentials("nope", "no way dude", TEST_USER_2);
SPLUNK_STORAGE_PLUGIN_CONFIG_WITH_USER_TRANSLATION = new SplunkPluginConfig(
null, null, // username, password
"http", hostname, port,
null, null, null, null, null, // app, owner, token, cookie, validateCertificates
"1", "now",
credentialsProvider,
4,
AuthMode.USER_TRANSLATION.name()
);
SPLUNK_STORAGE_PLUGIN_CONFIG_WITH_USER_TRANSLATION.setEnabled(true);
pluginRegistry.put("ut_splunk", SPLUNK_STORAGE_PLUGIN_CONFIG_WITH_USER_TRANSLATION);
}
initCount.incrementAndGet();
runningSuite = true;
}
logger.info("Initialized Splunk in Docker container");
}
@AfterClass
public static void tearDownCluster() {
synchronized (SplunkTestSuite.class) {
if (initCount.decrementAndGet() == 0) {
splunk.close();
}
}
}
public static boolean isRunningSuite() {
return runningSuite;
}
}