[
https://issues.apache.org/jira/browse/ARTEMIS-3616?focusedWorklogId=706897&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-706897
]
ASF GitHub Bot logged work on ARTEMIS-3616:
-------------------------------------------
Author: ASF GitHub Bot
Created on: 11/Jan/22 14:42
Start Date: 11/Jan/22 14:42
Worklog Time Spent: 10m
Work Description: clebertsuconic commented on a change in pull request
#3887:
URL: https://github.com/apache/activemq-artemis/pull/3887#discussion_r782213518
##########
File path:
tests/smoke-tests/src/test/java/org/apache/activemq/artemis/tests/smoke/nettynative/NettyNativeTest.java
##########
@@ -0,0 +1,78 @@
+/**
+ * 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.nettynative;
+
+import org.apache.activemq.artemis.jms.client.ActiveMQConnectionFactory;
+import org.apache.activemq.artemis.tests.smoke.common.SmokeTestBase;
+import org.apache.activemq.artemis.util.ServerUtil;
+import org.junit.Assert;
+import org.junit.Before;
+import org.junit.Test;
+
+import javax.jms.Connection;
+import javax.jms.ConnectionFactory;
+import javax.jms.MessageConsumer;
+import javax.jms.MessageProducer;
+import javax.jms.Queue;
+import javax.jms.Session;
+import javax.jms.TextMessage;
+import java.io.File;
+
+public class NettyNativeTest extends SmokeTestBase {
+
+ public static final String SERVER_NAME = "nettynative";
+ protected static final String SERVER_ADMIN_USERNAME = "admin";
+ protected static final String SERVER_ADMIN_PASSWORD = "admin";
+
+ @Before
+ public void before() throws Exception {
+ cleanupData(SERVER_NAME);
+ disableCheckThread();
+ startServer(SERVER_NAME, 0, 0);
+ ServerUtil.waitForServerToStart(0, SERVER_ADMIN_USERNAME,
SERVER_ADMIN_PASSWORD, 30000);
+ }
+
+ @Test
+ public void testNettyNativeAvailable() throws Exception {
+ ConnectionFactory factory = new
ActiveMQConnectionFactory("tcp://localhost:61616", SERVER_ADMIN_USERNAME,
SERVER_ADMIN_PASSWORD);
+
+ try (Connection connection = factory.createConnection()) {
+ try (Session session = connection.createSession(true,
Session.SESSION_TRANSACTED)) {
+ Queue queue = session.createQueue("TEST");
+ MessageProducer producer = session.createProducer(queue);
+ producer.send(session.createTextMessage("TEST"));
+
+ session.commit();
+
+ MessageConsumer consumer = session.createConsumer(queue);
+ connection.start();
+
+ TextMessage txt = (TextMessage) consumer.receive(10000);
+ Assert.assertNotNull(txt);
+ Assert.assertEquals("TEST", txt.getText());
+
+ session.commit();
+ }
+ }
+
+ File artemisLog = new File("target/" + SERVER_NAME + "/log/artemis.log");
+ checkLogRecord(artemisLog, false, "AMQ224116: Netty native epoll is not
available for the acceptor", "switching into NIO");
+ checkLogRecord(artemisLog, false, "AMQ224116: Netty native kqueue is not
available for the acceptor", "switching into NIO");
Review comment:
I wouldn't assert for the whole message... just assert the code please.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
Issue Time Tracking
-------------------
Worklog Id: (was: 706897)
Time Spent: 1h 10m (was: 1h)
> Netty epoll is not available
> ----------------------------
>
> Key: ARTEMIS-3616
> URL: https://issues.apache.org/jira/browse/ARTEMIS-3616
> Project: ActiveMQ Artemis
> Issue Type: Bug
> Affects Versions: 2.20.0
> Reporter: Domenico Francesco Bruscino
> Assignee: Domenico Francesco Bruscino
> Priority: Major
> Time Spent: 1h 10m
> Remaining Estimate: 0h
>
> Netty epoll is not available because of ClassNotFoundException for
> io.netty.channel.unix.Errors$NativeIoException.
> To work around this issue you can copy
> https://repo1.maven.org/maven2/io/netty/netty-transport-native-unix-common/4.1.72.Final/netty-transport-native-unix-common-4.1.72.Final.jar
> into ARTEMIS/lib folder.
--
This message was sent by Atlassian Jira
(v8.20.1#820001)