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
/**
* $RCSfile$
* $Revision$
* $Date$
*
* Copyright (C) 1999-2003 CoolServlets, Inc. All rights reserved.
*
* This software is the proprietary information of CoolServlets, Inc.
* Use is subject to license terms.
*/
package org.jivesoftware.util;
import junit.framework.TestCase;
/**
* <p>Test the writing of dom4j documents using the XPP serializer.</p>
*
* @author Iain Shigeoka
*/
public class XPPWriterTest extends TestCase {
/**
* <p>Create a new test with the given name.</p>
*
* @param name The name of the test
*/
public XPPWriterTest(String name){
super(name);
}
/**
* <p>Run a standard config document through a round trip and compare.</p>
*/
public void testRoundtrip(){
// NOTE: disabling this test case until we get resources working again.
/*
try {
Document doc = XPPReader.parseDocument(new FileReader("../conf/wildfire.xml"),this.getClass());
XPPWriter.write(doc, new FileWriter("../conf/xmpp_writer_test_copy.xml"));
} catch (Exception e) {
e.printStackTrace();
fail(e.getMessage());
}
*/
}
}