forked from apache/pulsar
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix init WebSocketService with ClusterData (apache#11234)
1. Fix init WebSocketService with ClusterData. 2. Refactor ProxyServiceStarter to be easier for test. 3. Add test case for ProxyServiceStarter.
- Loading branch information
1 parent
ec8afd6
commit 93e145b
Showing
3 changed files
with
470 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
160 changes: 160 additions & 0 deletions
160
pulsar-proxy/src/test/java/org/apache/pulsar/proxy/server/ProxyServiceStarterTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,160 @@ | ||
/** | ||
* 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.pulsar.proxy.server; | ||
|
||
import lombok.Cleanup; | ||
import org.apache.pulsar.broker.auth.MockedPulsarServiceBaseTest; | ||
|
||
import org.apache.pulsar.client.api.Producer; | ||
import org.apache.pulsar.client.api.PulsarClient; | ||
import org.apache.pulsar.common.util.ObjectMapperFactory; | ||
import org.apache.pulsar.websocket.data.ProducerMessage; | ||
import org.eclipse.jetty.client.HttpClient; | ||
import org.eclipse.jetty.util.BufferUtil; | ||
import org.eclipse.jetty.websocket.api.Session; | ||
import org.eclipse.jetty.websocket.api.WebSocketAdapter; | ||
import org.eclipse.jetty.websocket.api.WebSocketPingPongListener; | ||
import org.eclipse.jetty.websocket.api.annotations.WebSocket; | ||
import org.eclipse.jetty.websocket.client.WebSocketClient; | ||
import org.testng.annotations.AfterClass; | ||
import org.testng.annotations.BeforeClass; | ||
import org.testng.annotations.Test; | ||
|
||
import java.net.URI; | ||
import java.nio.ByteBuffer; | ||
import java.util.Base64; | ||
import java.util.Optional; | ||
import java.util.concurrent.ArrayBlockingQueue; | ||
import java.util.concurrent.Future; | ||
|
||
import static org.testng.Assert.assertEquals; | ||
import static org.testng.Assert.assertTrue; | ||
|
||
public class ProxyServiceStarterTest extends MockedPulsarServiceBaseTest { | ||
|
||
@Override | ||
@BeforeClass | ||
protected void setup() throws Exception { | ||
internalSetup(); | ||
String[] args = new String[]{"-c", "./src/test/resources/proxy.conf"}; | ||
ProxyServiceStarter serviceStarter = new ProxyServiceStarter(args); | ||
serviceStarter.getConfig().setBrokerServiceURL(pulsar.getBrokerServiceUrl()); | ||
serviceStarter.getConfig().setBrokerWebServiceURL(pulsar.getWebServiceAddress()); | ||
serviceStarter.getConfig().setServicePort(Optional.of(11000)); | ||
serviceStarter.getConfig().setWebSocketServiceEnabled(true); | ||
serviceStarter.start(); | ||
} | ||
|
||
@Override | ||
@AfterClass(alwaysRun = true) | ||
protected void cleanup() throws Exception { | ||
internalCleanup(); | ||
} | ||
|
||
@Test | ||
public void testEnableWebSocketServer() throws Exception { | ||
HttpClient httpClient = new HttpClient(); | ||
WebSocketClient webSocketClient = new WebSocketClient(httpClient); | ||
webSocketClient.start(); | ||
MyWebSocket myWebSocket = new MyWebSocket(); | ||
String webSocketUri = "ws://localhost:8080/ws/pingpong"; | ||
Future<Session> sessionFuture = webSocketClient.connect(myWebSocket, URI.create(webSocketUri)); | ||
sessionFuture.get().getRemote().sendPing(ByteBuffer.wrap("ping".getBytes())); | ||
assertTrue(myWebSocket.getResponse().contains("ping")); | ||
} | ||
|
||
@Test | ||
public void testProducer() throws Exception { | ||
@Cleanup | ||
PulsarClient client = PulsarClient.builder().serviceUrl("pulsar://localhost:11000") | ||
.build(); | ||
|
||
@Cleanup | ||
Producer<byte[]> producer = client.newProducer() | ||
.topic("persistent://sample/test/local/websocket-topic") | ||
.create(); | ||
|
||
for (int i = 0; i < 10; i++) { | ||
producer.send("test".getBytes()); | ||
} | ||
} | ||
|
||
@Test | ||
public void testProduceAndConsumeMessageWithWebsocket() throws Exception { | ||
HttpClient producerClient = new HttpClient(); | ||
WebSocketClient producerWebSocketClient = new WebSocketClient(producerClient); | ||
producerWebSocketClient.start(); | ||
MyWebSocket producerSocket = new MyWebSocket(); | ||
String produceUri = "ws://localhost:8080/ws/producer/persistent/sample/test/local/websocket-topic"; | ||
Future<Session> producerSession = producerWebSocketClient.connect(producerSocket, URI.create(produceUri)); | ||
|
||
ProducerMessage produceRequest = new ProducerMessage(); | ||
produceRequest.setContext("context"); | ||
produceRequest.setPayload(Base64.getEncoder().encodeToString("my payload".getBytes())); | ||
|
||
HttpClient consumerClient = new HttpClient(); | ||
WebSocketClient consumerWebSocketClient = new WebSocketClient(consumerClient); | ||
consumerWebSocketClient.start(); | ||
MyWebSocket consumerSocket = new MyWebSocket(); | ||
String consumeUri = "ws://localhost:8080/ws/consumer/persistent/sample/test/local/websocket-topic/my-sub"; | ||
Future<Session> consumerSession = consumerWebSocketClient.connect(consumerSocket, URI.create(consumeUri)); | ||
consumerSession.get().getRemote().sendPing(ByteBuffer.wrap("ping".getBytes())); | ||
producerSession.get().getRemote().sendString(ObjectMapperFactory.getThreadLocal().writeValueAsString(produceRequest)); | ||
assertTrue(consumerSocket.getResponse().contains("ping")); | ||
ProducerMessage message = ObjectMapperFactory.getThreadLocal().readValue(consumerSocket.getResponse(), ProducerMessage.class); | ||
assertEquals(new String(Base64.getDecoder().decode(message.getPayload())), "my payload"); | ||
} | ||
|
||
@WebSocket | ||
public static class MyWebSocket extends WebSocketAdapter implements WebSocketPingPongListener { | ||
|
||
ArrayBlockingQueue<String> incomingMessages = new ArrayBlockingQueue<>(10); | ||
|
||
@Override | ||
public void onWebSocketText(String message) { | ||
incomingMessages.add(message); | ||
} | ||
|
||
@Override | ||
public void onWebSocketClose(int i, String s) { | ||
} | ||
|
||
@Override | ||
public void onWebSocketConnect(Session session) { | ||
} | ||
|
||
@Override | ||
public void onWebSocketError(Throwable throwable) { | ||
} | ||
|
||
@Override | ||
public void onWebSocketPing(ByteBuffer payload) { | ||
} | ||
|
||
@Override | ||
public void onWebSocketPong(ByteBuffer payload) { | ||
incomingMessages.add(BufferUtil.toDetailString(payload)); | ||
} | ||
|
||
public String getResponse() throws InterruptedException { | ||
return incomingMessages.take(); | ||
} | ||
} | ||
|
||
} |
Oops, something went wrong.