aboutsummaryrefslogtreecommitdiff
path: root/org.jacoco.report.test/src/org/jacoco/report/internal/html/HTMLElementTest.java
blob: 159826cbcb144076ea94287e1c63e775386002e6 (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
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
/*******************************************************************************
 * Copyright (c) 2009, 2017 Mountainminds GmbH & Co. KG and Contributors
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *    Marc R. Hoffmann - initial API and implementation
 *    
 *******************************************************************************/
package org.jacoco.report.internal.html;

import static org.junit.Assert.assertEquals;

import java.io.IOException;
import java.io.StringWriter;

import org.junit.Before;
import org.junit.Test;

/**
 * Unit tests for {@link HTMLElement}.
 */
public class HTMLElementTest {

	private StringWriter buffer;

	private HTMLElement root;

	@Before
	public void setUp() throws IOException {
		buffer = new StringWriter();
		root = new HTMLElement(buffer, "root") {
			{
				beginOpenTag();
			}
		};
	}

	@Test
	public void testMeta() throws IOException {
		root.meta("key", "value");
		root.close();
		assertEquals(
				"<root><meta http-equiv=\"key\" content=\"value\"/></root>",
				buffer.toString());
	}

	@Test
	public void testLink() throws IOException {
		root.link("stylesheet", "style.css", "text/css");
		root.close();
		assertEquals(
				"<root><link rel=\"stylesheet\" href=\"style.css\" type=\"text/css\"/></root>",
				buffer.toString());
	}

	@Test
	public void testTitle() throws IOException {
		root.title();
		root.close();
		assertEquals("<root><title/></root>", buffer.toString());
	}

	@Test
	public void testH1() throws IOException {
		root.h1();
		root.close();
		assertEquals("<root><h1/></root>", buffer.toString());
	}

	@Test
	public void testP() throws IOException {
		root.p();
		root.close();
		assertEquals("<root><p/></root>", buffer.toString());
	}

	@Test
	public void testSpan1() throws IOException {
		root.span();
		root.close();
		assertEquals("<root><span/></root>", buffer.toString());
	}

	@Test
	public void testSpan2() throws IOException {
		root.span("abc");
		root.close();
		assertEquals("<root><span class=\"abc\"/></root>", buffer.toString());
	}

	@Test
	public void testSpan3() throws IOException {
		root.span("abc", "xy");
		root.close();
		assertEquals("<root><span class=\"abc\" id=\"xy\"/></root>",
				buffer.toString());
	}

	@Test
	public void testPre() throws IOException {
		root.pre("mystyle");
		root.close();
		assertEquals("<root><pre class=\"mystyle\"/></root>", buffer.toString());
	}

	@Test
	public void testDiv() throws IOException {
		root.div("mystyle");
		root.close();
		assertEquals("<root><div class=\"mystyle\"/></root>", buffer.toString());
	}

	@Test
	public void testCode() throws IOException {
		root.code().text("0xCAFEBABE");
		root.close();
		assertEquals("<root><code>0xCAFEBABE</code></root>", buffer.toString());
	}

	@Test
	public void testA1() throws IOException {
		root.a("http://www.jacoco.org/");
		root.close();
		assertEquals("<root><a href=\"http://www.jacoco.org/\"/></root>",
				buffer.toString());
	}

	@Test
	public void testA2() throws IOException {
		root.a("http://www.jacoco.org/", "extern");
		root.close();
		assertEquals(
				"<root><a href=\"http://www.jacoco.org/\" class=\"extern\"/></root>",
				buffer.toString());
	}

	@Test
	public void testALinkable1() throws IOException {
		root.a(new LinkableStub(null, "here", null), null);
		root.close();
		assertEquals("<root><span>here</span></root>", buffer.toString());
	}

	@Test
	public void testALinkable2() throws IOException {
		root.a(new LinkableStub(null, "here", "blue"), null);
		root.close();
		assertEquals("<root><span class=\"blue\">here</span></root>",
				buffer.toString());
	}

	@Test
	public void testALinkable3() throws IOException {
		root.a(new LinkableStub("index.html", "here", null), null);
		root.close();
		assertEquals("<root><a href=\"index.html\">here</a></root>",
				buffer.toString());
	}

	@Test
	public void testALinkable4() throws IOException {
		root.a(new LinkableStub("index.html", "here", "red"), null);
		root.close();
		assertEquals(
				"<root><a href=\"index.html\" class=\"red\">here</a></root>",
				buffer.toString());
	}

	@Test
	public void testTable() throws IOException {
		root.table("tablestyle");
		root.close();
		assertEquals(
				"<root><table class=\"tablestyle\" cellspacing=\"0\"/></root>",
				buffer.toString());
	}

	@Test
	public void testThead() throws IOException {
		root.thead();
		root.close();
		assertEquals("<root><thead/></root>", buffer.toString());
	}

	@Test
	public void testTfoot() throws IOException {
		root.tfoot();
		root.close();
		assertEquals("<root><tfoot/></root>", buffer.toString());
	}

	@Test
	public void testTbody() throws IOException {
		root.tbody();
		root.close();
		assertEquals("<root><tbody/></root>", buffer.toString());
	}

	@Test
	public void testTr() throws IOException {
		root.tr();
		root.close();
		assertEquals("<root><tr/></root>", buffer.toString());
	}

	@Test
	public void testTd1() throws IOException {
		root.td();
		root.close();
		assertEquals("<root><td/></root>", buffer.toString());
	}

	@Test
	public void testTd2() throws IOException {
		root.td("mystyle");
		root.close();
		assertEquals("<root><td class=\"mystyle\"/></root>", buffer.toString());
	}

	@Test
	public void testImg() throws IOException {
		root.img("sample.gif", 16, 32, "Hello");
		root.close();
		assertEquals(
				"<root><img src=\"sample.gif\" width=\"16\" height=\"32\" title=\"Hello\" alt=\"Hello\"/></root>",
				buffer.toString());
	}

	@Test
	public void testScript() throws IOException {
		root.script("text/javascript", "file.js");
		root.close();
		assertEquals(
				"<root><script type=\"text/javascript\" src=\"file.js\"></script></root>",
				buffer.toString());
	}

}