forked from jooby-project/jooby
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMockUnit.java
More file actions
261 lines (212 loc) · 7.08 KB
/
MockUnit.java
File metadata and controls
261 lines (212 loc) · 7.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
package org.jooby.test;
import static java.util.Objects.requireNonNull;
import static org.easymock.EasyMock.createMock;
import static org.easymock.EasyMock.createStrictMock;
import java.lang.reflect.Modifier;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.LinkedHashMap;
import java.util.LinkedHashSet;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import java.util.Set;
import org.easymock.Capture;
import org.easymock.EasyMock;
import org.powermock.api.easymock.PowerMock;
import com.google.common.base.Throwables;
import com.google.common.collect.ArrayListMultimap;
import com.google.common.collect.Multimap;
import com.google.common.primitives.Primitives;
@SuppressWarnings({"rawtypes", "unchecked" })
public class MockUnit {
public class ConstructorBuilder<T> {
private Class[] types;
private Class<T> type;
public ConstructorBuilder(final Class<T> type) {
this.type = type;
}
public T build(final Object... args) throws Exception {
mockClasses.add(type);
if (types == null) {
types = Arrays.asList(type.getDeclaredConstructors())
.stream()
.filter(c -> {
Class<?>[] types = c.getParameterTypes();
if (types.length == args.length) {
for (int i = 0; i < types.length; i++) {
if (!types[i].isInstance(args[i])
&& !Primitives.wrap(types[i]).isInstance(args[i])) {
return false;
}
}
return true;
}
return false;
}).map(c -> c.getParameterTypes())
.findFirst()
.orElseThrow(() -> new IllegalArgumentException("Unable to find parameter types"));
}
T mock = PowerMock.createMockAndExpectNew(type, types, args);
partialMocks.add(mock);
return mock;
}
public ConstructorBuilder<T> args(final Class... types) {
this.types = types;
return this;
}
}
public interface Block {
public void run(MockUnit unit) throws Throwable;
}
private List<Object> mocks = new LinkedList<>();
private List<Object> partialMocks = new LinkedList<>();
private Multimap<Class, Object> globalMock = ArrayListMultimap.create();
private Map<Class, List<Capture<Object>>> captures = new LinkedHashMap<>();
private Set<Class> mockClasses = new LinkedHashSet<>();
private List<Block> blocks = new LinkedList<>();
public MockUnit(final Class... types) {
this(false, types);
}
public MockUnit(final boolean strict, final Class... types) {
Arrays.stream(types).forEach(type -> {
registerMock(type);
});
}
public <T> T capture(final Class<T> type) {
Capture<Object> capture = new Capture<>();
List<Capture<Object>> captures = this.captures.get(type);
if (captures == null) {
captures = new ArrayList<>();
this.captures.put(type, captures);
}
captures.add(capture);
return (T) EasyMock.capture(capture);
}
public <T> List<T> captured(final Class<T> type) {
List<Capture<Object>> captureList = this.captures.get(type);
List<T> result = new LinkedList<>();
captureList.forEach(it -> result.add((T) it.getValue()));
return result;
}
public <T> Class<T> mockStatic(final Class<T> type) {
if (mockClasses.add(type)) {
PowerMock.mockStatic(type);
mockClasses.add(type);
}
return type;
}
public <T> Class<T> mockStaticPartial(final Class<T> type, final String... names) {
if (mockClasses.add(type)) {
PowerMock.mockStaticPartial(type, names);
mockClasses.add(type);
}
return type;
}
public <T> T partialMock(final Class<T> type, final String... methods) {
T mock = PowerMock.createPartialMock(type, methods);
partialMocks.add(mock);
return mock;
}
public <T> T partialMock(final Class<T> type, final String method, final Class<?> firstArg) {
T mock = PowerMock.createPartialMock(type, method, firstArg);
partialMocks.add(mock);
return mock;
}
public <T> T partialMock(final Class<T> type, final String method, final Class t1,
final Class t2) {
T mock = PowerMock.createPartialMock(type, method, t1, t2);
partialMocks.add(mock);
return mock;
}
public <T> T mock(final Class<T> type) {
return mock(type, false);
}
public <T> T powerMock(final Class<T> type) {
T mock = PowerMock.createMock(type);
partialMocks.add(mock);
return mock;
}
public <T> T mock(final Class<T> type, final boolean strict) {
if (Modifier.isFinal(type.getModifiers())) {
T mock = PowerMock.createMock(type);
partialMocks.add(mock);
return mock;
} else {
T mock = strict ? createStrictMock(type) : createMock(type);
mocks.add(mock);
return mock;
}
}
public <T> T registerMock(final Class<T> type) {
T mock = mock(type);
globalMock.put(type, mock);
return mock;
}
public <T> T registerMock(final Class<T> type, final T mock) {
globalMock.put(type, mock);
return mock;
}
public <T> T get(final Class<T> type) {
try {
List<Object> collection = (List<Object>) requireNonNull(globalMock.get(type));
T m = (T) collection.get(collection.size() - 1);
return m;
} catch (ArrayIndexOutOfBoundsException ex) {
throw new IllegalStateException("Not found: " + type);
}
}
public <T> T first(final Class<T> type) {
List<Object> collection = (List<Object>) requireNonNull(globalMock.get(type),
"Mock not found: " + type);
return (T) collection.get(0);
}
public MockUnit expect(final Block block) {
blocks.add(requireNonNull(block, "A block is required."));
return this;
}
public MockUnit run(final Block... blocks) throws Exception {
for (Block block : this.blocks) {
try {
block.run(this);
} catch (Exception | AssertionError ex) {
throw ex;
} catch (Throwable ex) {
Throwables.propagate(ex);
}
}
mockClasses.forEach(PowerMock::replay);
partialMocks.forEach(PowerMock::replay);
mocks.forEach(EasyMock::replay);
for (Block main : blocks) {
try {
main.run(this);
} catch (Exception | AssertionError ex) {
throw ex;
} catch (Throwable ex) {
Throwables.propagate(ex);
}
}
mocks.forEach(EasyMock::verify);
partialMocks.forEach(PowerMock::verify);
mockClasses.forEach(PowerMock::verify);
return this;
}
public <T> T mockConstructor(final Class<T> type, final Class<?>[] paramTypes,
final Object... args) throws Exception {
mockClasses.add(type);
T mock = PowerMock.createMockAndExpectNew(type, paramTypes, args);
partialMocks.add(mock);
return mock;
}
public <T> T mockConstructor(final Class<T> type, final Object... args) throws Exception {
Class[] types = new Class[args.length];
for (int i = 0; i < types.length; i++) {
types[i] = args[i].getClass();
}
return mockConstructor(type, types, args);
}
public <T> ConstructorBuilder<T> constructor(final Class<T> type) {
return new ConstructorBuilder<T>(type);
}
}