blob: 617899891d09558e313efc9c8ad5131b8072f6e4 (
plain)
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
|
/*
* Copyright (C) 2009-2014 SonarSource SA
* All rights reserved
* mailto:contact AT sonarsource DOT com
*/
package server.suite;
import com.sonar.orchestrator.Orchestrator;
import com.sonar.orchestrator.selenium.Selenese;
import java.io.IOException;
import java.util.List;
import java.util.Map;
import org.apache.commons.io.IOUtils;
import org.apache.commons.lang.StringUtils;
import org.apache.http.HttpResponse;
import org.apache.http.client.HttpClient;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.impl.client.DefaultHttpClient;
import org.apache.http.util.EntityUtils;
import org.json.simple.JSONValue;
import org.junit.ClassRule;
import org.junit.Test;
import org.sonar.wsclient.services.Server;
import org.sonar.wsclient.services.ServerQuery;
import selenium.SeleneseTest;
import static org.assertj.core.api.Assertions.assertThat;
import static org.junit.Assert.fail;
public class ServerAdministrationTest {
@ClassRule
public static final Orchestrator orchestrator = ServerTestSuite.ORCHESTRATOR;
@Test
public void get_sonar_version() {
String version = orchestrator.getServer().getWsClient().find(new ServerQuery()).getVersion();
if (!StringUtils.startsWithAny(version, new String[] {"5.", "6."})) {
fail("Bad version: " + version);
}
}
@Test
public void get_server_status() {
assertThat(orchestrator.getServer().getWsClient().find(new ServerQuery()).getStatus()).isEqualTo(Server.Status.UP);
}
@Test
public void generate_server_id() {
Selenese selenese = Selenese.builder().setHtmlTestsInClasspath("server_id",
"/server/ServerAdministrationTest/server_id/missing_ip.html",
// SONAR-4102
"/server/ServerAdministrationTest/server_id/organisation_must_not_accept_special_chars.html",
"/server/ServerAdministrationTest/server_id/valid_id.html").build();
new SeleneseTest(selenese).runOn(orchestrator);
}
@Test
public void display_system_info() {
Selenese selenese = Selenese.builder().setHtmlTestsInClasspath("server-administration",
"/server/ServerAdministrationTest/server-administration/system_info.html"
).build();
new SeleneseTest(selenese).runOn(orchestrator);
}
/**
* SONAR-3147
*/
@Test
public void test_widgets_web_service() throws IOException {
HttpClient httpclient = new DefaultHttpClient();
try {
HttpGet get = new HttpGet(orchestrator.getServer().getUrl() + "/api/widgets");
HttpResponse response = httpclient.execute(get);
assertThat(response.getStatusLine().getStatusCode()).isEqualTo(200);
String json = IOUtils.toString(response.getEntity().getContent());
List widgets = (List) JSONValue.parse(json);
assertThat(widgets.size()).isGreaterThan(10);
// quick test of the first widget
assertThat(((Map) widgets.get(0)).get("title")).isNotNull();
EntityUtils.consume(response.getEntity());
} finally {
httpclient.getConnectionManager().shutdown();
}
}
/**
* SONAR-5197
*/
@Test
public void api_ws_shortcut() throws Exception {
HttpClient httpclient = new DefaultHttpClient();
try {
HttpGet get = new HttpGet(orchestrator.getServer().getUrl() + "/api");
HttpResponse response = httpclient.execute(get);
assertThat(response.getStatusLine().getStatusCode()).isEqualTo(200);
String json = IOUtils.toString(response.getEntity().getContent());
Map jsonAsMap = (Map) JSONValue.parse(json);
assertThat(jsonAsMap.get("webServices")).isNotNull();
EntityUtils.consume(response.getEntity());
} finally {
httpclient.getConnectionManager().shutdown();
}
}
}
|