/**
* Copyright 2013 Netflix, Inc.
*
* 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 rx;
import static org.junit.Assert.*;
import java.util.Arrays;
import java.util.List;
import org.junit.Test;
import rx.CovarianceTest.HorrorMovie;
import rx.CovarianceTest.Media;
import rx.CovarianceTest.Movie;
import rx.Observable.OnSubscribeFunc;
import rx.subscriptions.Subscriptions;
public class ConcatTests {
@Test
public void testConcatSimple() {
Observable o1 = Observable.from("one", "two");
Observable o2 = Observable.from("three", "four");
List values = Observable.concat(o1, o2).toList().toBlockingObservable().single();
assertEquals("one", values.get(0));
assertEquals("two", values.get(1));
assertEquals("three", values.get(2));
assertEquals("four", values.get(3));
}
@Test
public void testConcatWithObservableOfObservable() {
Observable o1 = Observable.from("one", "two");
Observable o2 = Observable.from("three", "four");
Observable o3 = Observable.from("five", "six");
Observable> os = Observable.from(o1, o2, o3);
List values = Observable.concat(os).toList().toBlockingObservable().single();
assertEquals("one", values.get(0));
assertEquals("two", values.get(1));
assertEquals("three", values.get(2));
assertEquals("four", values.get(3));
}
@Test
public void testConcatWithIterableOfObservable() {
Observable o1 = Observable.from("one", "two");
Observable o2 = Observable.from("three", "four");
Observable o3 = Observable.from("five", "six");
@SuppressWarnings("unchecked")
Iterable> is = Arrays.asList(o1, o2, o3);
List values = Observable.concat(Observable.from(is)).toList().toBlockingObservable().single();
assertEquals("one", values.get(0));
assertEquals("two", values.get(1));
assertEquals("three", values.get(2));
assertEquals("four", values.get(3));
}
@Test
public void testConcatCovariance() {
Observable o1 = Observable. from(new HorrorMovie(), new Movie());
Observable o2 = Observable.from(new Media(), new HorrorMovie());
Observable> os = Observable.from(o1, o2);
List values = Observable.concat(os).toList().toBlockingObservable().single();
}
@Test
public void testConcatCovariance2() {
Observable o1 = Observable.from(new HorrorMovie(), new Movie(), new Media());
Observable o2 = Observable.from(new Media(), new HorrorMovie());
Observable> os = Observable.from(o1, o2);
List values = Observable.concat(os).toList().toBlockingObservable().single();
}
@Test
public void testConcatCovariance3() {
Observable o1 = Observable.from(new HorrorMovie(), new Movie());
Observable o2 = Observable.from(new Media(), new HorrorMovie());
List values = Observable.concat(o1, o2).toList().toBlockingObservable().single();
assertTrue(values.get(0) instanceof HorrorMovie);
assertTrue(values.get(1) instanceof Movie);
assertTrue(values.get(2) instanceof Media);
assertTrue(values.get(3) instanceof HorrorMovie);
}
@Test
public void testConcatCovariance4() {
Observable o1 = Observable.create(new OnSubscribeFunc() {
@Override
public Subscription onSubscribe(Observer super Movie> o) {
o.onNext(new HorrorMovie());
o.onNext(new Movie());
// o.onNext(new Media()); // correctly doesn't compile
o.onCompleted();
return Subscriptions.empty();
}
});
Observable o2 = Observable.from(new Media(), new HorrorMovie());
List values = Observable.concat(o1, o2).toList().toBlockingObservable().single();
assertTrue(values.get(0) instanceof HorrorMovie);
assertTrue(values.get(1) instanceof Movie);
assertTrue(values.get(2) instanceof Media);
assertTrue(values.get(3) instanceof HorrorMovie);
}
}