190 lines
6.9 KiB
Java
190 lines
6.9 KiB
Java
/*
|
|
* Copyright (C) 2016 The Dagger Authors.
|
|
*
|
|
* 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 dagger.functional.producers.multibindings;
|
|
|
|
import static com.google.common.truth.Truth.assertThat;
|
|
import static org.junit.Assert.fail;
|
|
|
|
import com.google.common.collect.Iterables;
|
|
import com.google.common.util.concurrent.ListenableFuture;
|
|
import dagger.producers.Produced;
|
|
import dagger.producers.Producer;
|
|
import java.util.HashSet;
|
|
import java.util.Map;
|
|
import java.util.Set;
|
|
import java.util.concurrent.ExecutionException;
|
|
import org.junit.Test;
|
|
import org.junit.runner.RunWith;
|
|
import org.junit.runners.JUnit4;
|
|
|
|
@RunWith(JUnit4.class)
|
|
public class MultibindingTest {
|
|
@Test
|
|
public void setBinding() throws Exception {
|
|
MultibindingComponent multibindingComponent = DaggerMultibindingComponent.create();
|
|
assertThat(multibindingComponent.strs().get())
|
|
.containsExactly(
|
|
"foo",
|
|
"foo1",
|
|
"foo2",
|
|
"baz1",
|
|
"baz2",
|
|
"bar",
|
|
"bar1",
|
|
"bar2",
|
|
"providedStr",
|
|
"providedStr1",
|
|
"providedStr2");
|
|
assertThat(multibindingComponent.strCount().get()).isEqualTo(11);
|
|
}
|
|
|
|
@Test
|
|
public void setBindingOfProduced() throws Exception {
|
|
MultibindingComponent multibindingComponent = DaggerMultibindingComponent.create();
|
|
assertThat(multibindingComponent.successfulSet().get())
|
|
.containsExactly(
|
|
Produced.successful("foo"),
|
|
Produced.successful("foo1"),
|
|
Produced.successful("foo2"),
|
|
Produced.successful("baz1"),
|
|
Produced.successful("baz2"),
|
|
Produced.successful("bar"),
|
|
Produced.successful("bar1"),
|
|
Produced.successful("bar2"),
|
|
Produced.successful("providedStr"),
|
|
Produced.successful("providedStr1"),
|
|
Produced.successful("providedStr2"));
|
|
}
|
|
|
|
@Test
|
|
public void setBindingOfProducedWithFailures() throws Exception {
|
|
MultibindingComponent multibindingComponent = DaggerMultibindingComponent.create();
|
|
Set<Produced<String>> possiblyThrowingSet = multibindingComponent.possiblyThrowingSet().get();
|
|
Set<String> successes = new HashSet<>();
|
|
Set<ExecutionException> failures = new HashSet<>();
|
|
for (Produced<String> str : possiblyThrowingSet) {
|
|
try {
|
|
successes.add(str.get());
|
|
} catch (ExecutionException e) {
|
|
failures.add(e);
|
|
}
|
|
}
|
|
assertThat(successes).containsExactly("singleton", "double", "ton");
|
|
assertThat(failures).hasSize(1);
|
|
assertThat(Iterables.getOnlyElement(failures).getCause()).hasMessageThat().isEqualTo("monkey");
|
|
}
|
|
|
|
@Test
|
|
public void mapBinding() throws Exception {
|
|
MultibindingComponent multibindingComponent = DaggerMultibindingComponent.create();
|
|
Map<Integer, String> map = multibindingComponent.map().get();
|
|
assertThat(map).hasSize(3);
|
|
assertThat(map).containsEntry(15, "fifteen");
|
|
assertThat(map).containsEntry(42, "forty two");
|
|
assertThat(map).containsEntry(3, "provided three");
|
|
}
|
|
|
|
@Test
|
|
public void mapOfProducerBinding() throws Exception {
|
|
MultibindingComponent multibindingComponent = DaggerMultibindingComponent.create();
|
|
Map<Integer, Producer<String>> map = multibindingComponent.mapOfProducer().get();
|
|
assertThat(map).hasSize(3);
|
|
assertThat(map).containsKey(15);
|
|
assertThat(map.get(15).get().get()).isEqualTo("fifteen");
|
|
assertThat(map).containsKey(42);
|
|
assertThat(map.get(42).get().get()).isEqualTo("forty two");
|
|
assertThat(map).containsKey(3);
|
|
assertThat(map.get(3).get().get()).isEqualTo("provided three");
|
|
}
|
|
|
|
@Test
|
|
public void mapOfProducedBinding() throws Exception {
|
|
MultibindingComponent multibindingComponent = DaggerMultibindingComponent.create();
|
|
Map<Integer, Produced<String>> map = multibindingComponent.mapOfProduced().get();
|
|
assertThat(map).hasSize(3);
|
|
assertThat(map).containsKey(15);
|
|
assertThat(map.get(15).get()).isEqualTo("fifteen");
|
|
assertThat(map).containsKey(42);
|
|
assertThat(map.get(42).get()).isEqualTo("forty two");
|
|
assertThat(map).containsKey(3);
|
|
assertThat(map.get(3).get()).isEqualTo("provided three");
|
|
}
|
|
|
|
@Test
|
|
public void mapBindingWithFailures() throws Exception {
|
|
MultibindingComponent multibindingComponent = DaggerMultibindingComponent.create();
|
|
try {
|
|
multibindingComponent.possiblyThrowingMap().get();
|
|
fail();
|
|
} catch (ExecutionException e) {
|
|
assertThat(e.getCause()).hasMessageThat().isEqualTo("monkey");
|
|
}
|
|
}
|
|
|
|
@Test
|
|
public void mapOfProducerBindingWithFailures() throws Exception {
|
|
MultibindingComponent multibindingComponent = DaggerMultibindingComponent.create();
|
|
Map<Integer, Producer<String>> map =
|
|
multibindingComponent.possiblyThrowingMapOfProducer().get();
|
|
assertThat(map).hasSize(2);
|
|
assertThat(map).containsKey(42);
|
|
assertThat(map.get(42).get().get()).isEqualTo("forty two");
|
|
assertThat(map).containsKey(15);
|
|
ListenableFuture<String> future = map.get(15).get();
|
|
try {
|
|
future.get();
|
|
fail();
|
|
} catch (ExecutionException e) {
|
|
assertThat(e.getCause()).hasMessageThat().isEqualTo("monkey");
|
|
}
|
|
}
|
|
|
|
@Test
|
|
public void mapOfProducedBindingWithFailures() throws Exception {
|
|
MultibindingComponent multibindingComponent = DaggerMultibindingComponent.create();
|
|
Map<Integer, Produced<String>> map =
|
|
multibindingComponent.possiblyThrowingMapOfProduced().get();
|
|
assertThat(map).hasSize(2);
|
|
assertThat(map).containsKey(42);
|
|
assertThat(map.get(42).get()).isEqualTo("forty two");
|
|
assertThat(map).containsKey(15);
|
|
Produced<String> produced = map.get(15);
|
|
try {
|
|
produced.get();
|
|
fail();
|
|
} catch (ExecutionException e) {
|
|
assertThat(e.getCause()).hasMessageThat().isEqualTo("monkey");
|
|
}
|
|
}
|
|
|
|
@Test
|
|
public void emptySet() throws Exception {
|
|
MultibindingComponent multibindingComponent = DaggerMultibindingComponent.create();
|
|
assertThat(multibindingComponent.objs().get()).isEmpty();
|
|
assertThat(multibindingComponent.producedObjs().get()).isEmpty();
|
|
assertThat(multibindingComponent.objCount().get()).isEqualTo(0);
|
|
}
|
|
|
|
@Test
|
|
public void emptyMap() throws Exception {
|
|
MultibindingComponent multibindingComponent = DaggerMultibindingComponent.create();
|
|
assertThat(multibindingComponent.objMap().get()).isEmpty();
|
|
assertThat(multibindingComponent.objMapOfProduced().get()).isEmpty();
|
|
assertThat(multibindingComponent.objMapOfProducer().get()).isEmpty();
|
|
}
|
|
}
|