Uploaded image for project: 'Application Server 7'
  1. Application Server 7
  2. AS7-5943

StandardConfigsXMLValidationUnitTestCase cannot find jboss-common_6_0.xsd on IBM JDK

      StandardConfigsXMLValidationUnitTestCase fails on IBM JDK since it cannot find jboss-common_6_0.xsd schema, see the snippet below for more details. The failure is triggered by invocation of StandardConfigsXMLValidationUnitTestCase#DEFAULT_RESOURCE_RESOLVER.resolveResource() method with systemId == 'http://www.jboss.org/j2ee/schema/jboss-common_6_0.xsd' which is missing in a NAMESPACE_MAP field. Furthermore, compared to Oracle JDK the resolveResource method is invoked with different parameters on IBM JDK, i.e. it loads different XSD's into the validation of the same XML files. On Oracle JDK it is never asked for jboss-common systemId. That is weird.

      junit.framework.AssertionFailedError: http://www.jboss.org/j2ee/schema/jboss-common_6_0.xsd not found
      	at junit.framework.Assert.fail(Assert.java:50)
      	at junit.framework.Assert.assertTrue(Assert.java:20)
      	at junit.framework.Assert.assertNotNull(Assert.java:218)
      	at org.jboss.as.test.smoke.subsystem.xml.AbstractValidationUnitTest.discoverXsd(AbstractValidationUnitTest.java:208)
      	at org.jboss.as.test.smoke.subsystem.xml.AbstractValidationUnitTest$2.resolveResource(AbstractValidationUnitTest.java:124)
      	at org.apache.xerces.util.DOMEntityResolverWrapper.resolveEntity(Unknown Source)
      	at org.apache.xerces.impl.XMLEntityManager.resolveEntity(Unknown Source)
      	at org.apache.xerces.impl.xs.XMLSchemaLoader.resolveDocument(Unknown Source)
      	at org.apache.xerces.impl.xs.traversers.XSDHandler.resolveSchema(Unknown Source)
      	at org.apache.xerces.impl.xs.traversers.XSDHandler.constructTrees(Unknown Source)
      	at org.apache.xerces.impl.xs.traversers.XSDHandler.parseSchema(Unknown Source)
      	at org.apache.xerces.impl.xs.XMLSchemaLoader.loadSchema(Unknown Source)
      	at org.apache.xerces.impl.xs.XMLSchemaLoader.loadGrammar(Unknown Source)
      	at org.apache.xerces.impl.xs.XMLSchemaLoader.loadGrammar(Unknown Source)
      	at org.apache.xerces.jaxp.validation.XMLSchemaFactory.newSchema(Unknown Source)
      	at org.jboss.as.test.smoke.subsystem.xml.StandardConfigsXMLValidationUnitTestCase.parseXml(StandardConfigsXMLValidationUnitTestCase.java:150)
      	at org.jboss.as.test.smoke.subsystem.xml.StandardConfigsXMLValidationUnitTestCase.testHostSlave(StandardConfigsXMLValidationUnitTestCase.java:82)
      

            [AS7-5943] StandardConfigsXMLValidationUnitTestCase cannot find jboss-common_6_0.xsd on IBM JDK

            Sure. I've just created them.

            Ivo Studensky added a comment - Sure. I've just created them.

            Can you create a pull request?

            Brian Stansberry added a comment - Can you create a pull request?

            Ivo Studensky added a comment - https://github.com/istudens/jboss-as/compare/AS7-5943

            Ivo Studensky added a comment - - edited

            The issue can be easily fixed by adding the following line to AbstractValidationUnitTest. It might also be a configuration issue of IBM JDK though.

            NAMESPACE_MAP.put("http://www.jboss.org/j2ee/schema/jboss-common_6_0.xsd", "jboss-common_6_0.xsd");
            

            Ivo Studensky added a comment - - edited The issue can be easily fixed by adding the following line to AbstractValidationUnitTest. It might also be a configuration issue of IBM JDK though. NAMESPACE_MAP.put( "http: //www.jboss.org/j2ee/schema/jboss-common_6_0.xsd" , "jboss-common_6_0.xsd" );

              istudens@redhat.com Ivo Studensky
              istudens@redhat.com Ivo Studensky
              Votes:
              0 Vote for this issue
              Watchers:
              2 Start watching this issue

                Created:
                Updated:
                Resolved: