1
2/*
3This Java source file was generated by test-to-java.xsl
4and is a derived work from the source document.
5The source document contained the following notice:
6
7
8
9
10
11Copyright (c) 2001 World Wide Web Consortium,
12
13(Massachusetts Institute of Technology, Institut National de
14
15Recherche en Informatique et en Automatique, Keio University).  All
16
17Rights Reserved.  This program is distributed under the W3C's Software
18
19Intellectual Property License.  This program is distributed in the
20
21hope that it will be useful, but WITHOUT ANY WARRANTY; without even
22
23the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
24
25PURPOSE.
26
27
28
29See W3C License http://www.w3.org/Consortium/Legal/ for more details.
30
31
32
33
34*/
35
36package org.w3c.domts.level2.core;
37
38import org.w3c.dom.*;
39
40
41import org.w3c.domts.DOMTestCase;
42import org.w3c.domts.DOMTestDocumentBuilderFactory;
43
44
45
46/**
47 *  The createDocument method should throw a NAMESPACE_ERR if the qualifiedName has
48 *  a prefix that is xml and the namespaceURI is different from
49 *  http://www..w3.org/XML/1998/namespace.
50 *
51 *  Call the createDocument on this DOMImplementation with namespaceURI that is
52 *  http://www.w3.org/xml/1998/namespace and a qualifiedName that has the prefix xml
53 *  Check if the NAMESPACE_ERR is thrown.
54* @author IBM
55* @author Neil Delima
56* @see <a href="http://www.w3.org/TR/DOM-Level-2-Core/core#Level-2-Core-DOM-createDocument">http://www.w3.org/TR/DOM-Level-2-Core/core#Level-2-Core-DOM-createDocument</a>
57*/
58public final class domimplementationcreatedocument05 extends DOMTestCase {
59
60   /**
61    * Constructor.
62    * @param factory document factory, may not be null
63    * @throws org.w3c.domts.DOMTestIncompatibleException Thrown if test is not compatible with parser configuration
64    */
65   public domimplementationcreatedocument05(final DOMTestDocumentBuilderFactory factory)  throws org.w3c.domts.DOMTestIncompatibleException {
66      super(factory);
67
68    //
69    //   check if loaded documents are supported for content type
70    //
71    String contentType = getContentType();
72    preload(contentType, "staffNS", false);
73    }
74
75   /**
76    * Runs the test case.
77    * @throws Throwable Any uncaught exception causes test to fail
78    */
79   public void runTest() throws Throwable {
80      Document doc;
81      DOMImplementation domImpl;
82      Document newDoc;
83      String namespaceURI = "http://www.w3.org/xml/1998/namespace";
84      String qualifiedName = "xml:root";
85      DocumentType docType = null;
86
87      doc = (Document) load("staffNS", false);
88      domImpl = doc.getImplementation();
89
90      {
91         boolean success = false;
92         try {
93            newDoc = domImpl.createDocument(namespaceURI, qualifiedName, docType);
94          } catch (DOMException ex) {
95            success = (ex.code == DOMException.NAMESPACE_ERR);
96         }
97         assertTrue("domimplementationcreatedocument05", success);
98      }
99}
100   /**
101    *  Gets URI that identifies the test.
102    *  @return uri identifier of test
103    */
104   public String getTargetURI() {
105      return "http://www.w3.org/2001/DOM-Test-Suite/level2/core/domimplementationcreatedocument05";
106   }
107   /**
108    * Runs this test from the command line.
109    * @param args command line arguments
110    */
111   public static void main(final String[] args) {
112        DOMTestCase.doMain(domimplementationcreatedocument05.class, args);
113   }
114}
115
116