use of io.reactivex.rxjava3.processors.PublishProcessor in project RxJava by ReactiveX.
the class FlowableBlockingTest method blockinsSubscribeCancelAsync.
@Test
public void blockinsSubscribeCancelAsync() {
for (int i = 0; i < TestHelper.RACE_DEFAULT_LOOPS; i++) {
final TestSubscriber<Integer> ts = new TestSubscriber<>();
final PublishProcessor<Integer> pp = PublishProcessor.create();
final Runnable r1 = new Runnable() {
@Override
public void run() {
ts.cancel();
}
};
final Runnable r2 = new Runnable() {
@Override
public void run() {
pp.onNext(1);
}
};
final AtomicInteger c = new AtomicInteger(2);
Schedulers.computation().scheduleDirect(new Runnable() {
@Override
public void run() {
c.decrementAndGet();
while (c.get() != 0 && !pp.hasSubscribers()) {
}
TestHelper.race(r1, r2);
}
});
c.decrementAndGet();
while (c.get() != 0) {
}
pp.blockingSubscribe(ts);
}
}
use of io.reactivex.rxjava3.processors.PublishProcessor in project RxJava by ReactiveX.
the class FlowableSwitchMapCompletableTest method innerError.
@Test
public void innerError() {
PublishProcessor<Integer> pp = PublishProcessor.create();
CompletableSubject cs = CompletableSubject.create();
TestObserver<Void> to = pp.switchMapCompletable(Functions.justFunction(cs)).test();
assertTrue(pp.hasSubscribers());
assertFalse(cs.hasObservers());
pp.onNext(1);
assertTrue(cs.hasObservers());
to.assertEmpty();
cs.onError(new TestException());
to.assertFailure(TestException.class);
assertFalse(pp.hasSubscribers());
assertFalse(cs.hasObservers());
}
use of io.reactivex.rxjava3.processors.PublishProcessor in project RxJava by ReactiveX.
the class FlowableSwitchMapCompletableTest method onErrorInnerErrorRace.
@Test
public void onErrorInnerErrorRace() {
final TestException ex0 = new TestException();
final TestException ex = new TestException();
for (int i = 0; i < TestHelper.RACE_LONG_LOOPS; i++) {
List<Throwable> errors = TestHelper.trackPluginErrors();
try {
final PublishProcessor<Integer> pp = PublishProcessor.create();
final CompletableSubject cs = CompletableSubject.create();
TestObserver<Void> to = pp.switchMapCompletable(Functions.justFunction(cs)).test();
pp.onNext(1);
Runnable r1 = new Runnable() {
@Override
public void run() {
pp.onError(ex0);
}
};
Runnable r2 = new Runnable() {
@Override
public void run() {
cs.onError(ex);
}
};
TestHelper.race(r1, r2);
to.assertError(new Predicate<Throwable>() {
@Override
public boolean test(Throwable e) throws Exception {
return e instanceof TestException || e instanceof CompositeException;
}
});
if (!errors.isEmpty()) {
TestHelper.assertUndeliverable(errors, 0, TestException.class);
}
} finally {
RxJavaPlugins.reset();
}
}
}
use of io.reactivex.rxjava3.processors.PublishProcessor in project RxJava by ReactiveX.
the class FlowableSwitchMapCompletableTest method onNextInnerErrorRace.
@Test
public void onNextInnerErrorRace() {
final TestException ex = new TestException();
for (int i = 0; i < TestHelper.RACE_LONG_LOOPS; i++) {
List<Throwable> errors = TestHelper.trackPluginErrors();
try {
final PublishProcessor<Integer> pp = PublishProcessor.create();
final CompletableSubject cs = CompletableSubject.create();
TestObserver<Void> to = pp.switchMapCompletable(Functions.justFunction(cs)).test();
pp.onNext(1);
Runnable r1 = new Runnable() {
@Override
public void run() {
pp.onNext(2);
}
};
Runnable r2 = new Runnable() {
@Override
public void run() {
cs.onError(ex);
}
};
TestHelper.race(r1, r2);
to.assertError(new Predicate<Throwable>() {
@Override
public boolean test(Throwable e) throws Exception {
return e instanceof TestException || e instanceof CompositeException;
}
});
if (!errors.isEmpty()) {
TestHelper.assertUndeliverable(errors, 0, TestException.class);
}
} finally {
RxJavaPlugins.reset();
}
}
}
use of io.reactivex.rxjava3.processors.PublishProcessor in project RxJava by ReactiveX.
the class FlowableSwitchMapCompletableTest method mainErrorDelayed.
@Test
public void mainErrorDelayed() {
final PublishProcessor<Integer> pp = PublishProcessor.create();
final CompletableSubject cs = CompletableSubject.create();
TestObserver<Void> to = pp.switchMapCompletableDelayError(Functions.justFunction(cs)).test();
pp.onNext(1);
pp.onError(new TestException());
to.assertEmpty();
assertTrue(cs.hasObservers());
cs.onComplete();
to.assertFailure(TestException.class);
}
Aggregations