use of com.hazelcast.jet.kafka.impl.KafkaTestSupport in project hazelcast by hazelcast.
the class SqlAvroTest method setUpClass.
@BeforeClass
public static void setUpClass() throws Exception {
initialize(1, null);
sqlService = instance().getSql();
kafkaTestSupport = new KafkaTestSupport();
kafkaTestSupport.createKafkaCluster();
Properties properties = new Properties();
properties.put("listeners", "http://0.0.0.0:0");
properties.put("kafkastore.connection.url", kafkaTestSupport.getZookeeperConnectionString());
SchemaRegistryConfig config = new SchemaRegistryConfig(properties);
SchemaRegistryRestApplication schemaRegistryApplication = new SchemaRegistryRestApplication(config);
schemaRegistry = schemaRegistryApplication.createServer();
schemaRegistry.start();
}
use of com.hazelcast.jet.kafka.impl.KafkaTestSupport in project hazelcast by hazelcast.
the class SqlKafkaAggregateTest method setUpClass.
@BeforeClass
public static void setUpClass() throws IOException {
initialize(1, null);
sqlService = instance().getSql();
kafkaTestSupport = new KafkaTestSupport();
kafkaTestSupport.createKafkaCluster();
}
use of com.hazelcast.jet.kafka.impl.KafkaTestSupport in project hazelcast by hazelcast.
the class SqlPojoTest method setUpClass.
@BeforeClass
public static void setUpClass() throws IOException {
initialize(1, null);
sqlService = instance().getSql();
kafkaTestSupport = new KafkaTestSupport();
kafkaTestSupport.createKafkaCluster();
}
use of com.hazelcast.jet.kafka.impl.KafkaTestSupport in project hazelcast by hazelcast.
the class SqlJsonTest method setUpClass.
@BeforeClass
public static void setUpClass() throws IOException {
initialize(1, null);
sqlService = instance().getSql();
kafkaTestSupport = new KafkaTestSupport();
kafkaTestSupport.createKafkaCluster();
}
use of com.hazelcast.jet.kafka.impl.KafkaTestSupport in project hazelcast by hazelcast.
the class SqlPlanCacheTest method setUpClass.
@BeforeClass
public static void setUpClass() throws IOException {
initialize(1, null);
sqlService = instance().getSql();
kafkaTestSupport = new KafkaTestSupport();
kafkaTestSupport.createKafkaCluster();
}
Aggregations