blob: 31134f656f12af1d7063a228df4e54b747c13bd5 (
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
|
package com.vaadin.tests.themes;
import com.vaadin.tests.tb3.SingleBrowserTest;
import org.junit.Test;
import java.net.HttpURLConnection;
import java.net.URL;
import static org.hamcrest.CoreMatchers.is;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.junit.Assert.fail;
//Extending SingleBrowserTest just to include the test into our test suites.
public class FaviconTest extends SingleBrowserTest {
@Test
public void chameleonHasFavicon() {
assertThatThemeHasFavicon("chameleon");
}
@Test
public void liferayHasFavicon() {
assertThatThemeHasFavicon("liferay");
}
@Test
public void runoHasFavicon() {
assertThatThemeHasFavicon("runo");
}
@Test
public void reindeerHasFavicon() {
assertThatThemeHasFavicon("reindeer");
}
@Test
public void valoHasFavicon() {
assertThatThemeHasFavicon("valo");
}
private void assertThatThemeHasFavicon(String theme) {
assertThat(getResponseCode(theme), is(200));
}
private int getResponseCode(String theme) {
try {
URL url = new URL(String.format("%s/VAADIN/themes/%s/favicon.ico", getBaseURL(), theme));
HttpURLConnection connection = (HttpURLConnection)url.openConnection();
connection.setRequestMethod("GET");
connection.connect();
return connection.getResponseCode();
} catch (Exception e) {
fail(e.getMessage());
}
return 0;
}
}
|