blob: b1fe7327dc062fe7c2414dc7bdd2b887be2becef [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.cassandra.tools;
import java.io.File;
import java.net.InetAddress;
import java.net.InetSocketAddress;
import java.nio.file.Paths;
import com.google.common.net.HostAndPort;
import org.junit.Test;
import static org.apache.cassandra.tools.OfflineToolUtils.sstableDirName;
import static org.junit.Assert.*;
// LoaderOptionsTester for custom configuration
public class LoaderOptionsTest
{
@Test
public void testNativePort() throws Exception {
//Default Cassandra config
File config = Paths.get(".", "test", "conf", "cassandra.yaml").normalize().toFile();
String[] args = {"-d", "127.9.9.1", "-f", config.getAbsolutePath(), sstableDirName("legacy_sstables", "legacy_ma_simple")};
LoaderOptions options = LoaderOptions.builder().parseArgs(args).build();
assertEquals(9042, options.nativePort);
// SSL Enabled Cassandra config
config = Paths.get(".", "test", "conf", "unit-test-conf/test-native-port.yaml").normalize().toFile();
String[] args2 = {"-d", "127.9.9.1", "-f", config.getAbsolutePath(), sstableDirName("legacy_sstables", "legacy_ma_simple")};
options = LoaderOptions.builder().parseArgs(args2).build();
assertEquals(9142, options.nativePort);
HostAndPort hap = HostAndPort.fromString("127.9.9.1");
InetAddress byName = InetAddress.getByName(hap.getHost());
assertTrue(options.hosts.contains(new InetSocketAddress(byName, 9142)));
// test native port set from command line
config = Paths.get(".", "test", "conf", "unit-test-conf/test-native-port.yaml").normalize().toFile();
String[] args3 = {"-d", "127.9.9.1", "-p", "9300", "-f", config.getAbsolutePath(), sstableDirName("legacy_sstables", "legacy_ma_simple")};
options = LoaderOptions.builder().parseArgs(args3).build();
assertEquals(9300, options.nativePort);
assertTrue(options.hosts.contains(new InetSocketAddress(byName, 9300)));
}
/**
* Regression testing for CASSANDRA-16280
*
* Check that providing encryption parameters to the loader (such as keystore and truststore) won't break loading
* the options.
*
* @throws Exception
*/
@Test
public void testEncryptionSettings() throws Exception
{
String[] args = { "-d", "127.9.9.1", "-ts", "test.jks", "-tspw", "truststorePass1", "-ks", "test.jks", "-kspw",
"testdata1", "--ssl-ciphers", "TLS_RSA_WITH_AES_256_CBC_SHA",
"--ssl-alg", "SunX509", "--store-type", "JKS", "--ssl-protocol", "TLS",
sstableDirName("legacy_sstables", "legacy_ma_simple") };
LoaderOptions options = LoaderOptions.builder().parseArgs(args).build();
assertEquals("test.jks", options.clientEncOptions.keystore);
}
}