Skip to content

Commit 4e93c56

Browse files
authored
[SUREFIRE-1556] fail fast on empty element names (#11)
* fail fast on empty element names
1 parent 1461e4d commit 4e93c56

File tree

3 files changed

+59
-38
lines changed

3 files changed

+59
-38
lines changed

src/main/java/org/apache/maven/shared/utils/xml/PrettyPrintXMLWriter.java

+29-23
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public class PrettyPrintXMLWriter
6060

6161
/**
6262
* @param writer not null
63-
* @param lineIndent could be null, but the normal way is some spaces.
63+
* @param lineIndent can be null, but the normal way is some spaces
6464
*/
6565
public PrettyPrintXMLWriter( PrintWriter writer, String lineIndent )
6666
{
@@ -69,7 +69,7 @@ public PrettyPrintXMLWriter( PrintWriter writer, String lineIndent )
6969

7070
/**
7171
* @param writer not null
72-
* @param lineIndent could be null, but the normal way is some spaces.
72+
* @param lineIndent can be null, but the normal way is some spaces.
7373
*/
7474
public PrettyPrintXMLWriter( Writer writer, String lineIndent )
7575
{
@@ -94,9 +94,9 @@ public PrettyPrintXMLWriter( Writer writer )
9494

9595
/**
9696
* @param writer not null
97-
* @param lineIndent could be null, but the normal way is some spaces.
98-
* @param encoding could be null or invalid.
99-
* @param doctype could be null.
97+
* @param lineIndent can be null, but the normal way is some spaces
98+
* @param encoding can be null or invalid
99+
* @param doctype can be null
100100
*/
101101
public PrettyPrintXMLWriter( PrintWriter writer, String lineIndent, String encoding, String doctype )
102102
{
@@ -105,9 +105,9 @@ public PrettyPrintXMLWriter( PrintWriter writer, String lineIndent, String encod
105105

106106
/**
107107
* @param writer not null
108-
* @param lineIndent could be null, but the normal way is some spaces.
109-
* @param encoding could be null or invalid.
110-
* @param doctype could be null.
108+
* @param lineIndent can be null, but the normal way is some spaces
109+
* @param encoding can be null or invalid
110+
* @param doctype can be null
111111
*/
112112
public PrettyPrintXMLWriter( Writer writer, String lineIndent, String encoding, String doctype )
113113
{
@@ -116,8 +116,8 @@ public PrettyPrintXMLWriter( Writer writer, String lineIndent, String encoding,
116116

117117
/**
118118
* @param writer not null
119-
* @param encoding could be null or invalid.
120-
* @param doctype could be null.
119+
* @param encoding can be null or invalid
120+
* @param doctype can be null
121121
*/
122122
public PrettyPrintXMLWriter( PrintWriter writer, String encoding, String doctype )
123123
{
@@ -126,8 +126,8 @@ public PrettyPrintXMLWriter( PrintWriter writer, String encoding, String doctype
126126

127127
/**
128128
* @param writer not null
129-
* @param encoding could be null or invalid.
130-
* @param doctype could be null.
129+
* @param encoding can be null or invalid
130+
* @param doctype can be null
131131
*/
132132
public PrettyPrintXMLWriter( Writer writer, String encoding, String doctype )
133133
{
@@ -136,10 +136,10 @@ public PrettyPrintXMLWriter( Writer writer, String encoding, String doctype )
136136

137137
/**
138138
* @param writer not null
139-
* @param lineIndent could be null, but the normal way is some spaces.
140-
* @param lineSeparator could be null, but the normal way is valid line separator
141-
* @param encoding could be null or the encoding to use.
142-
* @param doctype could be null.
139+
* @param lineIndent can be null, but the normal way is some spaces.
140+
* @param lineSeparator can be null, but the normal way is valid line separator
141+
* @param encoding can be null or the encoding to use.
142+
* @param doctype can be null
143143
*/
144144
public PrettyPrintXMLWriter( PrintWriter writer, String lineIndent, String lineSeparator, String encoding,
145145
String doctype )
@@ -149,10 +149,10 @@ public PrettyPrintXMLWriter( PrintWriter writer, String lineIndent, String lineS
149149

150150
/**
151151
* @param writer not null
152-
* @param lineIndent could be null, but the normal way is some spaces.
153-
* @param lineSeparator could be null, but the normal way is valid line separator
154-
* @param encoding could be null or the encoding to use.
155-
* @param doctype could be null.
152+
* @param lineIndent can be null, but the normal way is some spaces
153+
* @param lineSeparator can be null, but the normal way is valid line separator
154+
* @param encoding can be null or the encoding to use
155+
* @param doctype can be null
156156
*/
157157
private PrettyPrintXMLWriter( PrintWriter writer, char[] lineIndent, char[] lineSeparator, String encoding,
158158
String doctype )
@@ -211,7 +211,7 @@ public void setDocType( String docType )
211211
}
212212

213213
/**
214-
* @param lineSeparator The line separator to be used.
214+
* @param lineSeparator the line separator to be output
215215
*/
216216
public void setLineSeparator( String lineSeparator )
217217
{
@@ -224,7 +224,7 @@ public void setLineSeparator( String lineSeparator )
224224
}
225225

226226
/**
227-
* @param lineIndentParameter The line indent parameter.
227+
* @param lineIndentParameter the line indent parameter
228228
*/
229229
public void setLineIndenter( String lineIndentParameter )
230230
{
@@ -239,6 +239,12 @@ public void setLineIndenter( String lineIndentParameter )
239239
/** {@inheritDoc} */
240240
public void startElement( String elementName ) throws IOException
241241
{
242+
243+
if ( elementName.isEmpty() )
244+
{
245+
throw new IllegalArgumentException( "Element name cannot be empty" );
246+
}
247+
242248
boolean firstLine = ensureDocumentStarted();
243249

244250
completePreviouslyOpenedElement();
@@ -325,7 +331,7 @@ public void endElement() throws IOException
325331
}
326332

327333
/**
328-
* Write the documents if not already done.
334+
* Write the document if not already done.
329335
*
330336
* @return <code>true</code> if the document headers have freshly been written.
331337
*/

src/main/java/org/apache/maven/shared/utils/xml/XMLWriter.java

+15-11
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,15 @@ public interface XMLWriter
3030

3131
/**
3232
* Sets the encoding of the document.
33-
* If not set, UTF-8 is being used
33+
* If not set, UTF-8 is used.
3434
*
3535
* @param encoding the encoding
3636
* @throws IllegalStateException if the generation of the document has already started
3737
*/
3838
void setEncoding( String encoding );
3939

4040
/**
41-
* Sets the docType of the document.
41+
* Sets the DOCTYPE of the document.
4242
*
4343
* @param docType the docType
4444
* @throws IllegalStateException if the generation of the document has already started
@@ -48,15 +48,17 @@ public interface XMLWriter
4848

4949
/**
5050
* Start an XML Element tag.
51-
* @param name The name of the tag.
52-
* @throws IOException if starting the element fails.
51+
*
52+
* @param name the name of the tag
53+
* @throws IOException if starting the element fails
5354
*/
5455
void startElement( String name ) throws IOException;
5556

5657

5758
/**
5859
* Add a XML attribute to the current XML Element.
59-
* This method must get called immediately after {@link #startElement(String)}
60+
* This method must get called immediately after {@link #startElement(String)}.
61+
*
6062
* @param key The key of the attribute.
6163
* @param value The value of the attribute.
6264
* @throws IllegalStateException if no element tag is currently in process
@@ -65,19 +67,21 @@ public interface XMLWriter
6567
void addAttribute( String key, String value ) throws IOException;
6668

6769
/**
68-
* Add a value text to the current element tag
69-
* This will perform XML escaping to guarantee valid content
70+
* Add text to the current element tag.
71+
* This performs XML escaping to guarantee well-formed content.
72+
*
7073
* @param text The text which should be written.
7174
* @throws IllegalStateException if no element tag got started yet
7275
* @throws IOException if writing the text fails.
7376
*/
7477
void writeText( String text ) throws IOException;
7578

7679
/**
77-
* Add a preformatted markup to the current element tag
78-
* @param text The text which should be written.
79-
* @throws IllegalStateException if no element tag got started yet
80-
* @throws IOException if writing the markup fails.
80+
* Add preformatted markup to the current element tag.
81+
*
82+
* @param text the text which should be written
83+
* @throws IllegalStateException if no element tag is started yet
84+
* @throws IOException if writing the markup fails
8185
*/
8286
void writeMarkup( String text ) throws IOException;
8387

src/test/java/org/apache/maven/shared/utils/xml/PrettyPrintXmlWriterTest.java

+15-4
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,8 @@
2020
*/
2121

2222
import java.io.IOException;
23-
24-
import javax.swing.text.html.HTML;
2523
import java.io.StringWriter;
24+
import javax.swing.text.html.HTML;
2625

2726
import org.apache.maven.shared.utils.StringUtils;
2827
import org.junit.Assert;
@@ -32,13 +31,25 @@
3231
* Test of {@link PrettyPrintXMLWriter}
3332
*
3433
* @author <a href="mailto:[email protected]">Vincent Siveton</a>
35-
*
3634
*/
3735
public class PrettyPrintXmlWriterTest
3836
{
39-
private StringWriter w = new StringWriter();
37+
private StringWriter w = new StringWriter();;
4038
private PrettyPrintXMLWriter writer = new PrettyPrintXMLWriter( w );
4139

40+
@Test
41+
public void testNoStartTag() throws IOException
42+
{
43+
44+
try {
45+
writer.startElement( "" );
46+
Assert.fail( "allowed empty name" );
47+
} catch ( IllegalArgumentException ex ) {
48+
Assert.assertEquals( "Element name cannot be empty", ex.getMessage() );
49+
}
50+
51+
}
52+
4253
@Test
4354
public void testDefaultPrettyPrintXMLWriter() throws IOException
4455
{

0 commit comments

Comments
 (0)