blob: 1775a74d87848ac09d3c80778d14bff51cc610ff [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.rya.kafka.connect.accumulo;
import java.util.HashMap;
import java.util.Map;
import org.apache.kafka.connect.errors.ConnectException;
import org.apache.rya.api.client.Install.InstallConfiguration;
import org.apache.rya.api.client.RyaClient;
import org.apache.rya.api.client.accumulo.AccumuloConnectionDetails;
import org.apache.rya.api.client.accumulo.AccumuloRyaClientFactory;
import org.apache.rya.test.accumulo.AccumuloITBase;
import org.junit.Test;
/**
* Integration tests for the methods of {@link AccumuloRyaSinkTask}.
*/
public class AccumuloRyaSinkTaskIT extends AccumuloITBase {
@Test
public void instanceExists() throws Exception {
// Install an instance of Rya.
final String ryaInstanceName = getRyaInstanceName();
final AccumuloConnectionDetails connectionDetails = new AccumuloConnectionDetails(
getUsername(),
getPassword().toCharArray(),
getInstanceName(),
getZookeepers());
final InstallConfiguration installConfig = InstallConfiguration.builder()
.setEnableTableHashPrefix(false)
.setEnableEntityCentricIndex(false)
.setEnableFreeTextIndex(false)
.setEnableTemporalIndex(false)
.setEnablePcjIndex(false)
.setEnableGeoIndex(false)
.build();
final RyaClient ryaClient = AccumuloRyaClientFactory.build(connectionDetails, getConnector());
ryaClient.getInstall().install(ryaInstanceName, installConfig);
// Create the task that will be tested.
final AccumuloRyaSinkTask task = new AccumuloRyaSinkTask();
try {
// Configure the task to use the embedded accumulo instance for Rya.
final Map<String, String> config = new HashMap<>();
config.put(AccumuloRyaSinkConfig.ZOOKEEPERS, getZookeepers());
config.put(AccumuloRyaSinkConfig.CLUSTER_NAME, getInstanceName());
config.put(AccumuloRyaSinkConfig.USERNAME, getUsername());
config.put(AccumuloRyaSinkConfig.PASSWORD, getPassword());
config.put(AccumuloRyaSinkConfig.RYA_INSTANCE_NAME, ryaInstanceName);
// This will pass because the Rya instance exists.
task.start(config);
} finally {
task.stop();
}
}
@Test(expected = ConnectException.class)
public void instanceDoesNotExist() throws Exception {
// Create the task that will be tested.
final AccumuloRyaSinkTask task = new AccumuloRyaSinkTask();
try {
// Configure the task to use the embedded accumulo instance for Rya.
final Map<String, String> config = new HashMap<>();
config.put(AccumuloRyaSinkConfig.ZOOKEEPERS, getZookeepers());
config.put(AccumuloRyaSinkConfig.CLUSTER_NAME, getInstanceName());
config.put(AccumuloRyaSinkConfig.USERNAME, getUsername());
config.put(AccumuloRyaSinkConfig.PASSWORD, getPassword());
config.put(AccumuloRyaSinkConfig.RYA_INSTANCE_NAME, getRyaInstanceName());
// Staring the task will fail because the Rya instance does not exist.
task.start(config);
} finally {
task.stop();
}
}
}