-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ArC - fix disposer method resolution
- disposed parameter with wildcard does not match correctly
- Loading branch information
Showing
2 changed files
with
66 additions
and
1 deletion.
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
65 changes: 65 additions & 0 deletions
65
...c/tests/src/test/java/io/quarkus/arc/test/producer/disposer/DisposerWithWildcardTest.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,65 @@ | ||
package io.quarkus.arc.test.producer.disposer; | ||
|
||
import static org.junit.jupiter.api.Assertions.assertEquals; | ||
import static org.junit.jupiter.api.Assertions.assertTrue; | ||
|
||
import io.quarkus.arc.Arc; | ||
import io.quarkus.arc.ArcContainer; | ||
import io.quarkus.arc.InstanceHandle; | ||
import io.quarkus.arc.test.ArcTestContainer; | ||
import java.util.Collections; | ||
import java.util.List; | ||
import java.util.Map; | ||
import java.util.concurrent.CopyOnWriteArrayList; | ||
import javax.enterprise.inject.Disposes; | ||
import javax.enterprise.inject.Produces; | ||
import javax.enterprise.util.TypeLiteral; | ||
import javax.inject.Singleton; | ||
import org.junit.jupiter.api.Test; | ||
import org.junit.jupiter.api.extension.RegisterExtension; | ||
|
||
public class DisposerWithWildcardTest { | ||
|
||
@RegisterExtension | ||
ArcTestContainer container = new ArcTestContainer(Producers.class); | ||
|
||
@Test | ||
public void testDisposers() { | ||
ArcContainer container = Arc.container(); | ||
InstanceHandle<Map<String, Long>> instanceA = container.instance(new TypeLiteral<Map<String, Long>>() { | ||
}); | ||
assertTrue(instanceA.get().containsKey("A")); | ||
instanceA.destroy(); | ||
|
||
InstanceHandle<Map<String, Integer>> instanceB = container.instance(new TypeLiteral<Map<String, Integer>>() { | ||
}); | ||
assertTrue(instanceB.get().containsKey("B")); | ||
instanceB.destroy(); | ||
|
||
assertEquals(2, Producers.KEYS.size()); | ||
} | ||
|
||
@Singleton | ||
static class Producers { | ||
|
||
static final List<Object> KEYS = new CopyOnWriteArrayList<>(); | ||
|
||
@Singleton | ||
@Produces | ||
Map<String, Long> produceA() { | ||
return Collections.singletonMap("A", 1l); | ||
} | ||
|
||
@Singleton | ||
@Produces | ||
Map<String, Integer> produceB() { | ||
return Collections.singletonMap("B", 1); | ||
} | ||
|
||
void dispose(@Disposes Map<?, ?> myMap) { | ||
KEYS.addAll(myMap.keySet()); | ||
} | ||
|
||
} | ||
|
||
} |