-
Notifications
You must be signed in to change notification settings - Fork 7.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
149 additions
and
159 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
94 changes: 0 additions & 94 deletions
94
rxjava-core/src/main/java/rx/operators/OperationDefaultIfEmpty.java
This file was deleted.
Oops, something went wrong.
64 changes: 64 additions & 0 deletions
64
rxjava-core/src/main/java/rx/operators/OperatorDefaultIfEmpty.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
/** | ||
* 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.operators; | ||
|
||
import rx.Observable.Operator; | ||
import rx.Subscriber; | ||
|
||
/** | ||
* Returns the elements of the specified sequence or the specified default value | ||
* in a singleton sequence if the sequence is empty. | ||
* @param <T> the value type | ||
*/ | ||
public class OperatorDefaultIfEmpty<T> implements Operator<T, T> { | ||
final T defaultValue; | ||
|
||
public OperatorDefaultIfEmpty(T defaultValue) { | ||
this.defaultValue = defaultValue; | ||
} | ||
|
||
@Override | ||
public Subscriber<? super T> call(final Subscriber<? super T> child) { | ||
return new Subscriber<T>(child) { | ||
boolean hasValue; | ||
@Override | ||
public void onNext(T t) { | ||
hasValue = true; | ||
child.onNext(t); | ||
} | ||
|
||
@Override | ||
public void onError(Throwable e) { | ||
child.onError(e); | ||
} | ||
|
||
@Override | ||
public void onCompleted() { | ||
if (!hasValue) { | ||
try { | ||
child.onNext(defaultValue); | ||
} catch (Throwable e) { | ||
child.onError(e); | ||
return; | ||
} | ||
} | ||
child.onCompleted(); | ||
} | ||
|
||
}; | ||
} | ||
|
||
} |
63 changes: 0 additions & 63 deletions
63
rxjava-core/src/test/java/rx/operators/OperationDefaultIfEmptyTest.java
This file was deleted.
Oops, something went wrong.
83 changes: 83 additions & 0 deletions
83
rxjava-core/src/test/java/rx/operators/OperatorDefaultIfEmptyTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
/** | ||
* 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.operators; | ||
|
||
import static org.mockito.Mockito.*; | ||
|
||
import org.junit.Test; | ||
|
||
import rx.Observable; | ||
import rx.Observer; | ||
import rx.Subscriber; | ||
|
||
public class OperatorDefaultIfEmptyTest { | ||
|
||
@Test | ||
public void testDefaultIfEmpty() { | ||
Observable<Integer> source = Observable.from(1, 2, 3); | ||
Observable<Integer> observable = source.defaultIfEmpty(10); | ||
|
||
@SuppressWarnings("unchecked") | ||
Observer<Integer> observer = mock(Observer.class); | ||
observable.subscribe(observer); | ||
verify(observer, never()).onNext(10); | ||
verify(observer).onNext(1); | ||
verify(observer).onNext(2); | ||
verify(observer).onNext(3); | ||
verify(observer).onCompleted(); | ||
verify(observer, never()).onError(any(Throwable.class)); | ||
} | ||
|
||
@Test | ||
public void testDefaultIfEmptyWithEmpty() { | ||
Observable<Integer> source = Observable.empty(); | ||
Observable<Integer> observable = source.defaultIfEmpty(10); | ||
|
||
@SuppressWarnings("unchecked") | ||
Observer<Integer> observer = mock(Observer.class); | ||
observable.subscribe(observer); | ||
|
||
verify(observer).onNext(10); | ||
verify(observer).onCompleted(); | ||
verify(observer, never()).onError(any(Throwable.class)); | ||
} | ||
|
||
@Test | ||
public void testEmptyButClientThrows() { | ||
final Observer<Integer> o = mock(Observer.class); | ||
|
||
Observable.<Integer>empty().defaultIfEmpty(1).subscribe(new Subscriber<Integer>() { | ||
@Override | ||
public void onNext(Integer t) { | ||
throw new OperationReduceTest.CustomException(); | ||
} | ||
|
||
@Override | ||
public void onError(Throwable e) { | ||
o.onError(e); | ||
} | ||
|
||
@Override | ||
public void onCompleted() { | ||
o.onCompleted(); | ||
} | ||
}); | ||
|
||
verify(o).onError(any(OperationReduceTest.CustomException.class)); | ||
verify(o, never()).onNext(any(Integer.class)); | ||
verify(o, never()).onCompleted(); | ||
} | ||
} |