View Javadoc

1   /*
2    * Licensed to the Apache Software Foundation (ASF) under one
3    * or more contributor license agreements. See the NOTICE file
4    * distributed with this work for additional information
5    * regarding copyright ownership. The ASF licenses this file
6    * to you under the Apache License, Version 2.0 (the
7    * "License"); you may not use this file except in compliance
8    * with the License. You may obtain a copy of the License at
9    *
10   * http://www.apache.org/licenses/LICENSE-2.0
11   *
12   * Unless required by applicable law or agreed to in writing,
13   * software distributed under the License is distributed on an
14   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15   * KIND, either express or implied. See the License for the
16   * specific language governing permissions and limitations
17   * under the License.
18   */
19  package tests.ext;
20  
21  import java.io.ByteArrayOutputStream;
22  
23  import javax.xml.parsers.DocumentBuilderFactory;
24  
25  import junit.framework.TestCase;
26  
27  import org.apache.ws.commons.schema.XmlSchema;
28  import org.apache.ws.commons.schema.XmlSchemaCollection;
29  import org.w3c.dom.Document;
30  
31  import tests.Resources;
32  
33  /**
34   * try writing the schemas after they are built
35   */
36  public class PlainExtensionSerializerTest extends TestCase {
37  
38       public void testSerialization() throws Exception {
39  
40             //create a DOM document
41             DocumentBuilderFactory documentBuilderFactory = DocumentBuilderFactory.newInstance();
42             documentBuilderFactory.setNamespaceAware(true);
43             Document doc = documentBuilderFactory.newDocumentBuilder().
44                     parse(Resources.asURI("/external/externalAnnotations.xsd"));
45  
46             XmlSchemaCollection schemaCol = new XmlSchemaCollection();
47             XmlSchema schema = schemaCol.read(doc,null);
48             assertNotNull(schema);
49  
50             schema.write(new ByteArrayOutputStream());
51       }
52  
53  
54      public void testSerialization1() throws Exception {
55  
56             //create a DOM document
57             DocumentBuilderFactory documentBuilderFactory = DocumentBuilderFactory.newInstance();
58             documentBuilderFactory.setNamespaceAware(true);
59             Document doc = documentBuilderFactory.newDocumentBuilder().
60                     parse(Resources.asURI("/external/externalElementAnnotations.xsd"));
61  
62             XmlSchemaCollection schemaCol = new XmlSchemaCollection();
63             XmlSchema schema = schemaCol.read(doc,null);
64             assertNotNull(schema);
65  
66             schema.write(new ByteArrayOutputStream());
67       }
68  }