Skip to content

Commit 0052e2f

Browse files
authored
Avoid clearing stale weak entries from critical code segments (#2780)
This reduces the probability of checking for mocked from from the mock-checking code what can lead to infinitive loops.
1 parent 47045cb commit 0052e2f

File tree

2 files changed

+12
-5
lines changed

2 files changed

+12
-5
lines changed

src/main/java/org/mockito/internal/creation/bytebuddy/InlineBytecodeGenerator.java

+5-2
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,8 @@ public InlineBytecodeGenerator(
9494
.with(Implementation.Context.Disabled.Factory.INSTANCE)
9595
.with(MethodGraph.Compiler.ForDeclaredMethods.INSTANCE)
9696
.ignore(isSynthetic().and(not(isConstructor())).or(isDefaultFinalizer()));
97-
mocked = new WeakConcurrentSet<>(WeakConcurrentSet.Cleaner.INLINE);
98-
flatMocked = new WeakConcurrentSet<>(WeakConcurrentSet.Cleaner.INLINE);
97+
mocked = new WeakConcurrentSet<>(WeakConcurrentSet.Cleaner.MANUAL);
98+
flatMocked = new WeakConcurrentSet<>(WeakConcurrentSet.Cleaner.MANUAL);
9999
String identifier = RandomString.make();
100100
subclassEngine =
101101
new TypeCachingBytecodeGenerator(
@@ -299,6 +299,9 @@ private <T> void triggerRetransformation(Set<Class<?>> types, boolean flat) {
299299
lastException = null;
300300
}
301301
}
302+
303+
mocked.expungeStaleEntries();
304+
flatMocked.expungeStaleEntries();
302305
}
303306

304307
private void assureCanReadMockito(Set<Class<?>> types) {

src/main/java/org/mockito/internal/creation/bytebuddy/InlineDelegateByteBuddyMockMaker.java

+7-3
Original file line numberDiff line numberDiff line change
@@ -192,13 +192,13 @@ class InlineDelegateByteBuddyMockMaker
192192
private final BytecodeGenerator bytecodeGenerator;
193193

194194
private final WeakConcurrentMap<Object, MockMethodInterceptor> mocks =
195-
new WeakConcurrentMap.WithInlinedExpunction<Object, MockMethodInterceptor>();
195+
new WeakConcurrentMap<>(false);
196196

197197
private final DetachedThreadLocal<Map<Class<?>, MockMethodInterceptor>> mockedStatics =
198-
new DetachedThreadLocal<>(DetachedThreadLocal.Cleaner.INLINE);
198+
new DetachedThreadLocal<>(DetachedThreadLocal.Cleaner.MANUAL);
199199

200200
private final DetachedThreadLocal<Map<Class<?>, BiConsumer<Object, MockedConstruction.Context>>>
201-
mockedConstruction = new DetachedThreadLocal<>(DetachedThreadLocal.Cleaner.INLINE);
201+
mockedConstruction = new DetachedThreadLocal<>(DetachedThreadLocal.Cleaner.MANUAL);
202202

203203
private final ThreadLocal<Boolean> mockitoConstruction = ThreadLocal.withInitial(() -> false);
204204

@@ -382,6 +382,7 @@ private <T> T doCreateMock(
382382
if (instance instanceof MockAccess) {
383383
((MockAccess) instance).setMockitoInterceptor(mockMethodInterceptor);
384384
}
385+
mocks.expungeStaleEntries();
385386
return instance;
386387
} catch (InstantiationException e) {
387388
throw new MockitoException(
@@ -496,6 +497,7 @@ public void resetMock(Object mock, MockHandler newHandler, MockCreationSettings
496497
if (mock instanceof MockAccess) {
497498
((MockAccess) mock).setMockitoInterceptor(mockMethodInterceptor);
498499
}
500+
mocks.expungeStaleEntries();
499501
}
500502
}
501503

@@ -570,6 +572,7 @@ public <T> StaticMockControl<T> createStaticMock(
570572
interceptors = new WeakHashMap<>();
571573
mockedStatics.set(interceptors);
572574
}
575+
mockedStatics.getBackingMap().expungeStaleEntries();
573576

574577
return new InlineStaticMockControl<>(type, interceptors, settings, handler);
575578
}
@@ -598,6 +601,7 @@ public <T> ConstructionMockControl<T> createConstructionMock(
598601
interceptors = new WeakHashMap<>();
599602
mockedConstruction.set(interceptors);
600603
}
604+
mockedConstruction.getBackingMap().expungeStaleEntries();
601605

602606
return new InlineConstructionMockControl<>(
603607
type, settingsFactory, handlerFactory, mockInitializer, interceptors);

0 commit comments

Comments
 (0)