forked from jacek-marchwicki/JavaWebsocketClient
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSocketRealTest.java
More file actions
Latest commit
85 lines (72 loc) · 2.96 KB
/
Copy pathSocketRealTest.java
File metadata and controls
85 lines (72 loc) · 2.96 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
/*
* Copyright (C) 2015 Jacek Marchwicki <jacek.marchwicki@gmail.com>
*
* Licensed 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
*/
packagecom.example;
importcom.appunite.websocket.rx.RxWebSockets;
importcom.appunite.websocket.rx.object.GsonObjectSerializer;
importcom.appunite.websocket.rx.object.RxObjectWebSockets;
importcom.example.model.DataMessage;
importcom.example.model.Message;
importcom.example.model.MessageType;
importcom.google.gson.Gson;
importcom.google.gson.GsonBuilder;
importokhttp3.OkHttpClient;
importokhttp3.Request;
importorg.junit.Before;
importorg.junit.Ignore;
importorg.junit.Test;
importjava.util.logging.Logger;
importrx.Observable;
importrx.Subscription;
importrx.functions.Func1;
importrx.schedulers.Schedulers;
publicclassSocketRealTest {
privateSocketsocket;
@Before
publicvoidsetUp() throwsException {
finalGsongson = newGsonBuilder()
.registerTypeAdapter(Message.class, newMessage.Deserializer())
.registerTypeAdapter(MessageType.class, newMessageType.SerializerDeserializer())
.create();
finalRxWebSocketswebSockets = newRxWebSockets(newOkHttpClient(),
newRequest.Builder()
.get()
.url("ws://10.10.0.2:8080/ws")
.addHeader("Sec-WebSocket-Protocol", "chat")
.build());
finalRxObjectWebSocketsjsonWebSockets = newRxObjectWebSockets(webSockets, newGsonObjectSerializer(gson, Message.class));
finalSocketConnectionsocketConnection = newSocketConnectionImpl(jsonWebSockets, Schedulers.computation());
socket = newSocket(socketConnection, Schedulers.computation());
}
@Test
@Ignore
publicvoidtestName() throwsException {
socket.sendMessageOnceWhenConnected(newFunc1<String, Observable<Object>>() {
@Override
publicObservable<Object> call(StringmessageId) {
returnObservable.<Object>just(newDataMessage(messageId, "some message"));
}
})
.subscribe(LoggingObservables.logging(Logger.getLogger("Rx"), "SendMessage"));
socket.sendPingWhenConnected();
socket.sendPingEvery5seconds();
finalSubscriptionsubscribe = socket.connection()
.subscribeOn(Schedulers.io())
.subscribe();
Thread.sleep(10000);
subscribe.unsubscribe();
Thread.sleep(10000);
}
}