From b993e25310995bb8c5ca65360c25bcffff842243 Mon Sep 17 00:00:00 2001 From: Julien Viet Date: Mon, 17 Jun 2024 15:07:53 +0200 Subject: [PATCH] Remove IT test that do not pass anymore --- .../integration/ArtemisCoreDockerIT.java | 59 ------------------- 1 file changed, 59 deletions(-) delete mode 100644 src/test/java/io/vertx/ext/stomp/integration/ArtemisCoreDockerIT.java diff --git a/src/test/java/io/vertx/ext/stomp/integration/ArtemisCoreDockerIT.java b/src/test/java/io/vertx/ext/stomp/integration/ArtemisCoreDockerIT.java deleted file mode 100644 index 4397ce0..0000000 --- a/src/test/java/io/vertx/ext/stomp/integration/ArtemisCoreDockerIT.java +++ /dev/null @@ -1,59 +0,0 @@ -/* - * Copyright (c) 2011-2015 The original author or authors - * - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the Eclipse Public License v1.0 - * and Apache License v2.0 which accompanies this distribution. - * - * The Eclipse Public License is available at - * http://www.eclipse.org/legal/epl-v10.html - * - * The Apache License v2.0 is available at - * http://www.opensource.org/licenses/apache2.0.php - * - * You may elect to redistribute this code under either of these licenses. - */ - -package io.vertx.ext.stomp.integration; - -import io.vertx.ext.stomp.StompClientOptions; -import org.junit.ClassRule; -import org.testcontainers.containers.GenericContainer; - -/** - * Checks that our clients can connect and interact with ActiveMQ. This test use the core port (61616). - * - * @author Clement Escoffier - */ -public class ArtemisCoreDockerIT extends AbstractClientIT { - - @ClassRule - public static final GenericContainer container - = new GenericContainer("vromero/activemq-artemis:2.6.3-alpine") - .withExposedPorts(61613) - .withExposedPorts(5445); - - @Override - public StompClientOptions getOptions() { - return new StompClientOptions() - .setHost(container.getContainerIpAddress()) - .setPort(container.getMappedPort(61613)) - .setLogin("artemis") - .setPasscode("simetraehcapa"); - } - - @Override - public StompClientOptions getOptionsWithSSL() { - return null; - } - - /** - * Artemis queue requires the "jms.queue" prefix. - * - * @return the destination. - */ - @Override - public String getDestination() { - return "jms.queue.box-core"; - } -}