-
Notifications
You must be signed in to change notification settings - Fork 238
Expand file tree
/
Copy pathAllureJupiter.java
More file actions
234 lines (209 loc) · 9.89 KB
/
AllureJupiter.java
File metadata and controls
234 lines (209 loc) · 9.89 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
/*
* Copyright 2016-2026 Qameta Software Inc
*
* 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 io.qameta.allure.jupiter;
import io.qameta.allure.Param;
import io.qameta.allure.model.Status;
import io.qameta.allure.model.StatusDetails;
import io.qameta.allure.util.ObjectUtils;
import io.qameta.allure.util.ResultsUtils;
import org.junit.jupiter.api.extension.ExtensionContext;
import org.junit.jupiter.api.extension.InvocationInterceptor;
import org.junit.jupiter.api.extension.ReflectiveInvocationContext;
import java.lang.reflect.Method;
import java.lang.reflect.Parameter;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import java.util.UUID;
import java.util.stream.Stream;
import static io.qameta.allure.junitplatform.AllureJunitPlatform.ALLURE_FIXTURE;
import static io.qameta.allure.junitplatform.AllureJunitPlatform.ALLURE_PARAMETER;
import static io.qameta.allure.junitplatform.AllureJunitPlatform.ALLURE_PARAMETER_EXCLUDED_KEY;
import static io.qameta.allure.junitplatform.AllureJunitPlatform.ALLURE_PARAMETER_MODE_KEY;
import static io.qameta.allure.junitplatform.AllureJunitPlatform.ALLURE_PARAMETER_VALUE_KEY;
import static io.qameta.allure.junitplatform.AllureJunitPlatform.ALLURE_REPORT_ENTRY_BLANK_PREFIX;
import static io.qameta.allure.junitplatform.AllureJunitPlatform.EVENT_FAILURE;
import static io.qameta.allure.junitplatform.AllureJunitPlatform.EVENT_START;
import static io.qameta.allure.junitplatform.AllureJunitPlatform.EVENT_STOP;
import static io.qameta.allure.junitplatform.AllureJunitPlatform.PREPARE;
import static io.qameta.allure.junitplatform.AllureJunitPlatform.TEAR_DOWN;
/**
* @author charlie (Dmitry Baev).
*/
@SuppressWarnings("MultipleStringLiterals")
public class AllureJupiter implements InvocationInterceptor {
private static final ExtensionContext.Namespace NAMESPACE = ExtensionContext.Namespace.create(AllureJupiter.class);
@Override
public void interceptTestTemplateMethod(final Invocation<Void> invocation,
final ReflectiveInvocationContext<Method> invocationContext,
final ExtensionContext extensionContext) throws Throwable {
if (!shouldHandle(extensionContext, "template", invocationContext.getExecutable())) {
invocation.proceed();
return;
}
sendParameterEvent(invocationContext, extensionContext);
invocation.proceed();
}
private void sendParameterEvent(final ReflectiveInvocationContext<Method> invocationContext,
final ExtensionContext extensionContext) {
final Parameter[] parameters = invocationContext.getExecutable().getParameters();
final List<Object> arguments = invocationContext.getArguments();
int argumentIndex = 0;
for (final Parameter parameter : parameters) {
final Class<?> parameterType = parameter.getType();
// Skip JUnit injectables AND synthetic parameters
if (parameterType.getCanonicalName().startsWith("org.junit.jupiter.api")
|| parameter.isSynthetic()
|| argumentIndex >= arguments.size()) {
continue;
}
final Object value = arguments.get(argumentIndex++);
final Map<String, String> map = new HashMap<>();
map.put(ALLURE_PARAMETER, parameter.getName());
map.put(ALLURE_PARAMETER_VALUE_KEY, ObjectUtils.toString(value));
Stream.of(parameter.getAnnotationsByType(Param.class))
.findFirst()
.ifPresent(param -> {
Stream.of(param.value(), param.name())
.map(String::trim)
.filter(name -> !name.isEmpty())
.findFirst()
.ifPresent(name -> map.put(ALLURE_PARAMETER, name));
map.put(ALLURE_PARAMETER_MODE_KEY, param.mode().name());
map.put(ALLURE_PARAMETER_EXCLUDED_KEY, Boolean.toString(param.excluded()));
});
extensionContext.publishReportEntry(wrap(map));
}
}
@Override
public void interceptBeforeAllMethod(
final Invocation<Void> invocation,
final ReflectiveInvocationContext<Method> invocationContext,
final ExtensionContext extensionContext) throws Throwable {
processFixture(PREPARE, invocation, invocationContext, extensionContext);
}
@Override
public void interceptAfterAllMethod(
final Invocation<Void> invocation,
final ReflectiveInvocationContext<Method> invocationContext,
final ExtensionContext extensionContext) throws Throwable {
processFixture(TEAR_DOWN, invocation, invocationContext, extensionContext);
}
@Override
public void interceptBeforeEachMethod(
final Invocation<Void> invocation,
final ReflectiveInvocationContext<Method> invocationContext,
final ExtensionContext extensionContext) throws Throwable {
processFixture(PREPARE, invocation, invocationContext, extensionContext);
}
@Override
public void interceptAfterEachMethod(
final Invocation<Void> invocation,
final ReflectiveInvocationContext<Method> invocationContext,
final ExtensionContext extensionContext) throws Throwable {
processFixture(TEAR_DOWN, invocation, invocationContext, extensionContext);
}
protected void processFixture(final String type,
final Invocation<Void> invocation,
final ReflectiveInvocationContext<Method> invocationContext,
final ExtensionContext extensionContext) throws Throwable {
if (!shouldHandle(extensionContext, type, invocationContext.getExecutable())) {
invocation.proceed();
return;
}
final String uuid = UUID.randomUUID().toString();
try {
extensionContext.publishReportEntry(wrap(buildStartEvent(
type,
uuid,
invocationContext.getExecutable()
)));
invocation.proceed();
extensionContext.publishReportEntry(wrap(buildStopEvent(
type,
uuid
)));
} catch (Throwable throwable) {
extensionContext.publishReportEntry(wrap(buildFailureEvent(
type,
uuid,
throwable
)));
throw throwable;
}
}
public Map<String, String> buildStartEvent(final String type,
final String uuid,
final Method method) {
final Map<String, String> map = new HashMap<>();
map.put(ALLURE_FIXTURE, type);
map.put("event", EVENT_START);
map.put("uuid", uuid);
map.put("name", method.getName());
return map;
}
public Map<String, String> buildStopEvent(final String type,
final String uuid) {
final Map<String, String> map = new HashMap<>();
map.put(ALLURE_FIXTURE, type);
map.put("event", EVENT_STOP);
map.put("uuid", uuid);
return map;
}
public Map<String, String> buildFailureEvent(final String type,
final String uuid,
final Throwable throwable) {
final Map<String, String> map = new HashMap<>();
map.put(ALLURE_FIXTURE, type);
map.put("event", EVENT_FAILURE);
map.put("uuid", uuid);
final Optional<Status> maybeStatus = ResultsUtils.getStatus(throwable);
maybeStatus.map(Status::value).ifPresent(status -> map.put("status", status));
final Optional<StatusDetails> maybeDetails = ResultsUtils.getStatusDetails(throwable);
maybeDetails.map(StatusDetails::getMessage).ifPresent(message -> map.put("message", message));
maybeDetails.map(StatusDetails::getTrace).ifPresent(trace -> map.put("trace", trace));
return map;
}
@SuppressWarnings("PMD.InefficientEmptyStringCheck")
public Map<String, String> wrap(final Map<String, String> data) {
final Map<String, String> res = new HashMap<>();
data.forEach((key, value) -> {
if (Objects.isNull(value) || value.trim().isEmpty()) {
res.put(key, ALLURE_REPORT_ENTRY_BLANK_PREFIX + value);
} else {
res.put(key, value);
}
}
);
return res;
}
private boolean shouldHandle(final ExtensionContext extensionContext,
final String eventType,
final Method method) {
final Object marker = new Object();
final String key = String.join(":",
extensionContext.getUniqueId(),
eventType,
method.toGenericString()
);
final Object storedMarker = extensionContext.getRoot()
.getStore(NAMESPACE)
.getOrComputeIfAbsent(key, ignored -> marker);
return marker.equals(storedMarker);
}
}