blob: cc47d44e1bcc1a6e1d50d448ea428e421b77c267 [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.tests.integration.containers;
import static java.time.temporal.ChronoUnit.SECONDS;
import java.time.Duration;
import org.testcontainers.containers.wait.strategy.HttpWaitStrategy;
/**
* A pulsar container that runs standalone.
*/
public class StandaloneContainer extends PulsarContainer<StandaloneContainer> {
public static final String NAME = "standalone";
public StandaloneContainer(String clusterName) {
super(clusterName,
NAME,
NAME + "-cluster",
"bin/pulsar",
BROKER_PORT,
BROKER_HTTP_PORT);
}
public StandaloneContainer(String clusterName, String pulsarImageName) {
super(clusterName,
NAME,
NAME + "-cluster",
"bin/pulsar",
BROKER_PORT,
BROKER_HTTP_PORT,
"",
pulsarImageName);
}
@Override
protected void configure() {
super.configure();
setCommand("standalone");
}
@Override
protected void beforeStart() {
// update the wait strategy until public/default namespace is created
this.waitStrategy = new HttpWaitStrategy()
.forPort(BROKER_HTTP_PORT)
.forStatusCode(200)
.forPath("/admin/v2/namespaces/public/default")
.withStartupTimeout(Duration.of(300, SECONDS));
}
public String getPlainTextServiceUrl() {
return "pulsar://" + getContainerIpAddress() + ":" + getMappedPort(BROKER_PORT);
}
public String getHttpServiceUrl() {
return "http://" + getContainerIpAddress() + ":" + getMappedPort(BROKER_HTTP_PORT);
}
}