Author: ldimaggio
Date: 2012-05-23 11:42:42 -0400 (Wed, 23 May 2012)
New Revision: 41305
Modified:
trunk/esb/tests/org.jboss.tools.esb.ui.bot.test/src/org/jboss/tools/esb/ui/bot/tests/examples/WebServiceProducer.java
trunk/esb/tests/org.jboss.tools.esb.ui.bot.test/src/org/jboss/tools/esb/ui/bot/tests/examples/WebServiceProducerHttp.java
trunk/esb/tests/org.jboss.tools.esb.ui.bot.test/src/org/jboss/tools/esb/ui/bot/tests/examples/WebServiceProducerSocket.java
Log:
Moved the WebServiceProducer* tests to new test classes to avoid the server logging issue
-
https://issues.jboss.org/browse/JBQA-6321 */
Modified:
trunk/esb/tests/org.jboss.tools.esb.ui.bot.test/src/org/jboss/tools/esb/ui/bot/tests/examples/WebServiceProducer.java
===================================================================
---
trunk/esb/tests/org.jboss.tools.esb.ui.bot.test/src/org/jboss/tools/esb/ui/bot/tests/examples/WebServiceProducer.java 2012-05-23
15:28:32 UTC (rev 41304)
+++
trunk/esb/tests/org.jboss.tools.esb.ui.bot.test/src/org/jboss/tools/esb/ui/bot/tests/examples/WebServiceProducer.java 2012-05-23
15:42:42 UTC (rev 41305)
@@ -23,6 +23,8 @@
assertNotNull("Calling Send message failed, nothing appended to server
log",text);
assertTrue("Calling Send message failed, unexpected server output
:"+text,text.contains("Ah Goodbye then!!!!"));
+ /* Moved these tests to new test classes to avoid the server logging issue -
https://issues.jboss.org/browse/JBQA-6321 */
+
// text =
executeClientGetServerOutput("org.jboss.soa.esb.samples.quickstart.webserviceproducer.test.SendMessage","http
8765");
// assertNotNull("Calling Send message failed, nothing appended (http) to server
log",text);
// assertTrue("Calling Send message failed, unexpected server output
:"+text,text.contains("Ah Goodbye then!!!!"));
Modified:
trunk/esb/tests/org.jboss.tools.esb.ui.bot.test/src/org/jboss/tools/esb/ui/bot/tests/examples/WebServiceProducerHttp.java
===================================================================
---
trunk/esb/tests/org.jboss.tools.esb.ui.bot.test/src/org/jboss/tools/esb/ui/bot/tests/examples/WebServiceProducerHttp.java 2012-05-23
15:28:32 UTC (rev 41304)
+++
trunk/esb/tests/org.jboss.tools.esb.ui.bot.test/src/org/jboss/tools/esb/ui/bot/tests/examples/WebServiceProducerHttp.java 2012-05-23
15:42:42 UTC (rev 41305)
@@ -19,6 +19,8 @@
protected void executeExample() {
super.executeExample();
+ /* Created this test to avoid the server logging issue -
https://issues.jboss.org/browse/JBQA-6321 */
+
String text =
executeClientGetServerOutput("org.jboss.soa.esb.samples.quickstart.webserviceproducer.test.SendMessage","http
8765");
assertNotNull("Calling Send message failed, nothing appended (http) to server
log",text);
assertTrue("Calling Send message failed, unexpected server output
:"+text,text.contains("Ah Goodbye then!!!!"));
Modified:
trunk/esb/tests/org.jboss.tools.esb.ui.bot.test/src/org/jboss/tools/esb/ui/bot/tests/examples/WebServiceProducerSocket.java
===================================================================
---
trunk/esb/tests/org.jboss.tools.esb.ui.bot.test/src/org/jboss/tools/esb/ui/bot/tests/examples/WebServiceProducerSocket.java 2012-05-23
15:28:32 UTC (rev 41304)
+++
trunk/esb/tests/org.jboss.tools.esb.ui.bot.test/src/org/jboss/tools/esb/ui/bot/tests/examples/WebServiceProducerSocket.java 2012-05-23
15:42:42 UTC (rev 41305)
@@ -19,6 +19,8 @@
protected void executeExample() {
super.executeExample();
+ /* Created this test to avoid the server logging issue -
https://issues.jboss.org/browse/JBQA-6321 */
+
String text =
executeClientGetServerOutput("org.jboss.soa.esb.samples.quickstart.webserviceproducer.test.SendMessage","socket
8888");
assertNotNull("Calling Send message failed, nothing appended (socket) to server
log",text);
assertTrue("Calling Send message failed, unexpected server output
:"+text,text.contains("Ah Goodbye then!!!!"));