From ff58e6e3066bd3ae9111af8d62c9260bf16d716d Mon Sep 17 00:00:00 2001 From: Clebert Suconic Date: Mon, 16 Mar 2020 16:39:18 -0400 Subject: [PATCH] ARTEMIS-2658 Smoke tests for Paging on AMQP and Core --- tests/smoke-tests/pom.xml | 20 ++ .../main/resources/servers/paging/broker.xml | 186 ++++++++++++++++++ .../tests/smoke/paging/SmokePagingTest.java | 77 ++++++++ 3 files changed, 283 insertions(+) create mode 100644 tests/smoke-tests/src/main/resources/servers/paging/broker.xml create mode 100644 tests/smoke-tests/src/test/java/org/apache/activemq/artemis/tests/smoke/paging/SmokePagingTest.java diff --git a/tests/smoke-tests/pom.xml b/tests/smoke-tests/pom.xml index c0153aac44..7406d159c5 100644 --- a/tests/smoke-tests/pom.xml +++ b/tests/smoke-tests/pom.xml @@ -287,6 +287,26 @@ + + test-compile + create-paging + + create + + + + ${basedir}/target/classes/servers/paging + true + admin + admin + ${basedir}/target/paging + + + --java-options + -Djava.rmi.server.hostname=localhost + + + diff --git a/tests/smoke-tests/src/main/resources/servers/paging/broker.xml b/tests/smoke-tests/src/main/resources/servers/paging/broker.xml new file mode 100644 index 0000000000..46ccdec9c5 --- /dev/null +++ b/tests/smoke-tests/src/main/resources/servers/paging/broker.xml @@ -0,0 +1,186 @@ + + + + + + + + 0.0.0.0 + + true + + + NIO + + ./data/paging + + ./data/bindings + + ./data/journal + + ./data/large-messages + + true + + 2 + + -1 + + 1000 + + + + + + + + + + + + + + + + + + + + + + 5000 + + + 90 + + + + + + + + + + + + tcp://0.0.0.0:61616?tcpSendBufferSize=1048576;tcpReceiveBufferSize=1048576;protocols=CORE,AMQP,STOMP,HORNETQ,MQTT,OPENWIRE;useEpoll=true;useKQueue;amqpCredits=1000;amqpLowCredits=300 + + + tcp://0.0.0.0:5672?tcpSendBufferSize=1048576;tcpReceiveBufferSize=1048576;protocols=AMQP;useEpoll=true;useKQueue=true;amqpCredits=1000;amqpLowCredits=300 + + + tcp://0.0.0.0:61613?tcpSendBufferSize=1048576;tcpReceiveBufferSize=1048576;protocols=STOMP;useEpoll=true;useKQueue=true + + + tcp://0.0.0.0:5445?protocols=HORNETQ,STOMP;useEpoll=true;useKQueue=true + + + tcp://0.0.0.0:1883?tcpSendBufferSize=1048576;tcpReceiveBufferSize=1048576;protocols=MQTT;useEpoll=true;useKQueue=true + + + + + + + + + + + + + + + + + + + + + + + + DLQ + ExpiryQueue + 0 + + -1 + 10 + PAGE + true + true + true + true + + + + DLQ + ExpiryQueue + 0 + + 100000 + 10000 + 10 + PAGE + true + true + true + true + + + + +
+ + + +
+
+ + + +
+ +
+ +
+
diff --git a/tests/smoke-tests/src/test/java/org/apache/activemq/artemis/tests/smoke/paging/SmokePagingTest.java b/tests/smoke-tests/src/test/java/org/apache/activemq/artemis/tests/smoke/paging/SmokePagingTest.java new file mode 100644 index 0000000000..fac7999f78 --- /dev/null +++ b/tests/smoke-tests/src/test/java/org/apache/activemq/artemis/tests/smoke/paging/SmokePagingTest.java @@ -0,0 +1,77 @@ +/* + * 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.artemis.tests.smoke.paging; + +import org.apache.activemq.artemis.cli.commands.ActionContext; +import org.apache.activemq.artemis.cli.commands.messages.Consumer; +import org.apache.activemq.artemis.cli.commands.messages.Producer; +import org.apache.activemq.artemis.tests.smoke.common.SmokeTestBase; +import org.junit.Assert; +import org.junit.Before; +import org.junit.Test; + +public class SmokePagingTest extends SmokeTestBase { + + public static final String SERVER_NAME_0 = "paging"; + + @Before + public void before() throws Exception { + cleanupData(SERVER_NAME_0); + disableCheckThread(); + startServer(SERVER_NAME_0, 0, 30000); + } + + + @Test + public void testAMQPOnCLI() throws Exception { + + String protocol = "amqp"; + int NUMBER_OF_MESSAGES = 5000; + + internalReceive(protocol, NUMBER_OF_MESSAGES); + + } + + @Test + public void testCoreOnCLI() throws Exception { + + String protocol = "core"; + int NUMBER_OF_MESSAGES = 5000; + + internalReceive(protocol, NUMBER_OF_MESSAGES); + + } + + private void internalReceive(String protocol, int NUMBER_OF_MESSAGES) throws Exception { + Producer producer = (Producer)new Producer().setMessageSize(1000).setMessageCount(NUMBER_OF_MESSAGES).setTxBatchSize(1000); + producer.setProtocol(protocol); + producer.setSilentInput(true); + producer.execute(new ActionContext()); + + Consumer consumer = new Consumer(); + consumer.setMessageCount(NUMBER_OF_MESSAGES); + consumer.setProtocol(protocol); + consumer.setSilentInput(true); + consumer.setReceiveTimeout(2000); + consumer.setBreakOnNull(true); + int consumed = (int)consumer.execute(new ActionContext()); + + Assert.assertEquals(NUMBER_OF_MESSAGES, consumed); + } + +}