FileDocCategorySizeDatePackage
hc_documentgetelementsbytagnametotallength.javaAPI DocAndroid 1.5 API6499Wed May 06 22:41:04 BST 2009org.w3c.domts.level1.core

hc_documentgetelementsbytagnametotallength

public final class hc_documentgetelementsbytagnametotallength extends org.w3c.domts.DOMTestCase
Retrieve the entire DOM document and invoke its "getElementsByTagName(tagName)" method with tagName equal to "*". The method should return a NodeList that contains all the elements of the document.
author
Curt Arnold
see
http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-core#ID-A6C9094
see
http://www.w3.org/Bugs/Public/show_bug.cgi?id=251

Fields Summary
Constructors Summary
public hc_documentgetelementsbytagnametotallength(org.w3c.domts.DOMTestDocumentBuilderFactory factory)
Constructor.

param
factory document factory, may not be null
throws
org.w3c.domts.DOMTestIncompatibleException Thrown if test is not compatible with parser configuration

      super(factory);

    //
    //   check if loaded documents are supported for content type
    //
    String contentType = getContentType();
    preload(contentType, "hc_staff", false);
    
Methods Summary
public java.lang.StringgetTargetURI()
Gets URI that identifies the test.

return
uri identifier of test

      return "http://www.w3.org/2001/DOM-Test-Suite/level1/core/hc_documentgetelementsbytagnametotallength";
   
public static voidmain(java.lang.String[] args)
Runs this test from the command line.

param
args command line arguments

        DOMTestCase.doMain(hc_documentgetelementsbytagnametotallength.class, args);
   
public voidrunTest()
Runs the test case.

throws
Throwable Any uncaught exception causes test to fail

      Document doc;
      NodeList nameList;
      java.util.List expectedNames = new java.util.ArrayList();
      expectedNames.add("html");
      expectedNames.add("head");
      expectedNames.add("meta");
      expectedNames.add("title");
      expectedNames.add("script");
      expectedNames.add("script");
      expectedNames.add("script");
      expectedNames.add("body");
      expectedNames.add("p");
      expectedNames.add("em");
      expectedNames.add("strong");
      expectedNames.add("code");
      expectedNames.add("sup");
      expectedNames.add("var");
      expectedNames.add("acronym");
      expectedNames.add("p");
      expectedNames.add("em");
      expectedNames.add("strong");
      expectedNames.add("code");
      expectedNames.add("sup");
      expectedNames.add("var");
      expectedNames.add("acronym");
      expectedNames.add("p");
      expectedNames.add("em");
      expectedNames.add("strong");
      expectedNames.add("code");
      expectedNames.add("sup");
      expectedNames.add("var");
      expectedNames.add("acronym");
      expectedNames.add("p");
      expectedNames.add("em");
      expectedNames.add("strong");
      expectedNames.add("code");
      expectedNames.add("sup");
      expectedNames.add("var");
      expectedNames.add("acronym");
      expectedNames.add("p");
      expectedNames.add("em");
      expectedNames.add("strong");
      expectedNames.add("code");
      expectedNames.add("sup");
      expectedNames.add("var");
      expectedNames.add("acronym");
      
      java.util.List svgExpectedNames = new java.util.ArrayList();
      svgExpectedNames.add("svg");
      svgExpectedNames.add("rect");
      svgExpectedNames.add("script");
      svgExpectedNames.add("head");
      svgExpectedNames.add("meta");
      svgExpectedNames.add("title");
      svgExpectedNames.add("body");
      svgExpectedNames.add("p");
      svgExpectedNames.add("em");
      svgExpectedNames.add("strong");
      svgExpectedNames.add("code");
      svgExpectedNames.add("sup");
      svgExpectedNames.add("var");
      svgExpectedNames.add("acronym");
      svgExpectedNames.add("p");
      svgExpectedNames.add("em");
      svgExpectedNames.add("strong");
      svgExpectedNames.add("code");
      svgExpectedNames.add("sup");
      svgExpectedNames.add("var");
      svgExpectedNames.add("acronym");
      svgExpectedNames.add("p");
      svgExpectedNames.add("em");
      svgExpectedNames.add("strong");
      svgExpectedNames.add("code");
      svgExpectedNames.add("sup");
      svgExpectedNames.add("var");
      svgExpectedNames.add("acronym");
      svgExpectedNames.add("p");
      svgExpectedNames.add("em");
      svgExpectedNames.add("strong");
      svgExpectedNames.add("code");
      svgExpectedNames.add("sup");
      svgExpectedNames.add("var");
      svgExpectedNames.add("acronym");
      svgExpectedNames.add("p");
      svgExpectedNames.add("em");
      svgExpectedNames.add("strong");
      svgExpectedNames.add("code");
      svgExpectedNames.add("sup");
      svgExpectedNames.add("var");
      svgExpectedNames.add("acronym");
      
      java.util.List actualNames = new java.util.ArrayList();
      
      Element thisElement;
      String thisTag;
      doc = (Document) load("hc_staff", false);
      nameList = doc.getElementsByTagName("*");
      for (int indexN10148 = 0; indexN10148 < nameList.getLength(); indexN10148++) {
          thisElement = (Element) nameList.item(indexN10148);
    thisTag = thisElement.getTagName();
      actualNames.add(thisTag);
        }
      
      if (("image/svg+xml".equals(getContentType()))) {
          assertEqualsAutoCase("element", "svgTagNames", svgExpectedNames, actualNames);
        } else {
          assertEqualsAutoCase("element", "tagNames", expectedNames, actualNames);
        }