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
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
|
/*
* SonarQube
* Copyright (C) 2009-2025 SonarSource SA
* mailto:info AT sonarsource DOT com
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
package org.sonarqube.ws.tester;
import com.google.common.util.concurrent.Uninterruptibles;
import com.google.gson.Gson;
import java.util.List;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.atomic.AtomicInteger;
import java.util.function.Consumer;
import javax.annotation.CheckForNull;
import javax.annotation.Nullable;
import org.junit.rules.ExternalResource;
import org.sonarqube.ws.Ce;
import org.sonarqube.ws.client.PostRequest;
import org.sonarqube.ws.client.applications.ApplicationsService;
import org.sonarqube.ws.client.applications.CreateRequest;
import org.sonarqube.ws.client.applications.DeleteRequest;
import org.sonarqube.ws.client.applications.SearchProjectsRequest;
import org.sonarqube.ws.client.applications.ShowRequest;
import org.sonarqube.ws.client.applications.UpdateRequest;
import org.sonarqube.ws.client.ce.ActivityStatusRequest;
import org.sonarqube.ws.client.projects.ProjectsService;
import org.sonarqube.ws.client.projects.SearchRequest;
import static java.util.Arrays.stream;
import static java.util.Collections.singletonList;
import static org.assertj.core.api.Assertions.assertThat;
public class ApplicationTester extends ExternalResource {
private static final AtomicInteger ID_GENERATOR = new AtomicInteger();
private final TesterSession session;
ApplicationTester(TesterSession session) {
this.session = session;
}
public ApplicationsService service() {
return session.wsClient().applications();
}
public void deleteAll() {
ProjectsService service = session.wsClient().projects();
service.search(new SearchRequest().setQualifiers(singletonList("APP"))).getComponentsList()
.forEach(p -> {
waitForCeQueueEmpty();
session.wsClient().applications().delete(new DeleteRequest().setApplication(p.getKey()));
});
waitForCeQueueEmpty();
org.sonarqube.ws.client.components.SearchRequest searchRequest = new org.sonarqube.ws.client.components.SearchRequest().setQualifiers(singletonList("APP"));
assertThat(session.wsClient().components().search(searchRequest).getComponentsList()).isEmpty();
}
public void updateName(String applicationKey, String name) {
service().update(new UpdateRequest().setApplication(applicationKey).setName(name));
}
public ApplicationTester waitForCeQueueEmpty() {
Ce.ActivityStatusWsResponse status;
boolean empty;
do {
status = session.wsClient().ce().activityStatus(new ActivityStatusRequest());
empty = status.getInProgress() + status.getPending() == 0;
if (!empty) {
Uninterruptibles.sleepUninterruptibly(100, TimeUnit.MILLISECONDS);
}
} while (!empty);
return this;
}
@SafeVarargs
public final Application generate(Consumer<CreateRequest>... populators) {
int id = ID_GENERATOR.getAndIncrement();
CreateRequest request = new CreateRequest()
.setKey("applicationKey" + id)
.setName("applicationName" + id)
.setDescription("applicationDescription" + id);
stream(populators).forEach(p -> p.accept(request));
return CreateResponse.parse(session.wsClient().applications().create(request)).getApplication();
}
public ShowResponse show(ShowRequest showRequest) {
return ShowResponse.parse(session.wsClient().applications().show(showRequest));
}
public void refresh() {
session.wsClient().wsConnector().call(new PostRequest("/api/applications/refresh")).failIfNotSuccessful();
waitForCeQueueEmpty();
}
public SearchProjectsResponse searchProjects(SearchProjectsRequest searchProjectsRequest) {
return SearchProjectsResponse.parse(session.wsClient().applications().searchProjects(searchProjectsRequest));
}
public static class CreateResponse {
private final Application application;
public CreateResponse(Application application) {
this.application = application;
}
public Application getApplication() {
return application;
}
public static CreateResponse parse(String json) {
Gson gson = new Gson();
return gson.fromJson(json, CreateResponse.class);
}
}
public static class ShowResponse {
private final Application application;
public ShowResponse(Application application) {
this.application = application;
}
public Application getApplication() {
return application;
}
public static ShowResponse parse(String json) {
Gson gson = new Gson();
return gson.fromJson(json, ShowResponse.class);
}
}
public static class SearchProjectsResponse {
private final Paging paging;
private final List<Project> projects;
public SearchProjectsResponse(Paging paging, List<Project> projects) {
this.paging = paging;
this.projects = projects;
}
public Paging getPaging() {
return paging;
}
public List<Project> getProjects() {
return projects;
}
public static SearchProjectsResponse parse(String json) {
Gson gson = new Gson();
return gson.fromJson(json, SearchProjectsResponse.class);
}
public static class Project {
private final String key;
private final String name;
private final boolean enabled;
private final boolean selected;
public Project(String key, String name, boolean enabled, boolean selected) {
this.key = key;
this.name = name;
this.enabled = enabled;
this.selected = selected;
}
public String getKey() {
return key;
}
public String getName() {
return name;
}
public boolean isEnabled() {
return enabled;
}
public boolean isSelected() {
return selected;
}
}
}
public static class Paging {
public final int pageIndex;
public final int pageSize;
public final int total;
public Paging(int pageIndex, int pageSize, int total) {
this.pageIndex = pageIndex;
this.pageSize = pageSize;
this.total = total;
}
public int getPageIndex() {
return pageIndex;
}
public int getPageSize() {
return pageSize;
}
public int getTotal() {
return total;
}
}
public static class Application {
private final String key;
private final String branch;
private final boolean isMain;
private final String name;
private final String description;
private final String visibility;
private final List<Project> projects;
private final List<Application.Branch> branches;
private final List<String> tags;
public Application(String key, String branch, boolean isMain, String name, String description, String visibility, List<Project> projects, List<Branch> branches,
List<String> tags) {
this.key = key;
this.branch = branch;
this.isMain = isMain;
this.name = name;
this.description = description;
this.visibility = visibility;
this.projects = projects;
this.branches = branches;
this.tags = tags;
}
public String getKey() {
return key;
}
public String getBranch() {
return branch;
}
public boolean isMain() {
return isMain;
}
public String getName() {
return name;
}
public String getDescription() {
return description;
}
public String getVisibility() {
return visibility;
}
public List<Application.Project> getProjects() {
return projects;
}
public List<String> getTags() {
return tags;
}
@CheckForNull
public List<Application.Branch> getBranches() {
return branches;
}
public static class Project {
private final String key;
private final String branch;
private final Boolean isMain;
private final String name;
private final boolean enabled;
private final Boolean selected;
public Project(String key, String branch, @Nullable Boolean isMain, String name, boolean enabled, @Nullable Boolean selected) {
this.key = key;
this.branch = branch;
this.isMain = isMain;
this.name = name;
this.enabled = enabled;
this.selected = selected;
}
public String getKey() {
return key;
}
@CheckForNull
public String getBranch() {
return branch;
}
@CheckForNull
public Boolean isMain() {
return isMain;
}
public String getName() {
return name;
}
public boolean isEnabled() {
return enabled;
}
@CheckForNull
public Boolean isSelected() {
return selected;
}
}
public static class Branch {
private final String name;
private final boolean isMain;
public Branch(String name, boolean isMain) {
this.name = name;
this.isMain = isMain;
}
public String getName() {
return name;
}
public boolean isMain() {
return isMain;
}
}
}
}
|