forked from devendram/java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPubnubTest.java
More file actions
565 lines (430 loc) · 15.9 KB
/
Copy pathPubnubTest.java
File metadata and controls
565 lines (430 loc) · 15.9 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
package com.pubnub.api;
import static org.junit.Assert.*;
import java.util.Hashtable;
import java.util.concurrent.CountDownLatch;
import java.util.concurrent.TimeUnit;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
import org.junit.Test;
public class PubnubTest {
class SubscribeCallback extends Callback {
private CountDownLatch latch;
private Object response;
public SubscribeCallback(CountDownLatch latch) {
this.latch = latch;
}
public SubscribeCallback() {
}
public Object getResponse() {
return response;
}
@Override
public void successCallback(String channel, Object message) {
response = message;
if (latch != null) latch.countDown();
}
@Override
public void errorCallback(String channel, Object message) {
response = message;
if (latch != null) latch.countDown();
}
}
class PublishCallback extends Callback {
private CountDownLatch latch;
private int result = 0;
public int getResult() {
return result;
}
public PublishCallback(CountDownLatch latch) {
this.latch = latch;
}
public PublishCallback() {
}
public void successCallback(String channel, Object message) {
JSONArray jsarr;
try {
jsarr = (JSONArray)message;
result = (Integer) jsarr.get(0);
} catch (JSONException e) {
e.printStackTrace();
}
if (latch != null) latch.countDown();
}
public void errorCallback(String channel, Object message) {
JSONArray jsarr;
try {
jsarr = new JSONArray(message);
System.out.println(message.toString());
result = (Integer) jsarr.get(0);
} catch (JSONException e) {
e.printStackTrace();
}
if (latch != null) latch.countDown();
}
}
class HereNowCallback extends Callback {
private int occupancy;
private String[] uuids;
private CountDownLatch latch;
public int getOccupancy() {
return occupancy;
}
public HereNowCallback(CountDownLatch latch) {
this.latch = latch;
}
public HereNowCallback() {
}
@Override
public void successCallback(String channel, Object message) {
JSONObject resp = null;
try {
resp = new JSONObject(message.toString());
} catch (JSONException e1) {
e1.printStackTrace();
}
if (resp != null) {
try {
occupancy = (Integer) resp.get("occupancy");
} catch (JSONException e) {
e.printStackTrace();
}
}
if (latch != null) latch.countDown();
}
@Override
public void errorCallback(String channel, Object message) {
if (latch != null) latch.countDown();
}
}
class PresenceCallback extends Callback {
private String uuid;
private CountDownLatch latch;
public String getUUID() {
return uuid;
}
public PresenceCallback(CountDownLatch latch) {
this.latch = latch;
}
public PresenceCallback() {
}
@Override
public void successCallback(String channel, Object message) {
JSONObject resp = null;
try {
resp = new JSONObject(message.toString());
} catch (JSONException e1) {
e1.printStackTrace();
}
if (resp != null) {
try {
uuid = (String) resp.get("uuid");
} catch (JSONException e) {
e.printStackTrace();
}
}
if (latch != null) latch.countDown();
}
@Override
public void errorCallback(String channel, Object message) {
if (latch != null) latch.countDown();
}
}
class HistoryCallback extends Callback {
private int count;
private String[] uuids;
private CountDownLatch latch;
public int getCount() {
return count;
}
public HistoryCallback(CountDownLatch latch) {
this.latch = latch;
}
public HistoryCallback() {
}
@Override
public void successCallback(String channel, Object message) {
JSONArray resp = null;
try {
resp = (new JSONArray(message.toString())).getJSONArray(0);
} catch (JSONException e1) {
e1.printStackTrace();
}
if (resp != null) {
count = resp.length();
}
if (latch != null) latch.countDown();
}
@Override
public void errorCallback(String channel, Object message) {
if (latch != null) latch.countDown();
}
}
Pubnub pubnub = new Pubnub("demo", "demo");
Pubnub pubnub_enc = new Pubnub("demo", "demo", "demo", "demo", false);
String testSuccessMessage = "";
@Test
public void testPublishString() {
String channel = "java-unittest-" + Math.random();
final String sendMessage = "Test Message " + Math.random();
final CountDownLatch latch = new CountDownLatch(2);
final PublishCallback pbCb = new PublishCallback(latch);
SubscribeCallback sbCb = new SubscribeCallback(latch) {
@Override
public void connectCallback(String channel, Object message) {
pubnub.publish(channel, sendMessage, pbCb);
}
};
Hashtable args = new Hashtable();
args.put("channel", channel);
args.put("callback", sbCb);
try {
pubnub.subscribe(args);
} catch (PubnubException e1) {
}
try {
latch.await(5, TimeUnit.SECONDS);
} catch (InterruptedException e) {
}
assertEquals(1, pbCb.getResult());
assertEquals(sendMessage,sbCb.getResponse());
}
@Test
public void testPublishJSONArray() {
String channel = "java-unittest-" + Math.random();
final JSONArray sendMessage = new JSONArray().put(1).put("Test");
final CountDownLatch latch = new CountDownLatch(2);
final PublishCallback pbCb = new PublishCallback(latch);
SubscribeCallback sbCb = new SubscribeCallback(latch) {
@Override
public void connectCallback(String channel, Object message) {
pubnub.publish(channel, sendMessage, pbCb);
}
};
Hashtable args = new Hashtable();
args.put("channel", channel);
args.put("callback", sbCb);
try {
pubnub.subscribe(args);
} catch (PubnubException e1) {
}
try {
latch.await(5, TimeUnit.SECONDS);
} catch (InterruptedException e) {
}
assertEquals(1, pbCb.getResult());
assertEquals(sendMessage.toString(), sbCb.getResponse().toString());
}
@Test
public void testPublishJSONObject() {
String channel = "java-unittest-" + Math.random();
try {
final JSONObject sendMessage;
sendMessage = new JSONObject().put("1", "Test");
final CountDownLatch latch = new CountDownLatch(2);
final PublishCallback pbCb = new PublishCallback(latch);
SubscribeCallback sbCb = new SubscribeCallback(latch) {
@Override
public void connectCallback(String channel, Object message) {
pubnub.publish(channel, sendMessage, pbCb);
}
};
Hashtable args = new Hashtable();
args.put("channel", channel);
args.put("callback", sbCb);
pubnub.subscribe(args);
latch.await(5, TimeUnit.SECONDS);
assertEquals(1, pbCb.getResult());
assertEquals(sendMessage.toString(), sbCb.getResponse().toString());
} catch (Exception e) {
}
}
@Test
public void testPublishStringWithEncryption() {
String channel = "java-unittest-" + Math.random();
final String sendMessage = "Test Message " + Math.random();
final CountDownLatch latch = new CountDownLatch(2);
final PublishCallback pbCb = new PublishCallback(latch);
SubscribeCallback sbCb = new SubscribeCallback(latch) {
@Override
public void connectCallback(String channel, Object message) {
pubnub_enc.publish(channel, sendMessage, pbCb);
}
};
Hashtable args = new Hashtable();
args.put("channel", channel);
args.put("callback", sbCb);
try {
pubnub_enc.subscribe(args);
} catch (PubnubException e1) {
}
try {
latch.await(10, TimeUnit.SECONDS);
} catch (InterruptedException e) {
}
assertEquals(1, pbCb.getResult());
assertEquals(sendMessage,sbCb.getResponse());
}
@Test
public void testPublishJSONArrayWithEncryption() {
String channel = "java-unittest-" + Math.random();
final JSONArray sendMessage = new JSONArray().put(1).put("Test");
final CountDownLatch latch = new CountDownLatch(2);
final PublishCallback pbCb = new PublishCallback(latch);
SubscribeCallback sbCb = new SubscribeCallback(latch) {
@Override
public void connectCallback(String channel, Object message) {
pubnub_enc.publish(channel, sendMessage, pbCb);
}
};
Hashtable args = new Hashtable();
args.put("channel", channel);
args.put("callback", sbCb);
try {
pubnub_enc.subscribe(args);
} catch (PubnubException e1) {
}
try {
latch.await(10, TimeUnit.SECONDS);
} catch (InterruptedException e) {
}
assertEquals(1, pbCb.getResult());
assertEquals(sendMessage.toString(), sbCb.getResponse().toString());
}
@Test
public void testPublishJSONObjectWithEncryption() {
String channel = "java-unittest-" + Math.random();
try {
final JSONObject sendMessage;
sendMessage = new JSONObject().put("1", "Test");
final CountDownLatch latch = new CountDownLatch(2);
final PublishCallback pbCb = new PublishCallback(latch);
SubscribeCallback sbCb = new SubscribeCallback(latch) {
@Override
public void connectCallback(String channel, Object message) {
pubnub_enc.publish(channel, sendMessage, pbCb);
}
};
Hashtable args = new Hashtable();
args.put("channel", channel);
args.put("callback", sbCb);
pubnub_enc.subscribe(args);
latch.await(10, TimeUnit.SECONDS);
assertEquals(1, pbCb.getResult());
assertEquals(sendMessage.toString(), sbCb.getResponse().toString());
} catch (Exception e) {
}
}
@Test
public void testHereNowOneUser() {
String channel = "java-unittest-" + Math.random();
try {
final JSONObject sendMessage;
sendMessage = new JSONObject().put("1", "Test");
final CountDownLatch latch = new CountDownLatch(2);
final HereNowCallback hnCb = new HereNowCallback(latch);
SubscribeCallback sbCb = new SubscribeCallback(latch) {
@Override
public void connectCallback(String channel, Object message) {
try {
Thread.sleep(5000);
} catch (InterruptedException e) {
}
pubnub.hereNow(channel, hnCb);
pubnub.unsubscribe(channel);
if (latch != null) latch.countDown();
}
};
Hashtable args = new Hashtable();
args.put("channel", channel);
args.put("callback", sbCb);
pubnub.subscribe(args);
latch.await(10, TimeUnit.SECONDS);
assertEquals(1, hnCb.getOccupancy());
} catch (Exception e) {
}
}
@Test
public void testHistoryCountOne() {
String channel = "java-unittest-" + Math.random();
final String sendMessage = "Test Message " + Math.random();
final CountDownLatch latch = new CountDownLatch(3);
final int limit = 1;
final HistoryCallback hCb = new HistoryCallback(latch);
pubnub.publish(channel, sendMessage, new PublishCallback(latch){
@Override
public void successCallback(String channel, Object message) {
pubnub.publish(channel, sendMessage, new PublishCallback(latch) {
@Override
public void successCallback(String channel, Object message) {
try {
Thread.sleep(5000);
} catch (InterruptedException e) {
e.printStackTrace();
}
pubnub.detailedHistory(channel, limit, hCb);
super.successCallback(channel, message);
}
});
super.successCallback(channel, message);
}
});
try {
latch.await(15, TimeUnit.SECONDS);
} catch (InterruptedException e) {
e.printStackTrace();
}
assertEquals(limit, hCb.getCount());
}
@Test
public void testHistory() {
String channel = "java-unittest-" + Math.random();
final String sendMessage = "Test Message " + Math.random();
final CountDownLatch latch = new CountDownLatch(3);
final HistoryCallback hCb = new HistoryCallback(latch);
pubnub.publish(channel, sendMessage, new PublishCallback(latch){
@Override
public void successCallback(String channel, Object message) {
pubnub.publish(channel, sendMessage, new PublishCallback(latch) {
@Override
public void successCallback(String channel, Object message) {
try {
Thread.sleep(5000);
} catch (InterruptedException e) {
e.printStackTrace();
}
pubnub.detailedHistory(channel, 100, hCb);
super.successCallback(channel, message);
}
});
super.successCallback(channel, message);
}
});
try {
latch.await(15, TimeUnit.SECONDS);
} catch (InterruptedException e) {
e.printStackTrace();
}
assertEquals(2, hCb.getCount());
}
@Test
public void testPresence() {
String channel = "java-unittest-" + Math.random();
CountDownLatch latch = new CountDownLatch(2);
PresenceCallback presenceCb = new PresenceCallback(latch);
try {
pubnub.presence(channel, presenceCb);
Pubnub pubnub2 = new Pubnub("demo", "demo");
Hashtable args = new Hashtable();
args.put("channel", channel);
args.put("callback", new SubscribeCallback(latch));
pubnub2.subscribe(args);
latch.await(10, TimeUnit.SECONDS);
assertEquals(pubnub2.UUID, presenceCb.getUUID());
}
catch (Exception e) {
e.printStackTrace();
assertTrue(false);
}
}
}