TypeInfo.cpp
上传用户:zhuqijet
上传日期:2013-06-25
资源大小:10074k
文件大小:44k
源码类别:

词法分析

开发平台:

Visual C++

  1. /*
  2.  * The Apache Software License, Version 1.1
  3.  *
  4.  * Copyright (c) 2003 The Apache Software Foundation->  All rights
  5.  * reserved.
  6.  *
  7.  * Redistribution and use in source and binary forms, with or without
  8.  * modification, are permitted provided that the following conditions
  9.  * are met:
  10.  *
  11.  * 1. Redistributions of source code must retain the above copyright
  12.  *    notice, this list of conditions and the following disclaimer.
  13.  *
  14.  * 2. Redistributions in binary form must reproduce the above copyright
  15.  *    notice, this list of conditions and the following disclaimer in
  16.  *    the documentation and/or other materials provided with the
  17.  *    distribution->
  18.  *
  19.  * 3. The end-user documentation included with the redistribution,
  20.  *    if any, must include the following acknowledgment:
  21.  *       "This product includes software developed by the
  22.  *        Apache Software Foundation (http://www.apache.org/)."
  23.  *    Alternately, this acknowledgment may appear in the software itself,
  24.  *    if and wherever such third-party acknowledgments normally appear.
  25.  *
  26.  * 4. The names "Xerces" and "Apache Software Foundation" must
  27.  *    not be used to endorse or promote products derived from this
  28.  *    software without prior written permission-> For written
  29.  *    permission, please contact apache@apache.org.
  30.  *
  31.  * 5. Products derived from this software may not be called "Apache",
  32.  *    nor may "Apache" appear in their name, without prior written
  33.  *    permission of the Apache Software Foundation->
  34.  *
  35.  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
  36.  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  37.  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  38.  * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
  39.  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  40.  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  41.  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  42.  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  43.  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  44.  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  45.  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  46.  * SUCH DAMAGE.
  47.  * ====================================================================
  48.  *
  49.  * This software consists of voluntary contributions made by many
  50.  * individuals on behalf of the Apache Software Foundation, and was
  51.  * originally based on software copyright (c) 2001, International
  52.  * Business Machines, Inc., http://www.ibm.com .  For more information
  53.  * on the Apache Software Foundation, please see
  54.  * <http://www.apache.org/>.
  55.  */
  56. #include "TypeInfo.hpp"
  57. #include <xercesc/util/PlatformUtils.hpp>
  58. #include <xercesc/util/XMLException.hpp>
  59. #include <xercesc/util/XMLString.hpp>
  60. #include <xercesc/parsers/XercesDOMParser.hpp>
  61. #include <xercesc/dom/DOMException.hpp>
  62. #include <xercesc/dom/DOM.hpp>
  63. #include <xercesc/validators/schema/SchemaSymbols.hpp>
  64. #include <iostream.h>
  65. #define DOMTYPEINFOTEST(info, type, uri, line) 
  66.     tmp = XMLString::equals(info->getName(), type) && XMLString::equals(info->getNamespace(), uri);
  67.     if(!tmp) { 
  68.       cerr << "DOMTypeInfo test failed at line, " << line << "nExpected values : typename '" << XMLString::transcode(type) << "', uri '" << XMLString::transcode(uri) << "'nActual values   : typename '" << XMLString::transcode(info->getName()) << "', uri '" << XMLString::transcode(info->getNamespace()) << "'n" << endl; 
  69.       passed = false; 
  70.     }
  71. bool tmp;
  72. // ---------------------------------------------------------------------------
  73. //  This is a simple class that lets us do easy (though not terribly efficient)
  74. //  trancoding of char* data to XMLCh data.
  75. // ---------------------------------------------------------------------------
  76. class XStr
  77. {
  78. public :
  79.     // -----------------------------------------------------------------------
  80.     //  Constructors and Destructor
  81.     // -----------------------------------------------------------------------
  82.     XStr(const char* const toTranscode)
  83.     {
  84.         // Call the private transcoding method
  85.         fUnicodeForm = XMLString::transcode(toTranscode);
  86.     }
  87.     ~XStr()
  88.     {
  89.         XMLString::release(&fUnicodeForm);
  90.     }
  91.     // -----------------------------------------------------------------------
  92.     //  Getter methods
  93.     // -----------------------------------------------------------------------
  94.     const XMLCh* unicodeForm() const
  95.     {
  96.         return fUnicodeForm;
  97.     }
  98. private :
  99.     // -----------------------------------------------------------------------
  100.     //  Private data members
  101.     //
  102.     //  fUnicodeForm
  103.     //      This is the Unicode XMLCh format of the string.
  104.     // -----------------------------------------------------------------------
  105.     XMLCh*   fUnicodeForm;
  106. };
  107. #define X(str) XStr(str).unicodeForm()
  108. //  This is a simple class that lets us do easy (though not terribly efficient)
  109. //  trancoding of XMLCh data to local code page for display.
  110. // ---------------------------------------------------------------------------
  111. class StrX
  112. {
  113. public :
  114.     // -----------------------------------------------------------------------
  115.     //  Constructors and Destructor
  116.     // -----------------------------------------------------------------------
  117.     StrX(const XMLCh* const toTranscode)
  118.     {
  119.         // Call the private transcoding method
  120.         fLocalForm = XMLString::transcode(toTranscode);
  121.     }
  122.     ~StrX()
  123.     {
  124.         XMLString::release(&fLocalForm);
  125.     }
  126.     // -----------------------------------------------------------------------
  127.     //  Getter methods
  128.     // -----------------------------------------------------------------------
  129.     const char* localForm() const
  130.     {
  131.         return fLocalForm;
  132.     }
  133. private :
  134.     // -----------------------------------------------------------------------
  135.     //  Private data members
  136.     //
  137.     //  fLocalForm
  138.     //      This is the local code page form of the string.
  139.     // -----------------------------------------------------------------------
  140.     char*   fLocalForm;
  141. };
  142. #define StrX(str) StrX(str).localForm()
  143. TypeInfo::TypeInfo() {
  144.     try
  145.     {
  146.         XMLPlatformUtils::Initialize();
  147.     }
  148.     catch(const XMLException &toCatch)
  149.     {
  150.         cerr << "Error during Xerces-c Initialization.n"
  151.              << "  Exception message:"
  152.              << StrX(toCatch.getMessage()) << endl;
  153.     }
  154.     parser = 0;
  155. }
  156. TypeInfo::~TypeInfo() {
  157.     XMLPlatformUtils::Terminate();
  158. }
  159. bool TypeInfo::testInBuiltTypesOnAttributes(bool DTDPresent) {
  160.     bool passed = true;
  161.     DOMElement *testEle = findElement(X("attrTest"));
  162.     DOMTYPEINFOTEST(testEle->getTypeInfo(), X("attrTestType"), X(""), __LINE__);
  163.     DOMAttr *testAttr;
  164.     testAttr = testEle->getAttributeNodeNS(0, X("string"));
  165.     DOMTYPEINFOTEST(testAttr->getTypeInfo(), SchemaSymbols::fgDT_STRING, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  166.     testAttr = testEle->getAttributeNodeNS(0, X("boolean"));
  167.     DOMTYPEINFOTEST(testAttr->getTypeInfo(), SchemaSymbols::fgDT_BOOLEAN, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  168.     testAttr = testEle->getAttributeNodeNS(0, X("decimal"));
  169.     DOMTYPEINFOTEST(testAttr->getTypeInfo(), SchemaSymbols::fgDT_DECIMAL, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  170.     testAttr = testEle->getAttributeNodeNS(0, X("float"));
  171.     DOMTYPEINFOTEST(testAttr->getTypeInfo(), SchemaSymbols::fgDT_FLOAT, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  172.     testAttr = testEle->getAttributeNodeNS(0, X("double"));
  173.     DOMTYPEINFOTEST(testAttr->getTypeInfo(), SchemaSymbols::fgDT_DOUBLE, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  174.     testAttr = testEle->getAttributeNodeNS(0, X("duration"));
  175.     DOMTYPEINFOTEST(testAttr->getTypeInfo(), SchemaSymbols::fgDT_DURATION, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  176.     testAttr = testEle->getAttributeNodeNS(0, X("dateTime"));
  177.     DOMTYPEINFOTEST(testAttr->getTypeInfo(), SchemaSymbols::fgDT_DATETIME, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  178.     testAttr = testEle->getAttributeNodeNS(0, X("time"));
  179.     DOMTYPEINFOTEST(testAttr->getTypeInfo(), SchemaSymbols::fgDT_TIME, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  180.     testAttr = testEle->getAttributeNodeNS(0, X("date"));
  181.     DOMTYPEINFOTEST(testAttr->getTypeInfo(), SchemaSymbols::fgDT_DATE, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  182.     testAttr = testEle->getAttributeNodeNS(0, X("gYearMonth"));
  183.     DOMTYPEINFOTEST(testAttr->getTypeInfo(), SchemaSymbols::fgDT_YEARMONTH, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  184.     testAttr = testEle->getAttributeNodeNS(0, X("gYear"));
  185.     DOMTYPEINFOTEST(testAttr->getTypeInfo(), SchemaSymbols::fgDT_YEAR, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  186.     testAttr = testEle->getAttributeNodeNS(0, X("gMonthDay"));
  187.     DOMTYPEINFOTEST(testAttr->getTypeInfo(), SchemaSymbols::fgDT_MONTHDAY, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  188.     testAttr = testEle->getAttributeNodeNS(0, X("gDay"));
  189.     DOMTYPEINFOTEST(testAttr->getTypeInfo(), SchemaSymbols::fgDT_DAY, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  190.     testAttr = testEle->getAttributeNodeNS(0, X("gMonth"));
  191.     DOMTYPEINFOTEST(testAttr->getTypeInfo(), SchemaSymbols::fgDT_MONTH, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  192.     testAttr = testEle->getAttributeNodeNS(0, X("hexBinary"));
  193.     DOMTYPEINFOTEST(testAttr->getTypeInfo(), SchemaSymbols::fgDT_HEXBINARY, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  194.     testAttr = testEle->getAttributeNodeNS(0, X("base64Binary"));
  195.     DOMTYPEINFOTEST(testAttr->getTypeInfo(), SchemaSymbols::fgDT_BASE64BINARY, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  196.     testAttr = testEle->getAttributeNodeNS(0, X("anyURI"));
  197.     DOMTYPEINFOTEST(testAttr->getTypeInfo(), SchemaSymbols::fgDT_ANYURI, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  198.     testAttr = testEle->getAttributeNodeNS(0, X("QName"));
  199.     DOMTYPEINFOTEST(testAttr->getTypeInfo(), SchemaSymbols::fgDT_QNAME, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  200.     testAttr = testEle->getAttributeNodeNS(0, X("normalizedString"));
  201.     DOMTYPEINFOTEST(testAttr->getTypeInfo(), SchemaSymbols::fgDT_NORMALIZEDSTRING, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  202.     testAttr = testEle->getAttributeNodeNS(0, X("token"));
  203.     DOMTYPEINFOTEST(testAttr->getTypeInfo(), SchemaSymbols::fgDT_TOKEN, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  204.     testAttr = testEle->getAttributeNodeNS(0, X("language"));
  205.     DOMTYPEINFOTEST(testAttr->getTypeInfo(), SchemaSymbols::fgDT_LANGUAGE, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  206.     testAttr = testEle->getAttributeNodeNS(0, X("NMTOKEN"));
  207.     DOMTYPEINFOTEST(testAttr->getTypeInfo(), XMLUni::fgNmTokenString, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  208.     testAttr = testEle->getAttributeNodeNS(0, X("NMTOKENS"));
  209.     DOMTYPEINFOTEST(testAttr->getTypeInfo(), XMLUni::fgNmTokensString, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  210.     testAttr = testEle->getAttributeNodeNS(0, X("Name"));
  211.     DOMTYPEINFOTEST(testAttr->getTypeInfo(), SchemaSymbols::fgDT_NAME, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  212.     testAttr = testEle->getAttributeNodeNS(0, X("NCName"));
  213.     DOMTYPEINFOTEST(testAttr->getTypeInfo(), SchemaSymbols::fgDT_NCNAME, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  214.     testAttr = testEle->getAttributeNodeNS(0, X("ID"));
  215.     DOMTYPEINFOTEST(testAttr->getTypeInfo(), XMLUni::fgIDString, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  216.     testAttr = testEle->getAttributeNodeNS(0, X("IDREF"));
  217.     DOMTYPEINFOTEST(testAttr->getTypeInfo(), XMLUni::fgIDRefString, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  218.     testAttr = testEle->getAttributeNodeNS(0, X("IDREFS"));
  219.     DOMTYPEINFOTEST(testAttr->getTypeInfo(), XMLUni::fgIDRefsString, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  220.     if(DTDPresent) {
  221.         testAttr = testEle->getAttributeNodeNS(0, X("ENTITY"));
  222.         DOMTYPEINFOTEST(testAttr->getTypeInfo(), XMLUni::fgEntityString, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  223.         testAttr = testEle->getAttributeNodeNS(0, X("ENTITIES"));
  224.         DOMTYPEINFOTEST(testAttr->getTypeInfo(), XMLUni::fgEntitiesString, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  225.     }
  226.     testAttr = testEle->getAttributeNodeNS(0, X("integer"));
  227.     DOMTYPEINFOTEST(testAttr->getTypeInfo(), SchemaSymbols::fgDT_INTEGER, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  228.     testAttr = testEle->getAttributeNodeNS(0, X("nonPositiveInteger"));
  229.     DOMTYPEINFOTEST(testAttr->getTypeInfo(), SchemaSymbols::fgDT_NONPOSITIVEINTEGER, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  230.     testAttr = testEle->getAttributeNodeNS(0, X("negativeInteger"));
  231.     DOMTYPEINFOTEST(testAttr->getTypeInfo(), SchemaSymbols::fgDT_NEGATIVEINTEGER, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  232.     testAttr = testEle->getAttributeNodeNS(0, X("long"));
  233.     DOMTYPEINFOTEST(testAttr->getTypeInfo(), SchemaSymbols::fgDT_LONG, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  234.     testAttr = testEle->getAttributeNodeNS(0, X("int"));
  235.     DOMTYPEINFOTEST(testAttr->getTypeInfo(), SchemaSymbols::fgDT_INT, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  236.     testAttr = testEle->getAttributeNodeNS(0, X("short"));
  237.     DOMTYPEINFOTEST(testAttr->getTypeInfo(), SchemaSymbols::fgDT_SHORT, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  238.     testAttr = testEle->getAttributeNodeNS(0, X("byte"));
  239.     DOMTYPEINFOTEST(testAttr->getTypeInfo(), SchemaSymbols::fgDT_BYTE, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  240.     testAttr = testEle->getAttributeNodeNS(0, X("nonNegativeInteger"));
  241.     DOMTYPEINFOTEST(testAttr->getTypeInfo(), SchemaSymbols::fgDT_NONNEGATIVEINTEGER, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  242.     testAttr = testEle->getAttributeNodeNS(0, X("unsignedLong"));
  243.     DOMTYPEINFOTEST(testAttr->getTypeInfo(), SchemaSymbols::fgDT_ULONG, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  244.     testAttr = testEle->getAttributeNodeNS(0, X("unsignedInt"));
  245.     DOMTYPEINFOTEST(testAttr->getTypeInfo(), SchemaSymbols::fgDT_UINT, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  246.     testAttr = testEle->getAttributeNodeNS(0, X("unsignedShort"));
  247.     DOMTYPEINFOTEST(testAttr->getTypeInfo(), SchemaSymbols::fgDT_USHORT, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  248.     testAttr = testEle->getAttributeNodeNS(0, X("unsignedByte"));
  249.     DOMTYPEINFOTEST(testAttr->getTypeInfo(), SchemaSymbols::fgDT_UBYTE, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  250.     testAttr = testEle->getAttributeNodeNS(0, X("positiveInteger"));
  251.     DOMTYPEINFOTEST(testAttr->getTypeInfo(), SchemaSymbols::fgDT_POSITIVEINTEGER, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  252.     //couple of defaulted ones
  253.     testAttr = testEle->getAttributeNodeNS(0, X("defaultString"));
  254.     DOMTYPEINFOTEST(testAttr->getTypeInfo(), SchemaSymbols::fgDT_STRING, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  255.     testAttr = testEle->getAttributeNodeNS(0, X("defaultInt"));
  256.     DOMTYPEINFOTEST(testAttr->getTypeInfo(), SchemaSymbols::fgDT_INTEGER, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  257.     //ns attr
  258.     testAttr = testEle->getAttributeNodeNS(X("http://www.w3.org/2000/xmlns/"), X("prefix"));
  259.     DOMTYPEINFOTEST(testAttr->getTypeInfo(), SchemaSymbols::fgDT_ANYURI, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  260.     testAttr = testEle->getAttributeNodeNS(X("http://www.w3.org/2001/XMLSchema-instance"), X("noNamespaceSchemaLocation"));
  261.     DOMTYPEINFOTEST(testAttr->getTypeInfo(), SchemaSymbols::fgDT_ANYURI, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  262.     return passed;
  263. }
  264. bool TypeInfo::testInBuiltTypesOnElements() {
  265.     bool passed = true;
  266.     DOMNode *docEle = doc->getDocumentElement();
  267.     //the eleTest element.
  268.     DOMElement *testEle = findElement(X("eleTest"));
  269.     testEle = (DOMElement *)testEle->getFirstChild()->getNextSibling();
  270.     DOMTYPEINFOTEST(testEle->getTypeInfo(), SchemaSymbols::fgDT_STRING, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  271.     testEle = (DOMElement *)testEle->getNextSibling()->getNextSibling();
  272.     DOMTYPEINFOTEST(testEle->getTypeInfo(), SchemaSymbols::fgDT_BOOLEAN, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  273.     testEle = (DOMElement *)testEle->getNextSibling()->getNextSibling();
  274.     DOMTYPEINFOTEST(testEle->getTypeInfo(), SchemaSymbols::fgDT_DECIMAL, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  275.     testEle = (DOMElement *)testEle->getNextSibling()->getNextSibling();
  276.     DOMTYPEINFOTEST(testEle->getTypeInfo(), SchemaSymbols::fgDT_FLOAT, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  277.     testEle = (DOMElement *)testEle->getNextSibling()->getNextSibling();
  278.     DOMTYPEINFOTEST(testEle->getTypeInfo(), SchemaSymbols::fgDT_DOUBLE, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  279.     testEle = (DOMElement *)testEle->getNextSibling()->getNextSibling();
  280.     DOMTYPEINFOTEST(testEle->getTypeInfo(), SchemaSymbols::fgDT_DURATION, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  281.     testEle = (DOMElement *)testEle->getNextSibling()->getNextSibling();
  282.     DOMTYPEINFOTEST(testEle->getTypeInfo(), SchemaSymbols::fgDT_DATETIME, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  283.     testEle = (DOMElement *)testEle->getNextSibling()->getNextSibling();
  284.     DOMTYPEINFOTEST(testEle->getTypeInfo(), SchemaSymbols::fgDT_TIME, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  285.     testEle = (DOMElement *)testEle->getNextSibling()->getNextSibling();
  286.     DOMTYPEINFOTEST(testEle->getTypeInfo(), SchemaSymbols::fgDT_DATE, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  287.     testEle = (DOMElement *)testEle->getNextSibling()->getNextSibling();
  288.     DOMTYPEINFOTEST(testEle->getTypeInfo(), SchemaSymbols::fgDT_YEARMONTH, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  289.     testEle = (DOMElement *)testEle->getNextSibling()->getNextSibling();
  290.     DOMTYPEINFOTEST(testEle->getTypeInfo(), SchemaSymbols::fgDT_YEAR, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  291.     testEle = (DOMElement *)testEle->getNextSibling()->getNextSibling();
  292.     DOMTYPEINFOTEST(testEle->getTypeInfo(), SchemaSymbols::fgDT_MONTHDAY, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  293.     testEle = (DOMElement *)testEle->getNextSibling()->getNextSibling();
  294.     DOMTYPEINFOTEST(testEle->getTypeInfo(), SchemaSymbols::fgDT_DAY, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  295.     testEle = (DOMElement *)testEle->getNextSibling()->getNextSibling();
  296.     DOMTYPEINFOTEST(testEle->getTypeInfo(), SchemaSymbols::fgDT_MONTH, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  297.     testEle = (DOMElement *)testEle->getNextSibling()->getNextSibling();
  298.     DOMTYPEINFOTEST(testEle->getTypeInfo(), SchemaSymbols::fgDT_HEXBINARY, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  299.     testEle = (DOMElement *)testEle->getNextSibling()->getNextSibling();
  300.     DOMTYPEINFOTEST(testEle->getTypeInfo(), SchemaSymbols::fgDT_BASE64BINARY, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  301.     testEle = (DOMElement *)testEle->getNextSibling()->getNextSibling();
  302.     DOMTYPEINFOTEST(testEle->getTypeInfo(), SchemaSymbols::fgDT_ANYURI, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  303.     testEle = (DOMElement *)testEle->getNextSibling()->getNextSibling();
  304.     DOMTYPEINFOTEST(testEle->getTypeInfo(), SchemaSymbols::fgDT_QNAME, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  305.     testEle = (DOMElement *)testEle->getNextSibling()->getNextSibling();
  306.     DOMTYPEINFOTEST(testEle->getTypeInfo(), SchemaSymbols::fgDT_NORMALIZEDSTRING, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  307.     testEle = (DOMElement *)testEle->getNextSibling()->getNextSibling();
  308.     DOMTYPEINFOTEST(testEle->getTypeInfo(), SchemaSymbols::fgDT_TOKEN, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  309.     testEle = (DOMElement *)testEle->getNextSibling()->getNextSibling();
  310.     DOMTYPEINFOTEST(testEle->getTypeInfo(), SchemaSymbols::fgDT_LANGUAGE, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  311.     testEle = (DOMElement *)testEle->getNextSibling()->getNextSibling();
  312.     DOMTYPEINFOTEST(testEle->getTypeInfo(), XMLUni::fgNmTokenString, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  313.     testEle = (DOMElement *)testEle->getNextSibling()->getNextSibling();
  314.     DOMTYPEINFOTEST(testEle->getTypeInfo(), XMLUni::fgNmTokensString, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  315.     testEle = (DOMElement *)testEle->getNextSibling()->getNextSibling();
  316.     DOMTYPEINFOTEST(testEle->getTypeInfo(), SchemaSymbols::fgDT_NAME, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  317.     testEle = (DOMElement *)testEle->getNextSibling()->getNextSibling();
  318.     DOMTYPEINFOTEST(testEle->getTypeInfo(), SchemaSymbols::fgDT_NCNAME, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  319.     testEle = (DOMElement *)testEle->getNextSibling()->getNextSibling();
  320.     DOMTYPEINFOTEST(testEle->getTypeInfo(), SchemaSymbols::fgDT_INTEGER, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  321.     testEle = (DOMElement *)testEle->getNextSibling()->getNextSibling();
  322.     DOMTYPEINFOTEST(testEle->getTypeInfo(), SchemaSymbols::fgDT_NONPOSITIVEINTEGER, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  323.     testEle = (DOMElement *)testEle->getNextSibling()->getNextSibling();
  324.     DOMTYPEINFOTEST(testEle->getTypeInfo(), SchemaSymbols::fgDT_NEGATIVEINTEGER, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  325.     testEle = (DOMElement *)testEle->getNextSibling()->getNextSibling();
  326.     DOMTYPEINFOTEST(testEle->getTypeInfo(), SchemaSymbols::fgDT_LONG, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  327.     testEle = (DOMElement *)testEle->getNextSibling()->getNextSibling();
  328.     DOMTYPEINFOTEST(testEle->getTypeInfo(), SchemaSymbols::fgDT_INT, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  329.     testEle = (DOMElement *)testEle->getNextSibling()->getNextSibling();
  330.     DOMTYPEINFOTEST(testEle->getTypeInfo(), SchemaSymbols::fgDT_SHORT, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  331.     testEle = (DOMElement *)testEle->getNextSibling()->getNextSibling();
  332.     DOMTYPEINFOTEST(testEle->getTypeInfo(), SchemaSymbols::fgDT_BYTE, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  333.     testEle = (DOMElement *)testEle->getNextSibling()->getNextSibling();
  334.     DOMTYPEINFOTEST(testEle->getTypeInfo(), SchemaSymbols::fgDT_NONNEGATIVEINTEGER, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  335.     testEle = (DOMElement *)testEle->getNextSibling()->getNextSibling();
  336.     DOMTYPEINFOTEST(testEle->getTypeInfo(), SchemaSymbols::fgDT_ULONG, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  337.     testEle = (DOMElement *)testEle->getNextSibling()->getNextSibling();
  338.     DOMTYPEINFOTEST(testEle->getTypeInfo(), SchemaSymbols::fgDT_UINT, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  339.     testEle = (DOMElement *)testEle->getNextSibling()->getNextSibling();
  340.     DOMTYPEINFOTEST(testEle->getTypeInfo(), SchemaSymbols::fgDT_USHORT, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  341.     testEle = (DOMElement *)testEle->getNextSibling()->getNextSibling();
  342.     DOMTYPEINFOTEST(testEle->getTypeInfo(), SchemaSymbols::fgDT_UBYTE, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  343.     testEle = (DOMElement *)testEle->getNextSibling()->getNextSibling();
  344.     DOMTYPEINFOTEST(testEle->getTypeInfo(), SchemaSymbols::fgDT_POSITIVEINTEGER, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  345.     return passed;
  346. }
  347. bool TypeInfo::testSimpleDerived() {
  348.     bool passed = true;
  349.     DOMNode *docEle = doc->getDocumentElement();
  350.     //element simpleDerTest
  351.     DOMElement *testEle = (DOMElement *)docEle->getFirstChild()->getNextSibling()->getNextSibling()
  352.         ->getNextSibling()->getNextSibling()->getNextSibling();
  353.     DOMAttr *testAtt = testEle->getAttributeNodeNS(0, X("decimalDerived"));
  354.     DOMTYPEINFOTEST(testAtt->getTypeInfo(), X("decimalDerivedType"), X(""),  __LINE__);
  355.     testAtt = testEle->getAttributeNodeNS(0, X("stringDerived"));
  356.     DOMTYPEINFOTEST(testAtt->getTypeInfo(), X("stringDerivedType"), X(""), __LINE__);
  357.     testEle = (DOMElement *)testEle->getFirstChild()->getNextSibling();
  358.     DOMTYPEINFOTEST(testEle->getTypeInfo(), X("decimalDerivedType"), X(""), __LINE__);
  359.     testEle = (DOMElement *)testEle->getNextSibling()->getNextSibling();
  360.     DOMTYPEINFOTEST(testEle->getTypeInfo(), X("stringDerivedType"), X(""), __LINE__);
  361.     return passed;
  362. }
  363. bool TypeInfo::testComplexTypes() {
  364.     bool passed = true;
  365.     DOMNode *docEle = doc->getDocumentElement();
  366.     //element complexTest
  367.     DOMElement *testEle = findElement(X("complexTest"));
  368.     DOMTYPEINFOTEST(testEle->getTypeInfo(), X("complexTestType"), X(""), __LINE__);
  369.     testEle = (DOMElement *)testEle->getNextSibling()->getNextSibling();
  370.     DOMTYPEINFOTEST(testEle->getTypeInfo(), X("complexDerTestType"), X(""), __LINE__);
  371.     return passed;
  372. }
  373. bool TypeInfo::testUnions() {
  374.     bool passed = true;
  375.     DOMNode *docEle = doc->getDocumentElement();
  376.     DOMAttr *testAttr;
  377.     //element unionTest
  378.     DOMElement *testEle = findElement(X("unionTest"));
  379.     testEle = (DOMElement *)testEle->getFirstChild()->getNextSibling();
  380.     DOMTYPEINFOTEST(testEle->getTypeInfo(), X("decimalDerivedType"), X(""), __LINE__);
  381.     testEle = (DOMElement *)testEle->getNextSibling()->getNextSibling();
  382.     DOMTYPEINFOTEST(testEle->getTypeInfo(), X("stringDerivedType"), X(""), __LINE__);
  383.     testEle = (DOMElement *)testEle->getNextSibling()->getNextSibling();
  384.     DOMTYPEINFOTEST(testEle->getTypeInfo(), X("decimal"), SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  385.     testEle = (DOMElement *)testEle->getNextSibling()->getNextSibling();
  386.     DOMTYPEINFOTEST(testEle->getTypeInfo(), X("string"), SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  387.     testEle = (DOMElement *)testEle->getNextSibling()->getNextSibling();
  388.     testAttr = testEle->getAttributeNodeNS(0, X("testAttr"));
  389.     DOMTYPEINFOTEST(testAttr->getTypeInfo(), X("decimalDerivedType"), X(""), __LINE__);
  390.     testAttr = testEle->getAttributeNodeNS(0, X("testAttr2"));
  391.     DOMTYPEINFOTEST(testAttr->getTypeInfo(), X("stringDerivedType"), X(""), __LINE__);
  392.     testEle = (DOMElement *)testEle->getNextSibling()->getNextSibling();
  393.     testAttr = testEle->getAttributeNodeNS(0, X("testAttr"));
  394.     DOMTYPEINFOTEST(testAttr->getTypeInfo(), X("stringDerivedType"), X(""), __LINE__);
  395.     testAttr = testEle->getAttributeNodeNS(0, X("testAttr2"));
  396.     DOMTYPEINFOTEST(testAttr->getTypeInfo(), X("decimalDerivedType"), X(""), __LINE__);
  397.     testEle = (DOMElement *)testEle->getNextSibling()->getNextSibling();
  398.     testAttr = testEle->getAttributeNodeNS(0, X("testAttr"));
  399.     DOMTYPEINFOTEST(testAttr->getTypeInfo(), X("decimal"), SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  400.     testAttr = testEle->getAttributeNodeNS(0, X("testAttr2"));
  401.     DOMTYPEINFOTEST(testAttr->getTypeInfo(), X("string"), SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  402.     testEle = (DOMElement *)testEle->getNextSibling()->getNextSibling();
  403.     testAttr = testEle->getAttributeNodeNS(0, X("testAttr"));
  404.     DOMTYPEINFOTEST(testAttr->getTypeInfo(), X("string"), SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  405.     testAttr = testEle->getAttributeNodeNS(0, X("testAttr2"));
  406.     DOMTYPEINFOTEST(testAttr->getTypeInfo(), X("decimal"), SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  407.     return passed;
  408. }
  409. bool TypeInfo::testAnonymous() {
  410.     bool passed = true;
  411.     DOMNode *docEle = doc->getDocumentElement();
  412.     DOMAttr *testAttr;
  413.     //element anonymousTest
  414.     DOMElement *testEle = findElement(X("anonymousTest"));
  415.     DOMTYPEINFOTEST(testEle->getTypeInfo(), X(""), X(""), __LINE__);
  416.     testAttr = testEle->getAttributeNodeNS(X(""), X("partNum"));
  417.     DOMTYPEINFOTEST(testAttr->getTypeInfo(), X(""), X(""), __LINE__);
  418.     testEle = (DOMElement *)testEle->getFirstChild()->getNextSibling();
  419.     DOMTYPEINFOTEST(testEle->getTypeInfo(), X(""), X(""), __LINE__);
  420.     testEle = (DOMElement *)testEle->getNextSibling()->getNextSibling();
  421.     DOMTYPEINFOTEST(testEle->getTypeInfo(), X(""), X(""), __LINE__);
  422.     testEle = (DOMElement *)testEle->getNextSibling()->getNextSibling();
  423.     DOMTYPEINFOTEST(testEle->getTypeInfo(), X(""), X(""), __LINE__);
  424.     return passed;
  425. }
  426. bool TypeInfo::testXsiTypes() {
  427.     bool passed = true;
  428.     DOMNode *docEle = doc->getDocumentElement();
  429.     //element xsiTypeTest
  430.     DOMElement *testEle = findElement(X("xsiTypeTest"));
  431.     testEle = (DOMElement *)testEle->getFirstChild()->getNextSibling();
  432.     DOMTYPEINFOTEST(testEle->getTypeInfo(), X("base"), X(""), __LINE__);
  433.     testEle = (DOMElement *)testEle->getNextSibling()->getNextSibling();
  434.     DOMTYPEINFOTEST(testEle->getTypeInfo(), X("level1"), X(""), __LINE__);
  435.     testEle = (DOMElement *)testEle->getNextSibling()->getNextSibling();
  436.     DOMTYPEINFOTEST(testEle->getTypeInfo(), X("level2"), X(""), __LINE__);
  437.     testEle = (DOMElement *)testEle->getNextSibling()->getNextSibling();
  438.     DOMTYPEINFOTEST(testEle->getTypeInfo(), X("baseComplex"), X(""), __LINE__);
  439.     testEle = (DOMElement *)testEle->getNextSibling()->getNextSibling();
  440.     DOMTYPEINFOTEST(testEle->getTypeInfo(), X("level1Complex"), X(""), __LINE__);
  441.     testEle = (DOMElement *)testEle->getNextSibling()->getNextSibling();
  442.     DOMTYPEINFOTEST(testEle->getTypeInfo(), X("level2Complex"), X(""), __LINE__);
  443.     return passed;
  444. }
  445. bool TypeInfo::testAnys() {
  446.     bool passed = true;
  447.     DOMNode *docEle = doc->getDocumentElement();
  448.     DOMAttr *testAttr;
  449.     //element anyTestPartial
  450.     DOMElement *testEle = findElement(X("anyTestPartial"));
  451.     DOMElement *back = testEle;
  452.     testAttr = testEle->getAttributeNodeNS(X("http://www.w3.org/1999/xhtml"), X("attr2"));
  453.     DOMTYPEINFOTEST(testAttr->getTypeInfo(), SchemaSymbols::fgDT_ANYSIMPLETYPE, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  454.     DOMTYPEINFOTEST(testEle->getTypeInfo(), SchemaSymbols::fgATTVAL_ANYTYPE, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  455.     testEle = (DOMElement *)testEle->getFirstChild()->getNextSibling();
  456.     DOMTYPEINFOTEST(testEle->getTypeInfo(), SchemaSymbols::fgATTVAL_ANYTYPE, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  457.     testEle = (DOMElement *)testEle->getNextSibling()->getNextSibling();
  458.     DOMTYPEINFOTEST(testEle->getTypeInfo(), SchemaSymbols::fgATTVAL_ANYTYPE, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  459.     testEle = (DOMElement *)testEle->getNextSibling()->getNextSibling();
  460.     DOMTYPEINFOTEST(testEle->getTypeInfo(), SchemaSymbols::fgDT_STRING, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  461.     //element anyTest
  462.     testEle = (DOMElement *)back->getNextSibling()->getNextSibling();
  463.     back = testEle;
  464.     testAttr = testEle->getAttributeNodeNS(X("http://www.secondSchema"), X("attr1"));
  465.     DOMTYPEINFOTEST(testAttr->getTypeInfo(), SchemaSymbols::fgDT_STRING, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  466.     testAttr = testEle->getAttributeNodeNS(X("http://www.secondSchema"), X("attr2"));
  467.     DOMTYPEINFOTEST(testAttr->getTypeInfo(), SchemaSymbols::fgDT_INTEGER, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  468.     testAttr = testEle->getAttributeNodeNS(X("http://www.secondSchema"), X("attr3"));
  469.     DOMTYPEINFOTEST(testAttr->getTypeInfo(), SchemaSymbols::fgDT_STRING, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  470.     testAttr = testEle->getAttributeNodeNS(X("http://www.secondSchema"), X("attr4"));
  471.     DOMTYPEINFOTEST(testAttr->getTypeInfo(), SchemaSymbols::fgDT_INTEGER, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  472.     DOMTYPEINFOTEST(testEle->getTypeInfo(), SchemaSymbols::fgATTVAL_ANYTYPE, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  473.     testEle = (DOMElement *)testEle->getFirstChild()->getNextSibling();
  474.     DOMTYPEINFOTEST(testEle->getTypeInfo(), SchemaSymbols::fgDT_STRING, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  475.     testEle = (DOMElement *)testEle->getNextSibling()->getNextSibling();
  476.     DOMTYPEINFOTEST(testEle->getTypeInfo(), SchemaSymbols::fgDT_STRING, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  477.     testEle = (DOMElement *)testEle->getNextSibling()->getNextSibling();
  478.     DOMTYPEINFOTEST(testEle->getTypeInfo(), SchemaSymbols::fgATTVAL_ANYTYPE, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  479.     //anyTestAttr1
  480.     testEle = (DOMElement *)back->getNextSibling()->getNextSibling();
  481.     back = testEle;
  482.     testAttr = testEle->getAttributeNodeNS(X("http://www.secondSchema"), X("attr5"));
  483.     DOMTYPEINFOTEST(testAttr->getTypeInfo(), SchemaSymbols::fgDT_ANYSIMPLETYPE, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  484.     //anyTestAttr2
  485.     testEle = (DOMElement *)back->getNextSibling()->getNextSibling();
  486.     back = testEle;
  487.     testAttr = testEle->getAttributeNodeNS(X("http://www.secondSchema"), X("attr5"));
  488.     DOMTYPEINFOTEST(testAttr->getTypeInfo(), SchemaSymbols::fgDT_ANYSIMPLETYPE, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  489.     //anyTestMissing
  490.     testEle = (DOMElement *)back->getNextSibling()->getNextSibling();
  491.     back = testEle;
  492.     DOMTYPEINFOTEST(testEle->getTypeInfo(), SchemaSymbols::fgATTVAL_ANYTYPE, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  493.     return passed;
  494. }
  495. bool TypeInfo::testInvaild() {
  496.     bool passed = true;
  497.     DOMNode *docEle = doc->getDocumentElement();
  498.     DOMAttr *testAttr;
  499.     DOMTYPEINFOTEST(((DOMElement *)docEle)->getTypeInfo(), SchemaSymbols::fgATTVAL_ANYTYPE, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  500.     //element invalidTest
  501.     DOMElement *testEle = findElement(X("invalidTest"));
  502.     testAttr = testEle->getAttributeNodeNS(X(""), X("simple"));
  503.     DOMTYPEINFOTEST(testAttr->getTypeInfo(), SchemaSymbols::fgDT_ANYSIMPLETYPE, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  504.     testAttr = testEle->getAttributeNodeNS(X(""), X("invalid"));
  505.     DOMTYPEINFOTEST(testAttr->getTypeInfo(), SchemaSymbols::fgDT_ANYSIMPLETYPE, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  506.     testEle = (DOMElement *)testEle->getFirstChild()->getNextSibling();
  507.     DOMTYPEINFOTEST(testEle->getTypeInfo(), SchemaSymbols::fgDT_ANYSIMPLETYPE, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  508.     testEle = (DOMElement *)testEle->getNextSibling()->getNextSibling();
  509.     DOMTYPEINFOTEST(testEle->getTypeInfo(), SchemaSymbols::fgATTVAL_ANYTYPE, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  510.     testEle = (DOMElement *)testEle->getNextSibling()->getNextSibling();
  511.     DOMTYPEINFOTEST(testEle->getTypeInfo(), SchemaSymbols::fgDT_ANYSIMPLETYPE, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  512.     testEle = (DOMElement *)testEle->getNextSibling()->getNextSibling();
  513.     DOMTYPEINFOTEST(testEle->getTypeInfo(), SchemaSymbols::fgATTVAL_ANYTYPE, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  514.     testEle = (DOMElement *)testEle->getNextSibling()->getNextSibling();
  515.     DOMTYPEINFOTEST(testEle->getTypeInfo(), SchemaSymbols::fgDT_ANYSIMPLETYPE, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  516.     //an undeclared element does not have anon value. Test this here
  517.     testEle = (DOMElement *)testEle->getNextSibling()->getNextSibling();
  518.     DOMTYPEINFOTEST(testEle->getTypeInfo(), SchemaSymbols::fgATTVAL_ANYTYPE, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  519.     testEle = (DOMElement *)testEle->getNextSibling()->getNextSibling();
  520.     DOMTYPEINFOTEST(testEle->getTypeInfo(), SchemaSymbols::fgATTVAL_ANYTYPE, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  521.     testEle = (DOMElement *)testEle->getNextSibling()->getNextSibling();
  522.     DOMTYPEINFOTEST(testEle->getTypeInfo(), SchemaSymbols::fgATTVAL_ANYTYPE, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  523.     testEle = (DOMElement *)testEle->getNextSibling()->getNextSibling();
  524.     DOMTYPEINFOTEST(testEle->getTypeInfo(), SchemaSymbols::fgATTVAL_ANYTYPE, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  525.     return passed;
  526. }
  527. bool TypeInfo::compareDOMTypeInfo(const DOMTypeInfo *info, const XMLCh* type, const XMLCh* uri) {
  528.     return XMLString::equals(info->getName(), type) && XMLString::equals(info->getNamespace(), uri);
  529. }
  530. bool TypeInfo::testDTD() {
  531.     bool passed = true;
  532.     DOMElement *testEle = doc->getDocumentElement();
  533.     DOMAttr *testAttr;
  534.     DOMTYPEINFOTEST(testEle->getTypeInfo(), X(""), X(""), __LINE__);
  535.     testAttr = testEle->getAttributeNodeNS(X(""), X("cdata"));
  536.     DOMTYPEINFOTEST(testAttr->getTypeInfo(), X("CDATA"), X(""), __LINE__);
  537.     testAttr = testEle->getAttributeNodeNS(X(""), X("enum"));
  538.     DOMTYPEINFOTEST(testAttr->getTypeInfo(), X("ENUMERATION"), X(""), __LINE__);
  539.     testAttr = testEle->getAttributeNodeNS(X(""), X("id"));
  540.     DOMTYPEINFOTEST(testAttr->getTypeInfo(), X("ID"), X(""), __LINE__);
  541.     testAttr = testEle->getAttributeNodeNS(X(""), X("idRef"));
  542.     DOMTYPEINFOTEST(testAttr->getTypeInfo(), X("IDREF"), X(""), __LINE__);
  543.     testAttr = testEle->getAttributeNodeNS(X(""), X("idRefs"));
  544.     DOMTYPEINFOTEST(testAttr->getTypeInfo(), X("IDREFS"), X(""), __LINE__);
  545.     testAttr = testEle->getAttributeNodeNS(X(""), X("nmToken"));
  546.     DOMTYPEINFOTEST(testAttr->getTypeInfo(), X("NMTOKEN"), X(""), __LINE__);
  547.     testAttr = testEle->getAttributeNodeNS(X(""), X("nmTokenDefault"));
  548.     DOMTYPEINFOTEST(testAttr->getTypeInfo(), X("NMTOKEN"), X(""), __LINE__);
  549.     testAttr = testEle->getAttributeNodeNS(X(""), X("nmTokenDefault2"));
  550.     DOMTYPEINFOTEST(testAttr->getTypeInfo(), X("NMTOKEN"), X(""), __LINE__);
  551.     testAttr = testEle->getAttributeNodeNS(X(""), X("nmTokens"));
  552.     DOMTYPEINFOTEST(testAttr->getTypeInfo(), X("NMTOKENS"), X(""), __LINE__);
  553.     testAttr = testEle->getAttributeNodeNS(X(""), X("entity"));
  554.     DOMTYPEINFOTEST(testAttr->getTypeInfo(), X("ENTITY"), X(""), __LINE__);
  555.     testAttr = testEle->getAttributeNodeNS(X(""), X("entities"));
  556.     DOMTYPEINFOTEST(testAttr->getTypeInfo(), X("ENTITIES"), X(""), __LINE__);
  557.     testAttr = testEle->getAttributeNodeNS(X(""), X("notation"));
  558.     DOMTYPEINFOTEST(testAttr->getTypeInfo(), X("NOTATION"), X(""), __LINE__);
  559.     testAttr = testEle->getAttributeNodeNS(X(""), X("noDecl"));
  560.     DOMTYPEINFOTEST(testAttr->getTypeInfo(), X("CDATA"), X(""), __LINE__);
  561.     testAttr = testEle->getAttributeNode(X("xmlns:foo"));
  562.     DOMTYPEINFOTEST(testAttr->getTypeInfo(), X("CDATA"), X(""), __LINE__);
  563.     return passed;
  564. }
  565. bool TypeInfo::combinedTest() {
  566.     bool passed = true;
  567.     DOMNode *docEle = doc->getDocumentElement();
  568.     DOMAttr *testAttr;
  569.     DOMElement *testEle = doc->getDocumentElement();
  570.     DOMTYPEINFOTEST(testEle->getTypeInfo(), SchemaSymbols::fgATTVAL_ANYTYPE, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  571.     testAttr = testEle->getAttributeNodeNS(X(""), X("attBoth"));
  572.     DOMTYPEINFOTEST(testAttr->getTypeInfo(), SchemaSymbols::fgDT_STRING, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  573.     testAttr = testEle->getAttributeNodeNS(X(""), X("attSchema"));
  574.     DOMTYPEINFOTEST(testAttr->getTypeInfo(), SchemaSymbols::fgDT_STRING, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  575.     testAttr = testEle->getAttributeNodeNS(X(""), X("attDTD"));
  576.     DOMTYPEINFOTEST(testAttr->getTypeInfo(), SchemaSymbols::fgDT_ANYSIMPLETYPE, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  577.     testEle = (DOMElement *)testEle->getFirstChild()->getNextSibling();
  578.     DOMTYPEINFOTEST(testEle->getTypeInfo(), SchemaSymbols::fgDT_STRING, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  579.     testEle = (DOMElement *)testEle->getNextSibling()->getNextSibling();
  580.     DOMTYPEINFOTEST(testEle->getTypeInfo(), SchemaSymbols::fgATTVAL_ANYTYPE, SchemaSymbols::fgURI_SCHEMAFORSCHEMA, __LINE__);
  581.     return passed;
  582. }
  583. DOMElement* TypeInfo::findElement(const XMLCh *name) const {
  584.     DOMNode *toTest = doc->getDocumentElement()->getFirstChild();
  585.     while(!XMLString::equals(toTest->getNodeName(), name)) {
  586.         toTest = toTest->getNextSibling();
  587.     }
  588.     return (DOMElement *)toTest;
  589. }
  590. int main(int argc, char **argv)
  591. {
  592.     bool passed = true;
  593.     TypeInfo ti;
  594.     try {
  595.         //first the combined DTD/Schema scanner
  596.         ti.parser = new XercesDOMParser;
  597.         ti.parser->setValidationScheme(XercesDOMParser::Val_Auto);
  598.         ti.parser->setDoNamespaces(true);
  599.         ti.parser->setDoSchema(true);
  600.         ti.parser->parse("data/TypeInfo.xml");
  601.         ti.doc = ti.parser->getDocument();
  602.     }
  603.     catch (...) {
  604.         cerr << "parsing data/TypeInfo.xml failed at line" <<  __LINE__ << endl;
  605.         delete ti.parser;
  606.         return false;
  607.     }
  608.     // test only if we got a doc
  609.     if (ti.doc) {
  610.         passed &= ti.testInBuiltTypesOnAttributes(true);
  611.         passed &= ti.testInBuiltTypesOnElements();
  612.         passed &= ti.testSimpleDerived();
  613.         passed &= ti.testComplexTypes();
  614.         passed &= ti.testUnions();
  615.         passed &= ti.testAnonymous();
  616.         passed &= ti.testXsiTypes();
  617.         passed &= ti.testAnys();
  618.         passed &= ti.testInvaild();
  619.     }
  620.     else
  621.         cout << "DOMTypeInfo test at line " << __LINE__ << "was not carried out" << endl;
  622.     delete ti.parser;
  623.     //lets do the same for the just schema scanner
  624.     try {
  625.         ti.parser = new XercesDOMParser;
  626.         ti.parser->setValidationScheme(XercesDOMParser::Val_Auto);
  627.         ti.parser->setDoNamespaces(true);
  628.         ti.parser->setDoSchema(true);
  629.         ti.parser->useScanner(X("SGXMLScanner"));
  630.         ti.parser->parse("data/TypeInfoNoDTD.xml");
  631.         ti.doc = ti.parser->getDocument();
  632.     }
  633.     catch (...) {
  634.         cerr << "parsing data/TypeInfo.xml failed at line" <<  __LINE__ << endl;
  635.         delete ti.parser;
  636.         return false;
  637.     }
  638.     // test only if we got a doc
  639.     if (ti.doc) {
  640.         passed &= ti.testInBuiltTypesOnAttributes(false);
  641.         passed &= ti.testInBuiltTypesOnElements();
  642.         passed &= ti.testSimpleDerived();
  643.         passed &= ti.testComplexTypes();
  644.         passed &= ti.testUnions();
  645.         passed &= ti.testAnonymous();
  646.         passed &= ti.testXsiTypes();
  647.         passed &= ti.testAnys();
  648.         passed &= ti.testInvaild();
  649.     }
  650.     else
  651.         cout << "DOMTypeInfo test at line " << __LINE__ << "was not carried out" << endl;
  652.     delete ti.parser;
  653.     //now default for DTD
  654.     try {
  655.         ti.parser = new XercesDOMParser;
  656.         ti.parser->setValidationScheme(XercesDOMParser::Val_Auto);
  657.         ti.parser->parse("data/TypeInfoJustDTD.xml");
  658.         ti.doc = ti.parser->getDocument();
  659.     }
  660.     catch (...) {
  661.         cerr << "parsing data/TypeInfo.xml failed at line" <<  __LINE__ << endl;
  662.         delete ti.parser;
  663.         return false;
  664.     }
  665.     // test only if we got a doc
  666.     if (ti.doc) {
  667.         passed &= ti.testDTD();
  668.     }
  669.     else
  670.         cout << "DOMTypeInfo test at line " << __LINE__ << "was not carried out" << endl;
  671.     delete ti.parser;
  672.     //and specific scanner
  673.     try {
  674.         ti.parser = new XercesDOMParser;
  675.         ti.parser->setValidationScheme(XercesDOMParser::Val_Auto);
  676.         ti.parser->useScanner(X("DGXMLScanner"));
  677.         ti.parser->parse("data/TypeInfoJustDTD.xml");
  678.         ti.doc = ti.parser->getDocument();
  679.     }
  680.     catch (...) {
  681.         cerr << "parsing data/TypeInfo.xml failed at line" <<  __LINE__ << endl;
  682.         delete ti.parser;
  683.         return false;
  684.     }
  685.     // test only if we got a doc
  686.     if (ti.doc) {
  687.         passed &=  ti.testDTD();
  688.     }
  689.     else
  690.         cout << "DOMTypeInfo test at line " << __LINE__ << "was not carried out" << endl;
  691.     delete ti.parser;
  692.     try {
  693.         ti.parser = new XercesDOMParser;
  694.         ti.parser->setValidationScheme(XercesDOMParser::Val_Auto);
  695.         ti.parser->setDoNamespaces(true);
  696.         ti.parser->setDoSchema(true);
  697.         ti.parser->parse("data/combined.xml");
  698.         ti.doc = ti.parser->getDocument();
  699.     }
  700.     catch (...) {
  701.         cerr << "parsing data/TypeInfo.xml failed at line" <<  __LINE__ << endl;
  702.         delete ti.parser;
  703.         return false;
  704.     }
  705.     // test only if we got a doc
  706.     if (ti.doc) {
  707.         passed &= ti.combinedTest();
  708.     }
  709.     else
  710.         cout << "DOMTypeInfo test at line " << __LINE__ << "was not carried out" << endl;
  711.     delete ti.parser;
  712.     if (!passed) {
  713.         cerr << "test failed" << endl;
  714.         return 4;
  715.     }
  716.     cerr << "Test Run Successfully" << endl;
  717.     return 0;
  718. }