bstlukasiewicz commented on code in PR #5822: URL: https://github.com/apache/activemq-artemis/pull/5822#discussion_r2194404324
########## tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/amqp/connect/AMQPConnectSaslTest.java: ########## @@ -115,6 +117,81 @@ public void testConnectsWithPlain() throws Exception { } } + @Test + @Timeout(20) + public void testConnectsWithXOauth2() throws Exception { + try (ProtonTestServer peer = new ProtonTestServer()) { + peer.expectSaslXOauth2Connect(USER, PASSWD); + peer.expectOpen().respond(); + peer.expectBegin().respond(); + peer.start(); + + final URI remoteURI = peer.getServerURI(); + logger.debug("Connect test started, peer listening on: {}", remoteURI); + + AMQPBrokerConnectConfiguration amqpConnection = + new AMQPBrokerConnectConfiguration(getTestName(), "tcp://localhost:" + remoteURI.getPort() + "?saslMechanisms=" + XOAUTH2); Review Comment: I implemented it according to the suggestion. -- 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: gitbox-unsubscr...@activemq.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: gitbox-unsubscr...@activemq.apache.org For additional commands, e-mail: gitbox-h...@activemq.apache.org For further information, visit: https://activemq.apache.org/contact