blob: 6f68e1350dbf47304e21e57f3936a4e3e69771d8 [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.slider.funtest.accumulo
import groovy.util.logging.Slf4j
import org.apache.slider.api.ClusterDescription
import org.apache.slider.client.SliderClient
import javax.net.ssl.KeyManager
import javax.net.ssl.SSLContext
import javax.net.ssl.TrustManager
import javax.net.ssl.X509TrustManager
import java.security.SecureRandom
import java.security.cert.CertificateException
import java.security.cert.X509Certificate
@Slf4j
class AccumuloMonitorSSLIT extends AccumuloBasicIT {
AccumuloMonitorSSLIT() {
APP_TEMPLATE = "target/test-config/appConfig_monitor_ssl.json"
}
@Override
public String getClusterName() {
return "test_monitor_ssl";
}
@Override
public String getDescription() {
return "Test enable monitor SSL $clusterName"
}
@Override
public void clusterLoadOperations(ClusterDescription cd, SliderClient sliderClient) {
String monitorUrl = getMonitorUrl(sliderClient, getClusterName())
assert monitorUrl.startsWith("https://"), "Monitor URL didn't have expected protocol"
SSLContext ctx = SSLContext.getInstance("SSL");
TrustManager[] t = new TrustManager[1];
t[0] = new DefaultTrustManager();
ctx.init(new KeyManager[0], t, new SecureRandom());
SSLContext.setDefault(ctx);
checkMonitorPage(monitorUrl)
}
private static class DefaultTrustManager implements X509TrustManager {
@Override
public void checkClientTrusted(X509Certificate[] arg0, String arg1) throws CertificateException {}
@Override
public void checkServerTrusted(X509Certificate[] arg0, String arg1) throws CertificateException {}
@Override
public X509Certificate[] getAcceptedIssuers() {
return null;
}
}
}