Skip to content

Commit a82d5c3

Browse files
authored
Merge pull request #2505 from mockito/initialize-interfaces
Make sure interface types are initialized before inline mocking to avoid blocking code of static initializers.
2 parents dbcbb3f + 4635780 commit a82d5c3

File tree

2 files changed

+46
-1
lines changed

2 files changed

+46
-1
lines changed

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

+2-1
Original file line numberDiff line numberDiff line change
@@ -252,8 +252,8 @@ private <T> void triggerRetransformation(Set<Class<?>> types, boolean flat) {
252252
} else {
253253
do {
254254
if (mocked.add(type)) {
255-
assureInitialization(type);
256255
if (!flatMocked.remove(type)) {
256+
assureInitialization(type);
257257
targets.add(type);
258258
}
259259
addInterfaces(targets, type.getInterfaces());
@@ -356,6 +356,7 @@ private void addInterfaces(Set<Class<?>> types, Class<?>[] interfaces) {
356356
for (Class<?> type : interfaces) {
357357
if (mocked.add(type)) {
358358
if (!flatMocked.remove(type)) {
359+
assureInitialization(type);
359360
types.add(type);
360361
}
361362
addInterfaces(types, type.getInterfaces());
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
/*
2+
* Copyright (c) 2017 Mockito contributors
3+
* This program is made available under the terms of the MIT License.
4+
*/
5+
package org.mockitoinline;
6+
7+
import org.junit.Test;
8+
9+
import static org.mockito.Mockito.mock;
10+
11+
public class HierarchyPreInitializationTest {
12+
13+
@Test
14+
@SuppressWarnings("CheckReturnValue")
15+
public void testOrder() {
16+
mock(MyClass.class);
17+
mock(TestSubInterface.class);
18+
}
19+
20+
public interface TestInterface {
21+
22+
@SuppressWarnings("unused")
23+
MyClass INSTANCE = new MyClass().probe();
24+
}
25+
26+
public interface TestSubInterface extends TestInterface {
27+
}
28+
29+
public static class MyClass {
30+
31+
private final Object obj;
32+
33+
public MyClass() {
34+
obj = new Object();
35+
}
36+
37+
public MyClass probe() {
38+
if (obj == null) {
39+
throw new RuntimeException();
40+
}
41+
return this;
42+
}
43+
}
44+
}

0 commit comments

Comments
 (0)