1
2/*
3Copyright é 2001-2004 World Wide Web Consortium,
4(Massachusetts Institute of Technology, European Research Consortium
5for Informatics and Mathematics, Keio University). All
6Rights Reserved. This work is distributed under the W3Cî Software License [1] in the
7hope that it will be useful, but WITHOUT ANY WARRANTY; without even
8the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
9
10[1] http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231
11*/
12
13
14
15   /**
16    *  Gets URI that identifies the test.
17    *  @return uri identifier of test
18    */
19function getTargetURI() {
20      return "http://www.w3.org/2001/DOM-Test-Suite/level3/core/documentrenamenode27";
21   }
22
23var docsLoaded = -1000000;
24var builder = null;
25
26//
27//   This function is called by the testing framework before
28//      running the test suite.
29//
30//   If there are no configuration exceptions, asynchronous
31//        document loading is started.  Otherwise, the status
32//        is set to complete and the exception is immediately
33//        raised when entering the body of the test.
34//
35function setUpPage() {
36   setUpPageStatus = 'running';
37   try {
38     //
39     //   creates test document builder, may throw exception
40     //
41     builder = createConfiguredBuilder();
42
43      docsLoaded = 0;
44
45      var docRef = null;
46      if (typeof(this.doc) != 'undefined') {
47        docRef = this.doc;
48      }
49      docsLoaded += preload(docRef, "doc", "hc_staff");
50
51       if (docsLoaded == 1) {
52          setUpPageStatus = 'complete';
53       }
54    } catch(ex) {
55    	catchInitializationError(builder, ex);
56        setUpPageStatus = 'complete';
57    }
58}
59
60
61
62//
63//   This method is called on the completion of
64//      each asychronous load started in setUpTests.
65//
66//   When every synchronous loaded document has completed,
67//      the page status is changed which allows the
68//      body of the test to be executed.
69function loadComplete() {
70    if (++docsLoaded == 1) {
71        setUpPageStatus = 'complete';
72    }
73}
74
75
76/**
77*
78	Invoke the renameNode method to attempt to rename new Text, Comment, CDataSection,
79	ProcessingInstruction and EntityReference nodes of a new Document.
80	Check if a NOT_SUPPORTED_ERR is thrown.
81
82* @author IBM
83* @author Neil Delima
84* @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Document3-renameNode
85*/
86function documentrenamenode27() {
87   var success;
88    if(checkInitialization(builder, "documentrenamenode27") != null) return;
89    var doc;
90      var newDoc;
91      var domImpl;
92      var text;
93      var comment;
94      var cdata;
95      var pi;
96      var entref;
97      var renamedTxt;
98      var renamedComment;
99      var renamedCdata;
100      var renamedPi;
101      var renamedEntRef;
102      var nullDocType = null;
103
104      var docElem;
105      var rootNS;
106      var rootName;
107
108      var docRef = null;
109      if (typeof(this.doc) != 'undefined') {
110        docRef = this.doc;
111      }
112      doc = load(docRef, "doc", "hc_staff");
113      docElem = doc.documentElement;
114
115      rootNS = docElem.namespaceURI;
116
117      rootName = docElem.tagName;
118
119      domImpl = doc.implementation;
120newDoc = domImpl.createDocument(rootNS,rootName,nullDocType);
121      text = newDoc.createTextNode("text");
122      comment = newDoc.createComment("comment");
123      cdata = newDoc.createCDATASection("cdata");
124      pi = newDoc.createProcessingInstruction("pit","pid");
125      entref = newDoc.createEntityReference("alpha");
126
127	{
128		success = false;
129		try {
130            renamedTxt = newDoc.renameNode(text,"http://www.w3.org/DOM/Test","text");
131        }
132		catch(ex) {
133      success = (typeof(ex.code) != 'undefined' && ex.code == 9);
134		}
135		assertTrue("throw_NOT_SUPPORTED_ERR_1",success);
136	}
137
138	{
139		success = false;
140		try {
141            renamedComment = newDoc.renameNode(comment,"http://www.w3.org/DOM/Test","comment");
142        }
143		catch(ex) {
144      success = (typeof(ex.code) != 'undefined' && ex.code == 9);
145		}
146		assertTrue("throw_NOT_SUPPORTED_ERR_2",success);
147	}
148
149	{
150		success = false;
151		try {
152            renamedCdata = newDoc.renameNode(cdata,"http://www.w3.org/DOM/Test","cdata");
153        }
154		catch(ex) {
155      success = (typeof(ex.code) != 'undefined' && ex.code == 9);
156		}
157		assertTrue("throw_NOT_SUPPORTED_ERR_3",success);
158	}
159
160	{
161		success = false;
162		try {
163            renamedPi = newDoc.renameNode(pi,"http://www.w3.org/DOM/Test","pi");
164        }
165		catch(ex) {
166      success = (typeof(ex.code) != 'undefined' && ex.code == 9);
167		}
168		assertTrue("throw_NOT_SUPPORTED_ERR_4",success);
169	}
170
171	{
172		success = false;
173		try {
174            renamedEntRef = newDoc.renameNode(entref,"http://www.w3.org/DOM/Test","entref");
175        }
176		catch(ex) {
177      success = (typeof(ex.code) != 'undefined' && ex.code == 9);
178		}
179		assertTrue("throw_NOT_SUPPORTED_ERR_5",success);
180	}
181
182}
183
184
185
186
187function runTest() {
188   documentrenamenode27();
189}
190