/**
* 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.internal.operators.completable;
import static org.junit.Assert.*;
import java.util.*;
import org.junit.Test;
import org.reactivestreams.*;
import io.reactivex.*;
import io.reactivex.disposables.Disposables;
import io.reactivex.exceptions.*;
import io.reactivex.functions.Function;
import io.reactivex.internal.subscriptions.BooleanSubscription;
import io.reactivex.observers.*;
import io.reactivex.plugins.RxJavaPlugins;
import io.reactivex.processors.*;
import io.reactivex.schedulers.Schedulers;
public class CompletableConcatTest {
@Test
public void overflowReported() {
Completable.concat(
Flowable.fromPublisher(new Publisher<Completable>() {
@Override
public void subscribe(Subscriber<? super Completable> s) {
s.onSubscribe(new BooleanSubscription());
s.onNext(Completable.never());
s.onNext(Completable.never());
s.onNext(Completable.never());
s.onNext(Completable.never());
s.onComplete();
}
}), 1
)
.test()
.assertFailure(MissingBackpressureException.class);
}
@Test
public void invalidPrefetch() {
try {
Completable.concat(Flowable.just(Completable.complete()), -99);
fail("Should have thrown IllegalArgumentExceptio");
} catch (IllegalArgumentException ex) {
assertEquals("prefetch > 0 required but it was -99", ex.getMessage());
}
}
@Test
public void dispose() {
TestHelper.checkDisposed(Completable.concat(Flowable.just(Completable.complete())));
}
@Test
public void errorRace() {
for (int i = 0; i < 500; i++) {
List<Throwable> errors = TestHelper.trackPluginErrors();
try {
final PublishProcessor<Integer> ps1 = PublishProcessor.create();
final PublishProcessor<Integer> ps2 = PublishProcessor.create();
TestObserver<Void> to = Completable.concat(ps1.map(new Function<Integer, Completable>() {
@Override
public Completable apply(Integer v) throws Exception {
return ps2.ignoreElements();
}
})).test();
ps1.onNext(1);
final TestException ex = new TestException();
Runnable r1 = new Runnable() {
@Override
public void run() {
ps1.onError(ex);
}
};
Runnable r2 = new Runnable() {
@Override
public void run() {
ps2.onError(ex);
}
};
TestHelper.race(r1, r2, Schedulers.single());
to.assertFailure(TestException.class);
if (!errors.isEmpty()) {
TestHelper.assertUndeliverable(errors, 0, TestException.class);
}
} finally {
RxJavaPlugins.reset();
}
}
}
@Test
public void synchronousFusedCrash() {
Completable.concat(Flowable.range(1, 2).map(new Function<Integer, Completable>() {
@Override
public Completable apply(Integer v) throws Exception {
throw new TestException();
}
}))
.test()
.assertFailure(TestException.class);
}
@Test
public void unboundedIn() {
Completable.concat(Flowable.just(Completable.complete()).hide(), Integer.MAX_VALUE)
.test()
.assertResult();
}
@Test
public void syncFusedUnboundedIn() {
Completable.concat(Flowable.just(Completable.complete()), Integer.MAX_VALUE)
.test()
.assertResult();
}
@Test
public void asyncFusedUnboundedIn() {
UnicastProcessor<Completable> up = UnicastProcessor.create();
up.onNext(Completable.complete());
up.onComplete();
Completable.concat(up, Integer.MAX_VALUE)
.test()
.assertResult();
}
@Test
public void arrayCancelled() {
Completable.concatArray(Completable.complete(), Completable.complete())
.test(true)
.assertEmpty();
}
@Test
public void arrayFirstCancels() {
final TestObserver<Void> to = new TestObserver<Void>();
Completable.concatArray(new Completable() {
@Override
protected void subscribeActual(CompletableObserver s) {
s.onSubscribe(Disposables.empty());
to.cancel();
s.onComplete();
}
}, Completable.complete())
.subscribe(to);
to.assertEmpty();
}
@Test
public void iterableCancelled() {
Completable.concat(Arrays.asList(Completable.complete(), Completable.complete()))
.test(true)
.assertEmpty();
}
@Test
public void iterableFirstCancels() {
final TestObserver<Void> to = new TestObserver<Void>();
Completable.concat(Arrays.asList(new Completable() {
@Override
protected void subscribeActual(CompletableObserver s) {
s.onSubscribe(Disposables.empty());
to.cancel();
s.onComplete();
}
}, Completable.complete()))
.subscribe(to);
to.assertEmpty();
}
@Test
public void arrayCancelRace() {
Completable[] a = new Completable[1024];
Arrays.fill(a, Completable.complete());
for (int i = 0; i < 500; i++) {
final Completable c = Completable.concatArray(a);
final TestObserver<Void> to = new TestObserver<Void>();
Runnable r1 = new Runnable() {
@Override
public void run() {
c.subscribe(to);
}
};
Runnable r2 = new Runnable() {
@Override
public void run() {
to.cancel();
}
};
TestHelper.race(r1, r2, Schedulers.single());
}
}
@Test
public void iterableCancelRace() {
Completable[] a = new Completable[1024];
Arrays.fill(a, Completable.complete());
for (int i = 0; i < 500; i++) {
final Completable c = Completable.concat(Arrays.asList(a));
final TestObserver<Void> to = new TestObserver<Void>();
Runnable r1 = new Runnable() {
@Override
public void run() {
c.subscribe(to);
}
};
Runnable r2 = new Runnable() {
@Override
public void run() {
to.cancel();
}
};
TestHelper.race(r1, r2, Schedulers.single());
}
}
}