FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
RxJava/src/test/java/io/reactivex/TestHelper.java at 2.x · hemanthgit/RxJava · GitHub
hemanthgit
/
RxJava
Public
forked from
ReactiveX/RxJava
Notifications
You must be signed in to change notification settings
Fork
0
Star
1
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
RxJava
/
src
/
test
/
java
/
io
/
reactivex
/
TestHelper.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
2655 lines (2151 loc) · 87.2 KB
Breadcrumbs
RxJava
/
src
/
test
/
java
/
io
/
reactivex
/
TestHelper.java
Copy path
File metadata and controls
2655 lines (2151 loc) · 87.2 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/**
* Copyright (c) 2016-present, RxJava Contributors.
*
* 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.
*/
package
io
.
reactivex
;
import
static
org
.
junit
.
Assert
.*;
import
static
org
.
mockito
.
ArgumentMatchers
.
any
;
import
static
org
.
mockito
.
Mockito
.
mock
;
import
java
.
lang
.
reflect
.*;
import
java
.
util
.*;
import
java
.
util
.
concurrent
.*;
import
java
.
util
.
concurrent
.
atomic
.
AtomicInteger
;
import
org
.
mockito
.
Mockito
;
import
org
.
mockito
.
invocation
.
InvocationOnMock
;
import
org
.
mockito
.
stubbing
.
Answer
;
import
org
.
reactivestreams
.*;
import
io
.
reactivex
.
disposables
.*;
import
io
.
reactivex
.
exceptions
.*;
import
io
.
reactivex
.
functions
.*;
import
io
.
reactivex
.
internal
.
functions
.
ObjectHelper
;
import
io
.
reactivex
.
internal
.
fuseable
.*;
import
io
.
reactivex
.
internal
.
operators
.
completable
.
CompletableToFlowable
;
import
io
.
reactivex
.
internal
.
operators
.
maybe
.
MaybeToFlowable
;
import
io
.
reactivex
.
internal
.
operators
.
single
.
SingleToFlowable
;
import
io
.
reactivex
.
internal
.
subscriptions
.
BooleanSubscription
;
import
io
.
reactivex
.
internal
.
util
.
ExceptionHelper
;
import
io
.
reactivex
.
observers
.
TestObserver
;
import
io
.
reactivex
.
parallel
.
ParallelFlowable
;
import
io
.
reactivex
.
plugins
.
RxJavaPlugins
;
import
io
.
reactivex
.
processors
.
PublishProcessor
;
import
io
.
reactivex
.
schedulers
.
Schedulers
;
import
io
.
reactivex
.
subjects
.
Subject
;
import
io
.
reactivex
.
subscribers
.
TestSubscriber
;
/**
* Common methods for helping with tests from 1.x mostly.
*/
public
enum
TestHelper
{
;
/**
* Mocks a subscriber and prepares it to request Long.MAX_VALUE.
* @param <T> the value type
* @return the mocked subscriber
*/
@
SuppressWarnings
(
"unchecked"
)
public
static
<
T
>
FlowableSubscriber
<
T
>
mockSubscriber
() {
FlowableSubscriber
<
T
>
w
=
mock
(
FlowableSubscriber
.
class
);
Mockito
.
doAnswer
(
new
Answer
<
Object
>() {
@
Override
public
Object
answer
(
InvocationOnMock
a
)
throws
Throwable
{
Subscription
s
=
a
.
getArgument
(
0
);
s
.
request
(
Long
.
MAX_VALUE
);
return
null
;
}
}).
when
(
w
).
onSubscribe
((
Subscription
)
any
());
return
w
;
}
/**
* Mocks an Observer with the proper receiver type.
* @param <T> the value type
* @return the mocked observer
*/
@
SuppressWarnings
(
"unchecked"
)
public
static
<
T
>
Observer
<
T
>
mockObserver
() {
return
mock
(
Observer
.
class
);
}
/**
* Mocks an MaybeObserver with the proper receiver type.
* @param <T> the value type
* @return the mocked observer
*/
@
SuppressWarnings
(
"unchecked"
)
public
static
<
T
>
MaybeObserver
<
T
>
mockMaybeObserver
() {
return
mock
(
MaybeObserver
.
class
);
}
/**
* Mocks an SingleObserver with the proper receiver type.
* @param <T> the value type
* @return the mocked observer
*/
@
SuppressWarnings
(
"unchecked"
)
public
static
<
T
>
SingleObserver
<
T
>
mockSingleObserver
() {
return
mock
(
SingleObserver
.
class
);
}
/**
* Mocks an CompletableObserver.
* @return the mocked observer
*/
public
static
CompletableObserver
mockCompletableObserver
() {
return
mock
(
CompletableObserver
.
class
);
}
/**
* Validates that the given class, when forcefully instantiated throws
* an IllegalArgumentException("No instances!") exception.
* @param clazz the class to test, not null
*/
public
static
void
checkUtilityClass
(
Class
<?>
clazz
) {
try
{
Constructor
<?>
c
=
clazz
.
getDeclaredConstructor
();
c
.
setAccessible
(
true
);
try
{
c
.
newInstance
();
fail
(
"Should have thrown InvocationTargetException(IllegalStateException)"
);
}
catch
(
InvocationTargetException
ex
) {
assertEquals
(
"No instances!"
,
ex
.
getCause
().
getMessage
());
}
}
catch
(
Exception
ex
) {
AssertionError
ae
=
new
AssertionError
(
ex
.
toString
());
ae
.
initCause
(
ex
);
throw
ae
;
}
}
public
static
List
<
Throwable
>
trackPluginErrors
() {
final
List
<
Throwable
>
list
=
Collections
.
synchronizedList
(
new
ArrayList
<
Throwable
>());
RxJavaPlugins
.
setErrorHandler
(
new
Consumer
<
Throwable
>() {
@
Override
public
void
accept
(
Throwable
t
) {
list
.
add
(
t
);
}
});
return
list
;
}
public
static
void
assertError
(
List
<
Throwable
>
list
,
int
index
,
Class
<?
extends
Throwable
>
clazz
) {
Throwable
ex
=
list
.
get
(
index
);
if
(!
clazz
.
isInstance
(
ex
)) {
AssertionError
err
=
new
AssertionError
(
clazz
+
" expected but got "
+
list
.
get
(
index
));
err
.
initCause
(
list
.
get
(
index
));
throw
err
;
}
}
public
static
void
assertUndeliverable
(
List
<
Throwable
>
list
,
int
index
,
Class
<?
extends
Throwable
>
clazz
) {
Throwable
ex
=
list
.
get
(
index
);
if
(!(
ex
instanceof
UndeliverableException
)) {
AssertionError
err
=
new
AssertionError
(
"Outer exception UndeliverableException expected but got "
+
list
.
get
(
index
));
err
.
initCause
(
list
.
get
(
index
));
throw
err
;
}
ex
=
ex
.
getCause
();
if
(!
clazz
.
isInstance
(
ex
)) {
AssertionError
err
=
new
AssertionError
(
"Inner exception "
+
clazz
+
" expected but got "
+
list
.
get
(
index
));
err
.
initCause
(
list
.
get
(
index
));
throw
err
;
}
}
public
static
void
assertError
(
List
<
Throwable
>
list
,
int
index
,
Class
<?
extends
Throwable
>
clazz
,
String
message
) {
Throwable
ex
=
list
.
get
(
index
);
if
(!
clazz
.
isInstance
(
ex
)) {
AssertionError
err
=
new
AssertionError
(
"Type "
+
clazz
+
" expected but got "
+
ex
);
err
.
initCause
(
ex
);
throw
err
;
}
if
(!
ObjectHelper
.
equals
(
message
,
ex
.
getMessage
())) {
AssertionError
err
=
new
AssertionError
(
"Message "
+
message
+
" expected but got "
+
ex
.
getMessage
());
err
.
initCause
(
ex
);
throw
err
;
}
}
public
static
void
assertUndeliverable
(
List
<
Throwable
>
list
,
int
index
,
Class
<?
extends
Throwable
>
clazz
,
String
message
) {
Throwable
ex
=
list
.
get
(
index
);
if
(!(
ex
instanceof
UndeliverableException
)) {
AssertionError
err
=
new
AssertionError
(
"Outer exception UndeliverableException expected but got "
+
list
.
get
(
index
));
err
.
initCause
(
list
.
get
(
index
));
throw
err
;
}
ex
=
ex
.
getCause
();
if
(!
clazz
.
isInstance
(
ex
)) {
AssertionError
err
=
new
AssertionError
(
"Inner exception "
+
clazz
+
" expected but got "
+
list
.
get
(
index
));
err
.
initCause
(
list
.
get
(
index
));
throw
err
;
}
if
(!
ObjectHelper
.
equals
(
message
,
ex
.
getMessage
())) {
AssertionError
err
=
new
AssertionError
(
"Message "
+
message
+
" expected but got "
+
ex
.
getMessage
());
err
.
initCause
(
ex
);
throw
err
;
}
}
public
static
void
assertError
(
TestObserver
<?>
ts
,
int
index
,
Class
<?
extends
Throwable
>
clazz
) {
Throwable
ex
=
ts
.
errors
().
get
(
0
);
try
{
if
(
ex
instanceof
CompositeException
) {
CompositeException
ce
= (
CompositeException
)
ex
;
List
<
Throwable
>
cel
=
ce
.
getExceptions
();
assertTrue
(
cel
.
get
(
index
).
toString
(),
clazz
.
isInstance
(
cel
.
get
(
index
)));
}
else
{
fail
(
ex
.
toString
() +
": not a CompositeException"
);
}
}
catch
(
AssertionError
e
) {
ex
.
printStackTrace
();
throw
e
;
}
}
public
static
void
assertError
(
TestSubscriber
<?>
ts
,
int
index
,
Class
<?
extends
Throwable
>
clazz
) {
Throwable
ex
=
ts
.
errors
().
get
(
0
);
if
(
ex
instanceof
CompositeException
) {
CompositeException
ce
= (
CompositeException
)
ex
;
List
<
Throwable
>
cel
=
ce
.
getExceptions
();
assertTrue
(
cel
.
get
(
index
).
toString
(),
clazz
.
isInstance
(
cel
.
get
(
index
)));
}
else
{
fail
(
ex
.
toString
() +
": not a CompositeException"
);
}
}
public
static
void
assertError
(
TestObserver
<?>
ts
,
int
index
,
Class
<?
extends
Throwable
>
clazz
,
String
message
) {
Throwable
ex
=
ts
.
errors
().
get
(
0
);
if
(
ex
instanceof
CompositeException
) {
CompositeException
ce
= (
CompositeException
)
ex
;
List
<
Throwable
>
cel
=
ce
.
getExceptions
();
assertTrue
(
cel
.
get
(
index
).
toString
(),
clazz
.
isInstance
(
cel
.
get
(
index
)));
assertEquals
(
message
,
cel
.
get
(
index
).
getMessage
());
}
else
{
fail
(
ex
.
toString
() +
": not a CompositeException"
);
}
}
public
static
void
assertError
(
TestSubscriber
<?>
ts
,
int
index
,
Class
<?
extends
Throwable
>
clazz
,
String
message
) {
Throwable
ex
=
ts
.
errors
().
get
(
0
);
if
(
ex
instanceof
CompositeException
) {
CompositeException
ce
= (
CompositeException
)
ex
;
List
<
Throwable
>
cel
=
ce
.
getExceptions
();
assertTrue
(
cel
.
get
(
index
).
toString
(),
clazz
.
isInstance
(
cel
.
get
(
index
)));
assertEquals
(
message
,
cel
.
get
(
index
).
getMessage
());
}
else
{
fail
(
ex
.
toString
() +
": not a CompositeException"
);
}
}
/**
* Verify that a specific enum type has no enum constants.
* @param <E> the enum type
* @param e the enum class instance
*/
public
static
<
E
extends
Enum
<
E
>>
void
assertEmptyEnum
(
Class
<
E
>
e
) {
assertEquals
(
0
,
e
.
getEnumConstants
().
length
);
try
{
try
{
Method
m0
=
e
.
getDeclaredMethod
(
"values"
);
Object
[]
a
= (
Object
[])
m0
.
invoke
(
null
);
assertEquals
(
0
,
a
.
length
);
Method
m
=
e
.
getDeclaredMethod
(
"valueOf"
,
String
.
class
);
m
.
invoke
(
"INSTANCE"
);
fail
(
"Should have thrown!"
);
}
catch
(
InvocationTargetException
ex
) {
fail
(
ex
.
toString
());
}
catch
(
IllegalAccessException
ex
) {
fail
(
ex
.
toString
());
}
catch
(
IllegalArgumentException
ex
) {
// we expected this
}
}
catch
(
NoSuchMethodException
ex
) {
fail
(
ex
.
toString
());
}
}
/**
* Assert that by consuming the Publisher with a bad request amount, it is
* reported to the plugin error handler promptly.
* @param source the source to consume
*/
public
static
void
assertBadRequestReported
(
Publisher
<?>
source
) {
List
<
Throwable
>
list
=
trackPluginErrors
();
try
{
final
CountDownLatch
cdl
=
new
CountDownLatch
(
1
);
source
.
subscribe
(
new
FlowableSubscriber
<
Object
>() {
@
Override
public
void
onSubscribe
(
Subscription
s
) {
try
{
s
.
request
(-
99
);
s
.
cancel
();
s
.
cancel
();
}
finally
{
cdl
.
countDown
();
}
}
@
Override
public
void
onNext
(
Object
t
) {
}
@
Override
public
void
onError
(
Throwable
t
) {
}
@
Override
public
void
onComplete
() {
}
});
try
{
assertTrue
(
cdl
.
await
(
5
,
TimeUnit
.
SECONDS
));
}
catch
(
InterruptedException
ex
) {
throw
new
AssertionError
(
ex
.
getMessage
());
}
assertTrue
(
list
.
toString
(),
list
.
get
(
0
)
instanceof
IllegalArgumentException
);
assertEquals
(
"n > 0 required but it was -99"
,
list
.
get
(
0
).
getMessage
());
}
finally
{
RxJavaPlugins
.
setErrorHandler
(
null
);
}
}
/**
* Synchronizes the execution of two runnables (as much as possible)
* to test race conditions.
* <p>The method blocks until both have run to completion.
* @param r1 the first runnable
* @param r2 the second runnable
*/
public
static
void
race
(
final
Runnable
r1
,
final
Runnable
r2
) {
race
(
r1
,
r2
,
Schedulers
.
single
());
}
/**
* Synchronizes the execution of two runnables (as much as possible)
* to test race conditions.
* <p>The method blocks until both have run to completion.
* @param r1 the first runnable
* @param r2 the second runnable
* @param s the scheduler to use
*/
public
static
void
race
(
final
Runnable
r1
,
final
Runnable
r2
,
Scheduler
s
) {
final
AtomicInteger
count
=
new
AtomicInteger
(
2
);
final
CountDownLatch
cdl
=
new
CountDownLatch
(
2
);
final
Throwable
[]
errors
= {
null
,
null
};
s
.
scheduleDirect
(
new
Runnable
() {
@
Override
public
void
run
() {
if
(
count
.
decrementAndGet
() !=
0
) {
while
(
count
.
get
() !=
0
) { }
}
try
{
try
{
r1
.
run
();
}
catch
(
Throwable
ex
) {
errors
[
0
] =
ex
;
}
}
finally
{
cdl
.
countDown
();
}
}
});
if
(
count
.
decrementAndGet
() !=
0
) {
while
(
count
.
get
() !=
0
) { }
}
try
{
try
{
r2
.
run
();
}
catch
(
Throwable
ex
) {
errors
[
1
] =
ex
;
}
}
finally
{
cdl
.
countDown
();
}
try
{
if
(!
cdl
.
await
(
5
,
TimeUnit
.
SECONDS
)) {
throw
new
AssertionError
(
"The wait timed out!"
);
}
}
catch
(
InterruptedException
ex
) {
throw
new
RuntimeException
(
ex
);
}
if
(
errors
[
0
] !=
null
&&
errors
[
1
] ==
null
) {
throw
ExceptionHelper
.
wrapOrThrow
(
errors
[
0
]);
}
if
(
errors
[
0
] ==
null
&&
errors
[
1
] !=
null
) {
throw
ExceptionHelper
.
wrapOrThrow
(
errors
[
1
]);
}
if
(
errors
[
0
] !=
null
&&
errors
[
1
] !=
null
) {
throw
new
CompositeException
(
errors
);
}
}
/**
* Cast the given Throwable to CompositeException and returns its inner
* Throwable list.
* @param ex the target Throwable
* @return the list of Throwables
*/
public
static
List
<
Throwable
>
compositeList
(
Throwable
ex
) {
if
(
ex
instanceof
UndeliverableException
) {
ex
=
ex
.
getCause
();
}
return
((
CompositeException
)
ex
).
getExceptions
();
}
/**
* Assert that the offer methods throw UnsupportedOperationExcetpion.
* @param q the queue implementation
*/
public
static
void
assertNoOffer
(
SimpleQueue
<?>
q
) {
try
{
q
.
offer
(
null
);
fail
(
"Should have thrown!"
);
}
catch
(
UnsupportedOperationException
ex
) {
// expected
}
try
{
q
.
offer
(
null
,
null
);
fail
(
"Should have thrown!"
);
}
catch
(
UnsupportedOperationException
ex
) {
// expected
}
}
@
SuppressWarnings
(
"unchecked"
)
public
static
<
E
extends
Enum
<
E
>>
void
checkEnum
(
Class
<
E
>
enumClass
) {
try
{
Method
m
=
enumClass
.
getMethod
(
"values"
);
m
.
setAccessible
(
true
);
Method
e
=
enumClass
.
getMethod
(
"valueOf"
,
String
.
class
);
m
.
setAccessible
(
true
);
for
(
Enum
<
E
>
o
: (
Enum
<
E
>[])
m
.
invoke
(
null
)) {
assertSame
(
o
,
e
.
invoke
(
null
,
o
.
name
()));
}
}
catch
(
Throwable
ex
) {
throw
ExceptionHelper
.
wrapOrThrow
(
ex
);
}
}
/**
* Returns an Consumer that asserts the TestSubscriber has exaclty one value + completed
* normally and that single value is not the value specified.
* @param <T> the value type
* @param value the value not expected
* @return the consumer
*/
public
static
<
T
>
Consumer
<
TestSubscriber
<
T
>>
subscriberSingleNot
(
final
T
value
) {
return
new
Consumer
<
TestSubscriber
<
T
>>() {
@
Override
public
void
accept
(
TestSubscriber
<
T
>
ts
)
throws
Exception
{
ts
.
assertSubscribed
()
.
assertValueCount
(
1
)
.
assertNoErrors
()
.
assertComplete
();
T
v
=
ts
.
values
().
get
(
0
);
assertNotEquals
(
value
,
v
);
}
};
}
/**
* Returns an Consumer that asserts the TestObserver has exaclty one value + completed
* normally and that single value is not the value specified.
* @param <T> the value type
* @param value the value not expected
* @return the consumer
*/
public
static
<
T
>
Consumer
<
TestObserver
<
T
>>
observerSingleNot
(
final
T
value
) {
return
new
Consumer
<
TestObserver
<
T
>>() {
@
Override
public
void
accept
(
TestObserver
<
T
>
ts
)
throws
Exception
{
ts
.
assertSubscribed
()
.
assertValueCount
(
1
)
.
assertNoErrors
()
.
assertComplete
();
T
v
=
ts
.
values
().
get
(
0
);
assertNotEquals
(
value
,
v
);
}
};
}
/**
* Calls onSubscribe twice and checks if it doesn't affect the first Subscription while
* reporting it to plugin error handler.
* @param subscriber the target
*/
public
static
void
doubleOnSubscribe
(
Subscriber
<?>
subscriber
) {
List
<
Throwable
>
errors
=
trackPluginErrors
();
try
{
BooleanSubscription
s1
=
new
BooleanSubscription
();
subscriber
.
onSubscribe
(
s1
);
BooleanSubscription
s2
=
new
BooleanSubscription
();
subscriber
.
onSubscribe
(
s2
);
assertFalse
(
s1
.
isCancelled
());
assertTrue
(
s2
.
isCancelled
());
assertError
(
errors
,
0
,
IllegalStateException
.
class
,
"Subscription already set!"
);
}
finally
{
RxJavaPlugins
.
reset
();
}
}
/**
* Calls onSubscribe twice and checks if it doesn't affect the first Disposable while
* reporting it to plugin error handler.
* @param subscriber the target
*/
public
static
void
doubleOnSubscribe
(
Observer
<?>
subscriber
) {
List
<
Throwable
>
errors
=
trackPluginErrors
();
try
{
Disposable
d1
=
Disposables
.
empty
();
subscriber
.
onSubscribe
(
d1
);
Disposable
d2
=
Disposables
.
empty
();
subscriber
.
onSubscribe
(
d2
);
assertFalse
(
d1
.
isDisposed
());
assertTrue
(
d2
.
isDisposed
());
assertError
(
errors
,
0
,
IllegalStateException
.
class
,
"Disposable already set!"
);
}
finally
{
RxJavaPlugins
.
reset
();
}
}
/**
* Calls onSubscribe twice and checks if it doesn't affect the first Disposable while
* reporting it to plugin error handler.
* @param subscriber the target
*/
public
static
void
doubleOnSubscribe
(
SingleObserver
<?>
subscriber
) {
List
<
Throwable
>
errors
=
trackPluginErrors
();
try
{
Disposable
d1
=
Disposables
.
empty
();
subscriber
.
onSubscribe
(
d1
);
Disposable
d2
=
Disposables
.
empty
();
subscriber
.
onSubscribe
(
d2
);
assertFalse
(
d1
.
isDisposed
());
assertTrue
(
d2
.
isDisposed
());
assertError
(
errors
,
0
,
IllegalStateException
.
class
,
"Disposable already set!"
);
}
finally
{
RxJavaPlugins
.
reset
();
}
}
/**
* Calls onSubscribe twice and checks if it doesn't affect the first Disposable while
* reporting it to plugin error handler.
* @param subscriber the target
*/
public
static
void
doubleOnSubscribe
(
CompletableObserver
subscriber
) {
List
<
Throwable
>
errors
=
trackPluginErrors
();
try
{
Disposable
d1
=
Disposables
.
empty
();
subscriber
.
onSubscribe
(
d1
);
Disposable
d2
=
Disposables
.
empty
();
subscriber
.
onSubscribe
(
d2
);
assertFalse
(
d1
.
isDisposed
());
assertTrue
(
d2
.
isDisposed
());
assertError
(
errors
,
0
,
IllegalStateException
.
class
,
"Disposable already set!"
);
}
finally
{
RxJavaPlugins
.
reset
();
}
}
/**
* Calls onSubscribe twice and checks if it doesn't affect the first Disposable while
* reporting it to plugin error handler.
* @param subscriber the target
*/
public
static
void
doubleOnSubscribe
(
MaybeObserver
<?>
subscriber
) {
List
<
Throwable
>
errors
=
trackPluginErrors
();
try
{
Disposable
d1
=
Disposables
.
empty
();
subscriber
.
onSubscribe
(
d1
);
Disposable
d2
=
Disposables
.
empty
();
subscriber
.
onSubscribe
(
d2
);
assertFalse
(
d1
.
isDisposed
());
assertTrue
(
d2
.
isDisposed
());
assertError
(
errors
,
0
,
IllegalStateException
.
class
,
"Disposable already set!"
);
}
finally
{
RxJavaPlugins
.
reset
();
}
}
/**
* Checks if the upstream's Subscription sent through the onSubscribe reports
* isCancelled properly before and after calling dispose.
* @param <T> the input value type
* @param source the source to test
*/
public
static
<
T
>
void
checkDisposed
(
Flowable
<
T
>
source
) {
final
TestSubscriber
<
Object
>
ts
=
new
TestSubscriber
<
Object
>(
0L
);
source
.
subscribe
(
new
FlowableSubscriber
<
Object
>() {
@
Override
public
void
onSubscribe
(
Subscription
s
) {
ts
.
onSubscribe
(
new
BooleanSubscription
());
s
.
cancel
();
s
.
cancel
();
}
@
Override
public
void
onNext
(
Object
t
) {
ts
.
onNext
(
t
);
}
@
Override
public
void
onError
(
Throwable
t
) {
ts
.
onError
(
t
);
}
@
Override
public
void
onComplete
() {
ts
.
onComplete
();
}
});
ts
.
assertEmpty
();
}
/**
* Checks if the upstream's Disposable sent through the onSubscribe reports
* isDisposed properly before and after calling dispose.
* @param source the source to test
*/
public
static
void
checkDisposed
(
Maybe
<?>
source
) {
final
Boolean
[]
b
= {
null
,
null
};
final
CountDownLatch
cdl
=
new
CountDownLatch
(
1
);
source
.
subscribe
(
new
MaybeObserver
<
Object
>() {
@
Override
public
void
onSubscribe
(
Disposable
d
) {
try
{
b
[
0
] =
d
.
isDisposed
();
d
.
dispose
();
b
[
1
] =
d
.
isDisposed
();
d
.
dispose
();
}
finally
{
cdl
.
countDown
();
}
}
@
Override
public
void
onSuccess
(
Object
value
) {
// ignored
}
@
Override
public
void
onError
(
Throwable
e
) {
// ignored
}
@
Override
public
void
onComplete
() {
// ignored
}
});
try
{
assertTrue
(
"Timed out"
,
cdl
.
await
(
5
,
TimeUnit
.
SECONDS
));
}
catch
(
InterruptedException
ex
) {
throw
ExceptionHelper
.
wrapOrThrow
(
ex
);
}
assertEquals
(
"Reports disposed upfront?"
,
false
,
b
[
0
]);
assertEquals
(
"Didn't report disposed after?"
,
true
,
b
[
1
]);
}
/**
* Checks if the upstream's Disposable sent through the onSubscribe reports
* isDisposed properly before and after calling dispose.
* @param source the source to test
*/
public
static
void
checkDisposed
(
Observable
<?>
source
) {
final
Boolean
[]
b
= {
null
,
null
};
final
CountDownLatch
cdl
=
new
CountDownLatch
(
1
);
source
.
subscribe
(
new
Observer
<
Object
>() {
@
Override
public
void
onSubscribe
(
Disposable
d
) {
try
{
b
[
0
] =
d
.
isDisposed
();
d
.
dispose
();
b
[
1
] =
d
.
isDisposed
();
d
.
dispose
();
}
finally
{
cdl
.
countDown
();
}
}
@
Override
public
void
onNext
(
Object
value
) {
// ignored
}
@
Override
public
void
onError
(
Throwable
e
) {
// ignored
}
@
Override
public
void
onComplete
() {
// ignored
}
});
try
{
assertTrue
(
"Timed out"
,
cdl
.
await
(
5
,
TimeUnit
.
SECONDS
));
}
catch
(
InterruptedException
ex
) {
throw
ExceptionHelper
.
wrapOrThrow
(
ex
);
}
assertEquals
(
"Reports disposed upfront?"
,
false
,
b
[
0
]);
assertEquals
(
"Didn't report disposed after?"
,
true
,
b
[
1
]);
}
/**
* Checks if the upstream's Disposable sent through the onSubscribe reports
* isDisposed properly before and after calling dispose.
* @param source the source to test
*/
public
static
void
checkDisposed
(
Single
<?>
source
) {
final
Boolean
[]
b
= {
null
,
null
};
final
CountDownLatch
cdl
=
new
CountDownLatch
(
1
);
source
.
subscribe
(
new
SingleObserver
<
Object
>() {
@
Override
public
void
onSubscribe
(
Disposable
d
) {
try
{
b
[
0
] =
d
.
isDisposed
();
d
.
dispose
();
b
[
1
] =
d
.
isDisposed
();
d
.
dispose
();
}
finally
{
cdl
.
countDown
();
}
}
@
Override
public
void
onSuccess
(
Object
value
) {
// ignored
}
@
Override
public
void
onError
(
Throwable
e
) {
// ignored
}
});
try
{
assertTrue
(
"Timed out"
,
cdl
.
await
(
5
,
TimeUnit
.
SECONDS
));
}
catch
(
InterruptedException
ex
) {
throw
ExceptionHelper
.
wrapOrThrow
(
ex
);
}
assertEquals
(
"Reports disposed upfront?"
,
false
,
b
[
0
]);
assertEquals
(
"Didn't report disposed after?"
,
true
,
b
[
1
]);
}
/**
* Checks if the upstream's Disposable sent through the onSubscribe reports
* isDisposed properly before and after calling dispose.
* @param source the source to test
*/
public
static
void
checkDisposed
(
Completable
source
) {
final
Boolean
[]
b
= {
null
,
null
};
final
CountDownLatch
cdl
=
new
CountDownLatch
(
1
);
source
.
subscribe
(
new
CompletableObserver
() {
@
Override
public
void
onSubscribe
(
Disposable
d
) {
try
{
b
[
0
] =
d
.
isDisposed
();
d
.
dispose
();
b
[
1
] =
d
.
isDisposed
();
d
.
dispose
();
}
finally
{
cdl
.
countDown
();
}
}
@
Override
public
void
onError
(
Throwable
e
) {
// ignored
}
@
Override
public
void
onComplete
() {
// ignored
}
});
try
{
assertTrue
(
"Timed out"
,
cdl
.
await
(
5
,
TimeUnit
.
SECONDS
));
}
catch
(
InterruptedException
ex
) {
throw
ExceptionHelper
.
wrapOrThrow
(
ex
);
}
assertEquals
(
"Reports disposed upfront?"
,
false
,
b
[
0
]);
assertEquals
(
"Didn't report disposed after?"
,
true
,
b
[
1
]);
}
/**
* Consumer for all base reactive types.
*/
enum
NoOpConsumer
implements
FlowableSubscriber
<
Object
>,
Observer
<
Object
>,
MaybeObserver
<
Object
>,
SingleObserver
<
Object
>,
CompletableObserver
{
INSTANCE
;
@
Override
public
void
onSubscribe
(
Disposable
d
) {
// deliberately no-op
}
@
Override
public
void
onSuccess
(
Object
value
) {
// deliberately no-op
}
@
Override
public
void
onError
(
Throwable
e
) {
// deliberately no-op
}
@
Override
public
void
onComplete
() {
// deliberately no-op
}
@
Override
public
void
onSubscribe
(
Subscription
s
) {
// deliberately no-op
}
@
Override
public
void
onNext
(
Object
t
) {
// deliberately no-op
}
}
/**
* Check if the given transformed reactive type reports multiple onSubscribe calls to
* RxJavaPlugins.
* @param <T> the input value type
* @param <R> the output value type
* @param transform the transform to drive an operator
*/
public
static
<
T
,
R
>
void
checkDoubleOnSubscribeMaybe
(
Function
<
Maybe
<
T
>, ?
extends
MaybeSource
<
R
>>
transform
) {
List
<
Throwable
>
errors
=
trackPluginErrors
();
try
{
final
Boolean
[]
b
= {
null
,
null
};
final
CountDownLatch
cdl
=
new
CountDownLatch
(
1
);
Maybe
<
T
>
source
=
new
Maybe
<
T
>() {
@
Override
protected
void
subscribeActual
(
MaybeObserver
<?
super
T
>
observer
) {
try
{
Disposable
d1
=
Disposables
.
empty
();
observer
.
onSubscribe
(
d1
);
Disposable
d2
=
Disposables
.
empty
();
observer
.
onSubscribe
(
d2
);
b
[
0
] =
d1
.
isDisposed
();
b
[
1
] =
d2
.
isDisposed
();
}
finally
{
cdl
.
countDown
();
}
}
};
MaybeSource
<
R
>
out
=
transform
.
apply
(
source
);
out
.
subscribe
(
NoOpConsumer
.
INSTANCE
);
try
{
assertTrue
(
"Timed out"
,
cdl
.
await
(
5
,
TimeUnit
.
SECONDS
));
}
catch
(
InterruptedException
ex
) {
throw
ExceptionHelper
.
wrapOrThrow
(
ex
);
}
assertEquals
(
"First disposed?"
,
false
,
b
[
0
]);
assertEquals
(
"Second not disposed?"
,
true
,
b
[
1
]);
assertError
(
errors
,
0
,
IllegalStateException
.
class
,
"Disposable already set!"
);
}
catch
(
Throwable
ex
) {
throw
ExceptionHelper
.
wrapOrThrow
(
ex
);
}
finally
{
RxJavaPlugins
.
reset
();
}
}
/**
* Check if the given transformed reactive type reports multiple onSubscribe calls to
* RxJavaPlugins.
* @param <T> the input value type
* @param <R> the output value type
* @param transform the transform to drive an operator
*/
public
static
<
T
,
R
>
void
checkDoubleOnSubscribeMaybeToSingle
(
Function
<
Maybe
<
T
>, ?
extends
SingleSource
<
R
>>
transform
) {
List
<
Throwable
>
errors
=
trackPluginErrors
();
try
{
final
Boolean
[]
b
= {
null
,
null
};
final
CountDownLatch
cdl
=
new
CountDownLatch
(
1
);
Maybe
<
T
>
source
=
new
Maybe
<
T
>() {
@
Override
protected
void
subscribeActual
(
MaybeObserver
<?
super
T
>
observer
) {
try
{
Disposable
d1
=
Disposables
.
empty
();
observer
.
onSubscribe
(
d1
);
Disposable
d2
=
Disposables
.
empty
();
observer
.
onSubscribe
(
d2
);
b
[
0
] =
d1
.
isDisposed
();
b
[
1
] =
d2
.
isDisposed
();
}
finally
{
cdl
.
countDown
();
}
}
};
SingleSource
<
R
>
out
=
transform
.
apply
(
source
);
out
.
subscribe
(
NoOpConsumer
.
INSTANCE
);
try
{
View remainder of file in raw view
Back
|
FazBrowse Home
|
New Git URL