TestingResearchIllinois / idoft

35 stars 249 forks source link

https://github.com/wildfly/wildfly,63f028ebcca821b21291b46529048057f19f0d91,dist,org.wildfly.dist.subsystem.xml.StandardConfigsXMLValidationUnitTestCase.testHost #736

Open wayney15 opened 1 year ago

wayney15 commented 1 year ago

The previous commit for this file at 98f53b790948c751c6003fd3ee07fd8320456670 will not execute because the test is validating predefined xsd files on server. It appears that all the old xsd templates were removed causing the tests to fail. Commit 63f028ebcca821b21291b46529048057f19f0d91 is the first commit where we verify the flakiness exists.

The config file of NonDex is attached below: config.txt

winglam commented 1 year ago

What does will not execute mean? That the test runs but fails? The test doesn't run at all? If so, what is the failure message you see and what did you try to address this issue?

wayney15 commented 1 year ago

The test doesn't run at all, the failures all come back with something like "http://www.jboss.org/schema/jbossas/web-app_4_0.xsd not found". I checked https://www.jboss.org/schema/jbossas/ and it has a prefix list of xsd templates for validation. Checking on the code, error happens at https://github.com/wildfly/wildfly/blob/main/testsuite/shared/src/main/java/org/wildfly/test/distribution/validation/AbstractValidationUnitTest.java#L225. It is trying to get systemId which we do not have control over. Therefore, we couldn't control which xsd template to validate.