Bug 928696
| Summary: | Intermittent failures in ClusteredWebSimpleTestCase | ||||||
|---|---|---|---|---|---|---|---|
| Product: | [JBoss] JBoss Enterprise Application Platform 6 | Reporter: | Richard Janík <rjanik> | ||||
| Component: | Clustering | Assignee: | Radoslav Husar <rhusar> | ||||
| Status: | CLOSED CURRENTRELEASE | QA Contact: | |||||
| Severity: | high | Docs Contact: | |||||
| Priority: | unspecified | ||||||
| Version: | 6.1.0 | CC: | cdewolf, chaowan, jkudrnac, myarboro, rhusar, smumford | ||||
| Target Milestone: | ER4 | ||||||
| Target Release: | EAP 6.1.1 | ||||||
| Hardware: | Unspecified | ||||||
| OS: | Unspecified | ||||||
| Whiteboard: | |||||||
| Fixed In Version: | Doc Type: | Bug Fix | |||||
| Doc Text: |
No doc needed.
|
Story Points: | --- | ||||
| Clone Of: | Environment: | ||||||
| Last Closed: | 2013-09-16 20:21:38 UTC | Type: | Bug | ||||
| Regression: | --- | Mount Type: | --- | ||||
| Documentation: | --- | CRM: | |||||
| Verified Versions: | Category: | --- | |||||
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |||||
| Cloudforms Team: | --- | Target Upstream Version: | |||||
| Embargoed: | |||||||
| Attachments: |
|
||||||
|
Description
Richard Janík
2013-03-28 09:14:19 UTC
This is specific for Oracle jdk 1.7. The cause of three failed tests is that when the testGracefulServeOnShutdown (which shutdown the server for CONTAINER_1) has been ran before any of these three tests, then subsequent http requests will get a http-404 code as a result. Correcting my last comment, seems it makes server restart-up after it shutdown at https://github.com/jbossas/jboss-eap/blob/6.x/testsuite/integration/clust/src/test/java/org/jboss/as/test/clustering/cluster/web/ClusteredWebSimpleTestCase.java?source=cc#L268, but still, later tests fail after the server restarted. The clustering testsuite is designed to have granularity at the whole test class level. In this case, the order was forgotten to be enforced. The use of Sun JDK 7 makes the order different. Fix: https://github.com/jbossas/jboss-eap/pull/211 Removed doc flag as per update by Radoslav. Verified. |