/**
* Copyright 2014 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.assertEquals;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.LinkedHashSet;
import java.util.List;
import java.util.Set;
import org.junit.Test;
import rx.Observable.Transformer;
import rx.functions.Func1;
import rx.functions.Func2;
import rx.observables.GroupedObservable;
import rx.observers.TestSubscriber;
/**
* Test super/extends of generics.
*
* See https://github.com/Netflix/RxJava/pull/331
*/
public class CovarianceTest {
/**
* This won't compile if super/extends isn't done correctly on generics
*/
@Test
public void testCovarianceOfFrom() {
Observable. just(new HorrorMovie());
Observable. from(new ArrayList());
// Observable.from(new Movie()); // may not compile
}
@Test
public void testSortedList() {
Func2 SORT_FUNCTION = new Func2() {
@Override
public Integer call(Media t1, Media t2) {
return 1;
}
};
// this one would work without the covariance generics
Observable o = Observable.just(new Movie(), new TVSeason(), new Album());
o.toSortedList(SORT_FUNCTION);
// this one would NOT work without the covariance generics
Observable o2 = Observable.just(new Movie(), new ActionMovie(), new HorrorMovie());
o2.toSortedList(SORT_FUNCTION);
}
@Test
public void testGroupByCompose() {
Observable movies = Observable.just(new HorrorMovie(), new ActionMovie(), new Movie());
TestSubscriber ts = new TestSubscriber();
movies.groupBy(new Func1>() {
@Override
public Class call(Movie m) {
return m.getClass();
}
}).flatMap(new Func1, Movie>, Observable>() {
@Override
public Observable call(GroupedObservable, Movie> g) {
return g.compose(new Transformer() {
@Override
public Observable call(Observable m) {
return m.concatWith(Observable.just(new ActionMovie()));
}
}).map(new Func1() {
@Override
public String call(Movie m) {
return m.toString();
}
});
}
}).subscribe(ts);
ts.assertTerminalEvent();
ts.assertNoErrors();
// System.out.println(ts.getOnNextEvents());
assertEquals(6, ts.getOnNextEvents().size());
}
@SuppressWarnings("unused")
@Test
public void testCovarianceOfCompose() {
Observable movie = Observable.just(new HorrorMovie());
Observable movie2 = movie.compose(new Transformer() {
@Override
public Observable call(Observable t1) {
return Observable.just(new Movie());
}
});
}
@SuppressWarnings("unused")
@Test
public void testCovarianceOfCompose2() {
Observable movie = Observable. just(new HorrorMovie());
Observable movie2 = movie.compose(new Transformer() {
@Override
public Observable call(Observable t1) {
return Observable.just(new HorrorMovie());
}
});
}
@SuppressWarnings("unused")
@Test
public void testCovarianceOfCompose3() {
Observable movie = Observable.just(new HorrorMovie());
Observable movie2 = movie.compose(new Transformer() {
@Override
public Observable call(Observable t1) {
return Observable.just(new HorrorMovie()).map(new Func1() {
@Override
public HorrorMovie call(HorrorMovie horrorMovie) {
return horrorMovie;
}
});
}
});
}
@SuppressWarnings("unused")
@Test
public void testCovarianceOfCompose4() {
Observable movie = Observable.just(new HorrorMovie());
Observable movie2 = movie.compose(new Transformer() {
@Override
public Observable call(Observable t1) {
return t1.map(new Func1() {
@Override
public HorrorMovie call(HorrorMovie horrorMovie) {
return horrorMovie;
}
});
}
});
}
@Test
public void testComposeWithDeltaLogic() {
List list1 = Arrays.asList(new Movie(), new HorrorMovie(), new ActionMovie());
List list2 = Arrays.asList(new ActionMovie(), new Movie(), new HorrorMovie(), new ActionMovie());
Observable> movies = Observable.just(list1, list2);
movies.compose(deltaTransformer);
}
static Transformer, Movie> deltaTransformer = new Transformer, Movie>() {
@Override
public Observable call(Observable> movieList) {
return movieList
.startWith(new ArrayList())
.buffer(2, 1)
.skip(1)
.flatMap(calculateDelta);
}
};
static Func1>, Observable> calculateDelta = new Func1>, Observable>() {
public Observable call(List> listOfLists) {
if (listOfLists.size() == 1) {
return Observable.from(listOfLists.get(0));
} else {
// diff the two
List newList = listOfLists.get(1);
List oldList = new ArrayList(listOfLists.get(0));
Set delta = new LinkedHashSet();
delta.addAll(newList);
// remove all that match in old
delta.removeAll(oldList);
// filter oldList to those that aren't in the newList
oldList.removeAll(newList);
// for all left in the oldList we'll create DROP events
for (@SuppressWarnings("unused") Movie old : oldList) {
delta.add(new Movie());
}
return Observable.from(delta);
}
};
};
/*
* Most tests are moved into their applicable classes such as [Operator]Tests.java
*/
static class Media {
}
static class Movie extends Media {
}
static class HorrorMovie extends Movie {
}
static class ActionMovie extends Movie {
}
static class Album extends Media {
}
static class TVSeason extends Media {
}
static class Rating {
}
static class CoolRating extends Rating {
}
static class Result {
}
static class ExtendedResult extends Result {
}
}