blob: f24156acab20613cc2c65467fcd65963ea4dc403 [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.pulsar.broker.service;
import static org.testng.Assert.assertEquals;
import static org.testng.Assert.assertTrue;
import org.apache.pulsar.broker.service.BrokerService;
import org.apache.pulsar.client.impl.PulsarClientImpl;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.testng.annotations.AfterClass;
import org.testng.annotations.BeforeClass;
import org.testng.annotations.Test;
import org.testng.collections.Lists;
public class ReplicatorTlsTest extends ReplicatorTestBase {
@Override
@BeforeClass(timeOut = 300000)
void setup() throws Exception {
config1.setBrokerClientTlsEnabled(true);
config2.setBrokerClientTlsEnabled(true);
config3.setBrokerClientTlsEnabled(true);
super.setup();
}
@Override
@AfterClass(alwaysRun = true, timeOut = 300000)
void shutdown() throws Exception {
super.shutdown();
}
@Test
public void testReplicationClient() throws Exception {
log.info("--- Starting ReplicatorTlsTest::testReplicationClient ---");
for (BrokerService ns : Lists.newArrayList(ns1, ns2, ns3)) {
ns.getReplicationClients().forEach((cluster, client) -> {
assertTrue(((PulsarClientImpl) client).getConfiguration().isUseTls());
assertEquals(((PulsarClientImpl) client).getConfiguration().getTlsTrustCertsFilePath(),
TLS_SERVER_CERT_FILE_PATH);
});
}
}
private static final Logger log = LoggerFactory.getLogger(ReplicatorTlsTest.class);
}