1   /*
2    * Copyright 2001-2005 (C) MetaStuff, Ltd. All Rights Reserved.
3    *
4    * This software is open source.
5    * See the bottom of this file for the licence.
6    */
7   
8   package org.dom4j;
9   
10  import junit.textui.TestRunner;
11  
12  /***
13   * A test harness for the normalize() method
14   * 
15   * @author <a href="mailto:jstrachan@apache.org">James Strachan </a>
16   * @version $Revision: 1.3 $
17   */
18  public class NormalizeTest extends AbstractTestCase {
19      public static void main(String[] args) {
20          TestRunner.run(NormalizeTest.class);
21      }
22  
23      // Test case(s)
24      // -------------------------------------------------------------------------
25      public void testNormalize() throws Exception {
26          String text = document.asXML();
27  
28          document.normalize();
29  
30          String normalizedText = document.asXML();
31  
32          log("Initial: " + text);
33          log("Normalized: " + normalizedText);
34  
35          String value = document.valueOf("/dummy/full");
36          assertEquals("Should not trim text", " node ", value);
37      }
38  
39      // Implementation methods
40      // -------------------------------------------------------------------------
41      protected void setUp() throws Exception {
42          super.setUp();
43  
44          String xml = "<dummy> <full> node </full> with text "
45                  + "<and>another node</and> </dummy>";
46          document = DocumentHelper.parseText(xml);
47      }
48  }
49  
50  /*
51   * Redistribution and use of this software and associated documentation
52   * ("Software"), with or without modification, are permitted provided that the
53   * following conditions are met:
54   * 
55   * 1. Redistributions of source code must retain copyright statements and
56   * notices. Redistributions must also contain a copy of this document.
57   * 
58   * 2. Redistributions in binary form must reproduce the above copyright notice,
59   * this list of conditions and the following disclaimer in the documentation
60   * and/or other materials provided with the distribution.
61   * 
62   * 3. The name "DOM4J" must not be used to endorse or promote products derived
63   * from this Software without prior written permission of MetaStuff, Ltd. For
64   * written permission, please contact dom4j-info@metastuff.com.
65   * 
66   * 4. Products derived from this Software may not be called "DOM4J" nor may
67   * "DOM4J" appear in their names without prior written permission of MetaStuff,
68   * Ltd. DOM4J is a registered trademark of MetaStuff, Ltd.
69   * 
70   * 5. Due credit should be given to the DOM4J Project - http://www.dom4j.org
71   * 
72   * THIS SOFTWARE IS PROVIDED BY METASTUFF, LTD. AND CONTRIBUTORS ``AS IS'' AND
73   * ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
74   * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
75   * ARE DISCLAIMED. IN NO EVENT SHALL METASTUFF, LTD. OR ITS CONTRIBUTORS BE
76   * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
77   * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
78   * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
79   * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
80   * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
81   * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
82   * POSSIBILITY OF SUCH DAMAGE.
83   * 
84   * Copyright 2001-2005 (C) MetaStuff, Ltd. All Rights Reserved.
85   */