20
20
* or visit www.oracle.com if you need additional information or have any
21
21
* questions.
22
22
*/
23
-
24
23
package common .prettyprint ;
25
24
25
+ import java .io .ByteArrayInputStream ;
26
26
import static jaxp .library .JAXPTestUtilities .clearSystemProperty ;
27
27
import static jaxp .library .JAXPTestUtilities .setSystemProperty ;
28
28
66
66
67
67
/*
68
68
* @test
69
- * @bug 6439439 8087303 8174025 8223291 8249867 8261209
69
+ * @bug 6439439 8087303 8174025 8223291 8249867 8261209 8260858
70
70
* @library /javax/xml/jaxp/libs /javax/xml/jaxp/unittest
71
71
* @run testng/othervm -DrunSecMngr=true common.prettyprint.PrettyPrintTest
72
72
* @run testng/othervm common.prettyprint.PrettyPrintTest
73
73
* @summary Test serializing xml and html with indentation.
74
74
*/
75
75
@ Listeners ({jaxp .library .FilePolicy .class })
76
76
public class PrettyPrintTest {
77
+
77
78
private static final String DOM_FORMAT_PRETTY_PRINT = "format-pretty-print" ;
78
- private static final String JDK_IS_STANDALONE =
79
- "http://www.oracle.com/xml/jaxp/properties/isStandalone" ;
79
+ private static final String JDK_IS_STANDALONE
80
+ = "http://www.oracle.com/xml/jaxp/properties/isStandalone" ;
80
81
private static final String SP_JDK_IS_STANDALONE = "jdk.xml.isStandalone" ;
82
+ private static final String XSLTC_IS_STANDALONE
83
+ = "http://www.oracle.com/xml/jaxp/properties/xsltcIsStandalone" ;
84
+ private static final String SP_XSLTC_IS_STANDALONE = "jdk.xml.xsltcIsStandalone" ;
85
+
81
86
// pretty-print=true, isStandalone=true, linebreak added after header
82
87
private static final String XML_LB
83
88
= "<?xml version=\" 1.0\" encoding=\" UTF-8\" ?>\n <sometag/>\n " ;
@@ -87,19 +92,32 @@ public class PrettyPrintTest {
87
92
// pretty-print=false, isStandalone=true, linebreak added after header
88
93
private static final String XML_PPFALSE_LB
89
94
= "<?xml version=\" 1.0\" encoding=\" UTF-8\" ?>\n <sometag/>" ;
95
+
96
+ private static final String XSL = "<?xml version=\" 1.0\" ?>\n "
97
+ + "<xsl:stylesheet version=\" 1.0\" xmlns:xsl=\" http://www.w3.org/1999/XSL/Transform\" >\n "
98
+ + "\n "
99
+ + "<!--Identity template, copies all content into the output -->\n "
100
+ + " <xsl:template match=\" @*|node()\" >\n "
101
+ + " <xsl:copy>\n "
102
+ + " <xsl:apply-templates select=\" @*|node()\" />\n "
103
+ + " </xsl:copy>\n "
104
+ + " </xsl:template>\n "
105
+ + "\n "
106
+ + "</xsl:stylesheet>" ;
107
+
90
108
/*
91
109
* test CDATA, elements only, text and element, xml:space property, mixed
92
110
* node types.
93
111
*/
94
112
@ DataProvider (name = "xml-data" )
95
113
public Object [][] xmlData () throws Exception {
96
- return new Object [][] {
97
- { "xmltest1.xml" , "xmltest1.out" },
98
- { "xmltest2.xml" , "xmltest2.out" },
99
- { "xmltest3.xml" , "xmltest3.out" },
100
- { "xmltest4.xml" , "xmltest4.out" },
101
- { "xmltest6.xml" , "xmltest6.out" },
102
- { "xmltest8.xml" , "xmltest8.out" } };
114
+ return new Object [][]{
115
+ { "xmltest1.xml" , "xmltest1.out" },
116
+ { "xmltest2.xml" , "xmltest2.out" },
117
+ { "xmltest3.xml" , "xmltest3.out" },
118
+ { "xmltest4.xml" , "xmltest4.out" },
119
+ { "xmltest6.xml" , "xmltest6.out" },
120
+ { "xmltest8.xml" , "xmltest8.out" } };
103
121
}
104
122
105
123
/*
@@ -111,16 +129,38 @@ public Object[][] xmlData() throws Exception {
111
129
Object [][] getData () throws Exception {
112
130
return new Object [][]{
113
131
// pretty-print = true
114
- {true , false , true , true , XML_LB }, //set System property = true
132
+ {true , false , true , true , XML_LB }, //set System property = true
133
+
115
134
{true , false , true , false , XML_PPTRUE_NOLB }, //set System property = false
116
- {true , true , false , true , XML_LB }, //set property = true
135
+ {true , true , false , true , XML_LB }, //set property = true
117
136
{true , true , false , false , XML_PPTRUE_NOLB }, //set property = false
118
137
{true , false , false , false , XML_PPTRUE_NOLB },//default
119
138
120
139
// pretty-print = false
121
140
{false , false , true , true , XML_PPFALSE_LB }, //System property = true
122
- {false , true , false , true , XML_PPFALSE_LB }, //set property = true
141
+ {false , true , false , true , XML_PPFALSE_LB } //set property = true
142
+ };
143
+ }
144
+
145
+ /*
146
+ * Bug: 8249867 8260858
147
+ * DataProvider: for testing the xsltcIsStandalone property
148
+ * Data columns: xsl, pretty-print, property, system property, value, expected result
149
+ */
150
+ @ DataProvider (name = "dataWithTemplate" )
151
+ Object [][] getDataWTemplate () throws Exception {
152
+ return new Object [][]{
153
+ // pretty-print = true
154
+ {XSL , true , false , true , true , XML_LB }, //set System property = true
123
155
156
+ {XSL , true , false , true , false , XML_PPTRUE_NOLB }, //set System property = false
157
+ {XSL , true , true , false , true , XML_LB }, //set property = true
158
+ {XSL , true , true , false , false , XML_PPTRUE_NOLB }, //set property = false
159
+ {XSL , true , false , false , false , XML_PPTRUE_NOLB },//default
160
+
161
+ // pretty-print = false
162
+ {XSL , false , false , true , true , XML_PPFALSE_LB }, //System property = true
163
+ {XSL , false , true , false , true , XML_PPFALSE_LB } //set property = true
124
164
};
125
165
}
126
166
@@ -136,10 +176,36 @@ Object[][] getSystemProperty() throws Exception {
136
176
{"true" , true },
137
177
{"false" , false },
138
178
{"yes" , false },
139
- {"" , false },
179
+ {"" , false }
140
180
};
141
181
}
142
182
183
+ /*
184
+ * Bug: 8260858
185
+ * Verifies the use of the new property "xsltcIsStandalone" and the
186
+ * corresponding System property "jdk.xml.xsltcIsStandalone".
187
+ */
188
+ @ Test (dataProvider = "setting" )
189
+ public void testIsStandalone_XSLTC (boolean pretty , boolean p , boolean sp ,
190
+ boolean val , String expected )
191
+ throws Exception {
192
+ String result = transform (null , expected , false , pretty , p , sp , val );
193
+ Assert .assertEquals (result , expected );
194
+ }
195
+
196
+ /*
197
+ * Bug: 8260858
198
+ * Samiliar to testIsStandalone_XSLTC, except that the transformer is created
199
+ * from a template.
200
+ */
201
+ @ Test (dataProvider = "dataWithTemplate" )
202
+ public void testIsStandalone_Template (String xsl , boolean pretty , boolean p ,
203
+ boolean sp , boolean val , String expected )
204
+ throws Exception {
205
+ String result = transform (xsl , expected , false , pretty , p , sp , val );
206
+ Assert .assertEquals (result , expected );
207
+ }
208
+
143
209
/*
144
210
* Bug: 8249867
145
211
* Verifies the use of the new property "isStandalone" and the
@@ -157,7 +223,7 @@ public void testIsStandalone_DOMLS(boolean pretty, boolean p, boolean sp,
157
223
setSystemProperty (SP_JDK_IS_STANDALONE , Boolean .toString (val ));
158
224
}
159
225
Document document = getDocument ();
160
- DOMImplementationLS impl = (DOMImplementationLS )document .getImplementation ();
226
+ DOMImplementationLS impl = (DOMImplementationLS ) document .getImplementation ();
161
227
LSSerializer ser = impl .createLSSerializer ();
162
228
DOMConfiguration config = ser .getDomConfig ();
163
229
if (pretty ) {
@@ -265,9 +331,9 @@ public void testSequentTextNodesWithLSSerializer() throws Exception {
265
331
*/
266
332
@ DataProvider (name = "xml-data-whitespace-ls" )
267
333
public Object [][] whitespaceLS () throws Exception {
268
- return new Object [][] {
269
- { "xmltest5.xml" , "xmltest5ls.out" },
270
- { "xmltest7.xml" , "xmltest7ls.out" } };
334
+ return new Object [][]{
335
+ { "xmltest5.xml" , "xmltest5ls.out" },
336
+ { "xmltest7.xml" , "xmltest7ls.out" } };
271
337
}
272
338
273
339
/*
@@ -294,9 +360,9 @@ public void testWhitespaceWithLSSerializer(String sourceFile, String expectedFil
294
360
*/
295
361
@ DataProvider (name = "xml-data-whitespace-xslt" )
296
362
public Object [][] whitespaceXSLT () throws Exception {
297
- return new Object [][] {
298
- { "xmltest5.xml" , "xmltest5xslt.out" },
299
- { "xmltest7.xml" , "xmltest7xslt.out" } };
363
+ return new Object [][]{
364
+ { "xmltest5.xml" , "xmltest5xslt.out" },
365
+ { "xmltest7.xml" , "xmltest7xslt.out" } };
300
366
}
301
367
302
368
/*
@@ -324,15 +390,15 @@ public void testWhitespaceWithTransformer(String sourceFile, String expectedFile
324
390
*/
325
391
@ DataProvider (name = "html-data" )
326
392
public Object [][] htmlData () throws Exception {
327
- return new Object [][] {
328
- { "htmltest1.xml" , "htmltest1.out" },
329
- { "htmltest2.xml" , "htmltest2.out" },
330
- { "htmltest3.xml" , "htmltest3.out" },
331
- { "htmltest4.xml" , "htmltest4.out" },
332
- { "htmltest5.xml" , "htmltest5.out" },
333
- { "htmltest6.xml" , "htmltest6.out" },
393
+ return new Object [][]{
394
+ {"htmltest1.xml" , "htmltest1.out" },
395
+ {"htmltest2.xml" , "htmltest2.out" },
396
+ {"htmltest3.xml" , "htmltest3.out" },
397
+ {"htmltest4.xml" , "htmltest4.out" },
398
+ {"htmltest5.xml" , "htmltest5.out" },
399
+ {"htmltest6.xml" , "htmltest6.out" },
334
400
/* @bug 8174025, test whitespace between inline elements */
335
- { "htmltest7.xml" , "htmltest7.out" } };
401
+ {"htmltest7.xml" , "htmltest7.out" } };
336
402
}
337
403
338
404
/*
@@ -366,9 +432,9 @@ public void testTransformToHTML(String sourceFile, String expectedFile)
366
432
*/
367
433
@ Test
368
434
public void testDisableOutputEscaping () throws Exception {
369
- final String xsl ="generate-catalog.xsl" ;
370
- final String xml ="simple-entity-resolver-config.xml" ;
371
- final String expectedOutput ="simple-entity-resolver-config-transformed.xml" ;
435
+ final String xsl = "generate-catalog.xsl" ;
436
+ final String xml = "simple-entity-resolver-config.xml" ;
437
+ final String expectedOutput = "simple-entity-resolver-config-transformed.xml" ;
372
438
TransformerFactory factory = TransformerFactory .newInstance ();
373
439
Transformer transformer = factory .newTemplates (
374
440
new StreamSource (new StringReader (read (xsl )))).newTransformer ();
@@ -388,25 +454,25 @@ public void testLSSerializerFormatPrettyPrint() {
388
454
final String XML_DOCUMENT = "<?xml version=\" 1.0\" encoding=\" UTF-16\" ?>\n "
389
455
+ "<hello>before child element<child><children/><children/></child>"
390
456
+ "after child element</hello>" ;
391
- /**JDK-8035467
392
- * no newline in default output
457
+ /**
458
+ * JDK-8035467 no newline in default output
393
459
*/
394
- final String XML_DOCUMENT_DEFAULT_PRINT =
395
- "<?xml version=\" 1.0\" encoding=\" UTF-16\" ?>"
460
+ final String XML_DOCUMENT_DEFAULT_PRINT
461
+ = "<?xml version=\" 1.0\" encoding=\" UTF-16\" ?>"
396
462
+ "<hello>"
397
463
+ "before child element"
398
464
+ "<child><children/><children/></child>"
399
465
+ "after child element</hello>" ;
400
466
401
- final String XML_DOCUMENT_PRETTY_PRINT =
402
- "<?xml version=\" 1.0\" encoding=\" UTF-16\" ?><hello>\n " +
403
- " before child element\n " +
404
- " <child>\n " +
405
- " <children/>\n " +
406
- " <children/>\n " +
407
- " </child>\n " +
408
- " after child element\n " +
409
- "</hello>\n " ;
467
+ final String XML_DOCUMENT_PRETTY_PRINT
468
+ = "<?xml version=\" 1.0\" encoding=\" UTF-16\" ?><hello>\n "
469
+ + " before child element\n "
470
+ + " <child>\n "
471
+ + " <children/>\n "
472
+ + " <children/>\n "
473
+ + " </child>\n "
474
+ + " after child element\n "
475
+ + "</hello>\n " ;
410
476
411
477
// it all begins with a Document
412
478
DocumentBuilderFactory documentBuilderFactory = DocumentBuilderFactory .newInstance ();
@@ -443,12 +509,12 @@ public void testLSSerializerFormatPrettyPrint() {
443
509
DOMConfiguration domConfiguration = lsSerializer .getDomConfig ();
444
510
445
511
// query current configuration
446
- Boolean defaultFormatPrettyPrint =
447
- (Boolean ) domConfiguration .getParameter (DOM_FORMAT_PRETTY_PRINT );
448
- Boolean canSetFormatPrettyPrintFalse =
449
- (Boolean ) domConfiguration .canSetParameter (DOM_FORMAT_PRETTY_PRINT , Boolean .FALSE );
450
- Boolean canSetFormatPrettyPrintTrue =
451
- (Boolean ) domConfiguration .canSetParameter (DOM_FORMAT_PRETTY_PRINT , Boolean .TRUE );
512
+ Boolean defaultFormatPrettyPrint
513
+ = (Boolean ) domConfiguration .getParameter (DOM_FORMAT_PRETTY_PRINT );
514
+ Boolean canSetFormatPrettyPrintFalse
515
+ = (Boolean ) domConfiguration .canSetParameter (DOM_FORMAT_PRETTY_PRINT , Boolean .FALSE );
516
+ Boolean canSetFormatPrettyPrintTrue
517
+ = (Boolean ) domConfiguration .canSetParameter (DOM_FORMAT_PRETTY_PRINT , Boolean .TRUE );
452
518
453
519
System .out .println (DOM_FORMAT_PRETTY_PRINT + " default/can set false/can set true = "
454
520
+ defaultFormatPrettyPrint + "/"
@@ -501,8 +567,8 @@ public void testLSSerializerFormatPrettyPrint() {
501
567
502
568
private String serializerWrite (Node xml , boolean pretty ) throws Exception {
503
569
DOMImplementationRegistry registry = DOMImplementationRegistry .newInstance ();
504
- DOMImplementationLS domImplementation =
505
- (DOMImplementationLS ) registry .getDOMImplementation ("LS" );
570
+ DOMImplementationLS domImplementation
571
+ = (DOMImplementationLS ) registry .getDOMImplementation ("LS" );
506
572
StringWriter writer = new StringWriter ();
507
573
LSOutput formattedOutput = domImplementation .createLSOutput ();
508
574
formattedOutput .setCharacterStream (writer );
@@ -520,6 +586,14 @@ private String transform(Node xml, boolean pretty) throws Exception {
520
586
return writer .toString ();
521
587
}
522
588
589
+ private String transform (String xsl , String xml , boolean omit , boolean pretty , boolean p , boolean sp , boolean standalone )
590
+ throws Exception {
591
+ Transformer transformer = getTransformer (xsl , false , omit , pretty , p , sp , standalone );
592
+ StringWriter writer = new StringWriter ();
593
+ transformer .transform (new StreamSource (new StringReader (xml )), new StreamResult (writer ));
594
+ return writer .toString ();
595
+ }
596
+
523
597
private Document toXmlDocument (String xmlString ) throws Exception {
524
598
InputSource xmlInputSource = new InputSource (new StringReader (xmlString ));
525
599
DocumentBuilderFactory dbf = DocumentBuilderFactory .newInstance ();
@@ -589,12 +663,41 @@ private Document createDocWithSequentTextNodes() throws Exception {
589
663
}
590
664
591
665
private Transformer getTransformer (boolean html , boolean pretty ) throws Exception {
592
- Transformer transformer = TransformerFactory .newInstance ().newTransformer ();
666
+ return getTransformer (null , html , true , pretty , false , false , false );
667
+ }
668
+
669
+ private Transformer getTransformer (String xsl ) throws Exception {
670
+ TransformerFactory tf = TransformerFactory .newInstance ();
671
+ if (xsl == null ) {
672
+ return tf .newTransformer ();
673
+ }
674
+
675
+ return tf .newTemplates (
676
+ new StreamSource (new ByteArrayInputStream (xsl .getBytes ())))
677
+ .newTransformer ();
678
+ }
679
+
680
+ private Transformer getTransformer (String xsl , boolean html , boolean omit ,
681
+ boolean pretty , boolean p , boolean sp , boolean standalone )
682
+ throws Exception {
683
+ if (sp ) {
684
+ setSystemProperty (SP_XSLTC_IS_STANDALONE , standalone ? "yes" : "no" );
685
+ }
686
+ Transformer transformer = getTransformer (xsl );
593
687
transformer .setOutputProperty (OutputKeys .ENCODING , "UTF-8" );
594
- transformer .setOutputProperty (OutputKeys .OMIT_XML_DECLARATION , "yes" );
595
- if (html )
688
+ if (omit ) {
689
+ transformer .setOutputProperty (OutputKeys .OMIT_XML_DECLARATION , "yes" );
690
+ }
691
+ if (html ) {
596
692
transformer .setOutputProperty (OutputKeys .METHOD , "html" );
693
+ }
597
694
transformer .setOutputProperty (OutputKeys .INDENT , pretty ? "yes" : "no" );
695
+ if (p && !sp ) {
696
+ transformer .setOutputProperty (XSLTC_IS_STANDALONE , standalone ? "yes" : "no" );
697
+ }
698
+ if (sp ) {
699
+ clearSystemProperty (SP_XSLTC_IS_STANDALONE );
700
+ }
598
701
return transformer ;
599
702
}
600
703
@@ -616,7 +719,7 @@ private Document getDocument() throws Exception {
616
719
617
720
private DOMImplementationLS getImpl () throws Exception {
618
721
Document document = getDocument ();
619
- return (DOMImplementationLS )document .getImplementation ();
722
+ return (DOMImplementationLS ) document .getImplementation ();
620
723
}
621
724
622
725
private DOMConfiguration getConfig () throws Exception {
0 commit comments