This is an automated email from the ASF dual-hosted git repository.
jbonofre pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/activemq.git
The following commit(s) were added to refs/heads/main by this push:
new e057fc32b3 Add test for VM transport behavior on broker restart (#1631)
e057fc32b3 is described below
commit e057fc32b3dce4cde171543eb38341ce28657b29
Author: pradeep85841 <[email protected]>
AuthorDate: Thu Jan 29 00:13:50 2026 +0530
Add test for VM transport behavior on broker restart (#1631)
Co-authored-by: Pradeep Kunchala <[email protected]>
---
.../activemq/VmTransportBrokerRestartTest.java | 82 ++++++++++++++++++++++
1 file changed, 82 insertions(+)
diff --git
a/activemq-unit-tests/src/test/java/org/apache/activemq/VmTransportBrokerRestartTest.java
b/activemq-unit-tests/src/test/java/org/apache/activemq/VmTransportBrokerRestartTest.java
new file mode 100644
index 0000000000..ceae4905c2
--- /dev/null
+++
b/activemq-unit-tests/src/test/java/org/apache/activemq/VmTransportBrokerRestartTest.java
@@ -0,0 +1,82 @@
+/**
+ * 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.activemq;
+
+import jakarta.jms.TextMessage;
+import org.apache.activemq.broker.BrokerService;
+import org.apache.activemq.test.annotations.ParallelTest;
+import org.junit.After;
+import org.junit.Test;
+import org.junit.experimental.categories.Category;
+
+@Category(ParallelTest.class)
+public class VmTransportBrokerRestartTest extends EmbeddedBrokerTestSupport {
+
+ @Override
+ protected BrokerService createBroker() throws Exception {
+ BrokerService broker = new BrokerService();
+
+ broker.setBrokerName("localhost");
+ broker.setPersistent(false);
+ broker.setUseJmx(false);
+ broker.addConnector("vm://localhost");
+
+ return broker;
+ }
+
+ @Test
+ public void testSendReceiveAfterBrokerRestart() throws Exception {
+
+ String firstMessage = "message-before-restart";
+ template.convertAndSend(firstMessage);
+
+ TextMessage receivedBefore =
+ (TextMessage) template.receive(destination);
+
+ assertNotNull(receivedBefore);
+ assertEquals(firstMessage, receivedBefore.getText());
+
+ broker.stop();
+ broker.waitUntilStopped();
+
+ broker = createBroker();
+ startBroker();
+ broker.waitUntilStarted();
+
+ connectionFactory = createConnectionFactory();
+ template = createJmsTemplate();
+ template.setDefaultDestination(destination);
+ template.afterPropertiesSet();
+
+ String secondMessage = "message-after-restart";
+ template.convertAndSend(secondMessage);
+
+ TextMessage receivedAfter =
+ (TextMessage) template.receive(destination);
+
+ assertNotNull(receivedAfter);
+ assertEquals(secondMessage, receivedAfter.getText());
+ }
+
+ @After
+ public void cleanup() throws Exception {
+ if (broker != null) {
+ broker.stop();
+ broker.waitUntilStopped();
+ }
+ }
+}
\ No newline at end of file
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
For further information, visit: https://activemq.apache.org/contact