Author: julien(a)jboss.com
Date: 2007-08-22 13:14:44 -0400 (Wed, 22 Aug 2007)
New Revision: 8033
Modified:
modules/test/trunk/test/src/main/org/jboss/portal/test/framework/driver/http/HTTPTestConversation.java
modules/test/trunk/test/src/main/org/jboss/portal/test/framework/driver/http/HttpTestCase.java
modules/test/trunk/test/src/main/org/jboss/portal/test/framework/driver/http/HttpTestContext.java
modules/test/trunk/test/src/main/org/jboss/portal/test/framework/driver/http/HttpTestDriver.java
modules/test/trunk/test/src/main/org/jboss/portal/test/framework/driver/http/HttpTestDriverClient.java
modules/test/trunk/test/src/main/org/jboss/portal/test/framework/driver/http/command/DoGetCommand.java
modules/test/trunk/test/src/main/org/jboss/portal/test/framework/driver/http/command/DoPostCommand.java
modules/test/trunk/test/src/main/org/jboss/portal/test/framework/driver/http/command/HttpDriverCommand.java
modules/test/trunk/test/src/main/org/jboss/portal/test/framework/driver/http/command/HttpDriverCommandContext.java
modules/test/trunk/test/src/main/org/jboss/portal/test/framework/driver/http/command/SendResponseCommand.java
modules/test/trunk/test/src/main/org/jboss/portal/test/framework/driver/http/response/HttpDriverResponse.java
modules/test/trunk/test/src/main/org/jboss/portal/test/framework/driver/http/response/HttpDriverResponseContext.java
modules/test/trunk/test/src/main/org/jboss/portal/test/framework/driver/http/response/InvokeGetResponse.java
modules/test/trunk/test/src/main/org/jboss/portal/test/framework/driver/http/response/InvokePostResponse.java
modules/test/trunk/test/src/main/org/jboss/portal/test/framework/driver/http/response/SendResponseResponse.java
modules/test/trunk/test/src/resources/generic/portal-test-jar/org/jboss/portal/test/framework/container/http-runner-beans.xml
modules/test/trunk/test/src/resources/jboss/portal-test-jar/org/jboss/portal/test/framework/container/http-runner-beans.xml
modules/test/trunk/test/src/resources/jboss/portal-test-jar/org/jboss/portal/test/framework/container/web-runner-beans.xml
Log:
correctly and consistent name the http test driver stuff HTTP instead of Http since it is
an acronym
Modified:
modules/test/trunk/test/src/main/org/jboss/portal/test/framework/driver/http/HTTPTestConversation.java
===================================================================
---
modules/test/trunk/test/src/main/org/jboss/portal/test/framework/driver/http/HTTPTestConversation.java 2007-08-22
16:07:20 UTC (rev 8032)
+++
modules/test/trunk/test/src/main/org/jboss/portal/test/framework/driver/http/HTTPTestConversation.java 2007-08-22
17:14:44 UTC (rev 8033)
@@ -37,13 +37,13 @@
import org.apache.commons.httpclient.params.HttpMethodParams;
import org.apache.log4j.Logger;
import org.jboss.portal.test.framework.server.Node;
-import org.jboss.portal.test.framework.driver.http.command.HttpDriverCommandContext;
-import org.jboss.portal.test.framework.driver.http.command.HttpDriverCommand;
+import org.jboss.portal.test.framework.driver.http.command.HTTPDriverCommandContext;
+import org.jboss.portal.test.framework.driver.http.command.HTTPDriverCommand;
import org.jboss.portal.test.framework.driver.http.command.DoGetCommand;
import org.jboss.portal.test.framework.driver.http.command.DoPostCommand;
import org.jboss.portal.test.framework.driver.http.command.SendResponseCommand;
-import org.jboss.portal.test.framework.driver.http.response.HttpDriverResponseContext;
-import org.jboss.portal.test.framework.driver.http.response.HttpDriverResponse;
+import org.jboss.portal.test.framework.driver.http.response.HTTPDriverResponseContext;
+import org.jboss.portal.test.framework.driver.http.response.HTTPDriverResponse;
import org.jboss.portal.test.framework.driver.http.response.InvokeGetResponse;
import org.jboss.portal.test.framework.driver.http.response.InvokePostResponse;
import org.jboss.portal.test.framework.driver.remote.TestConversation;
@@ -78,7 +78,7 @@
private final Logger log = Logger.getLogger(getClass());
/** . */
- private final HttpTestDriverClient driver;
+ private final HTTPTestDriverClient driver;
/** The node to invoke. */
private Node node;
@@ -92,7 +92,7 @@
/** The test parametrization. */
private TestParametrization parametrization;
- public HTTPTestConversation(HttpTestDriverClient driver, String testId, Node node)
+ public HTTPTestConversation(HTTPTestDriverClient driver, String testId, Node node)
{
super(driver, testId);
@@ -108,14 +108,14 @@
protected RemoteDriverCommandContext createContext(DriverCommand command)
{
- return new HttpDriverCommandContext(command);
+ return new HTTPDriverCommandContext(command);
}
protected DriverCommand createCommand(RemoteDriverResponseContext responseContext)
throws Exception
{
- if (responseContext.getResponse() instanceof HttpDriverResponse)
+ if (responseContext.getResponse() instanceof HTTPDriverResponse)
{
- return createHTTPCommand((HttpDriverResponseContext)responseContext);
+ return createHTTPCommand((HTTPDriverResponseContext)responseContext);
}
else
{
@@ -207,18 +207,18 @@
pushContext();
DriverResponse response = driver.getServer(node).invoke(testId, command);
requestCount = 0;
- return new HttpDriverResponseContext(response);
+ return new HTTPDriverResponseContext(response);
}
else if (command instanceof SendResponseCommand)
{
pushContext();
DriverResponse response = driver.getServer(node).invoke(testId, command);
requestCount++;
- return new HttpDriverResponseContext(response);
+ return new HTTPDriverResponseContext(response);
}
else
{
- return new HttpDriverResponseContext(new ErrorResponse("Unexpected
response"));
+ return new HTTPDriverResponseContext(new ErrorResponse("Unexpected
response"));
}
}
@@ -226,7 +226,7 @@
* Create an http command from an http response.
* @param responseContext
*/
- protected HttpDriverCommand createHTTPCommand(HttpDriverResponseContext
responseContext) throws Exception
+ protected HTTPDriverCommand createHTTPCommand(HTTPDriverResponseContext
responseContext) throws Exception
{
DriverResponse resp = responseContext.getResponse();
if (resp instanceof InvokeGetResponse)
@@ -273,7 +273,7 @@
}
}
- private HttpDriverResponseContext decodeHTTPResponse(HttpMethod httpMethod) throws
Exception
+ private HTTPDriverResponseContext decodeHTTPResponse(HttpMethod httpMethod) throws
Exception
{
TestContext ctx = popContext();
DriverResponse response = ctx.getResponse();
@@ -289,7 +289,7 @@
{
log.info("# Received '200' code");
requestCount++;
- return new HttpDriverResponseContext(httpMethod, response);
+ return new HTTPDriverResponseContext(httpMethod, response);
}
// Send redirect
case 302:
@@ -298,7 +298,7 @@
{
log.info("# Received Result object which overrides the 302");
requestCount++;
- return new HttpDriverResponseContext(httpMethod, response);
+ return new HTTPDriverResponseContext(httpMethod, response);
}
// Otherwise satisfy the 302 code
@@ -311,21 +311,21 @@
// For now we don't add any contextual payload as
// 302 is some kind of implicit redirect response
- return (HttpDriverResponseContext)invoke(new
HttpDriverCommandContext(cmd));
+ return (HTTPDriverResponseContext)invoke(new
HTTPDriverCommandContext(cmd));
}
else
{
// The response is invalid
- return new HttpDriverResponseContext(httpMethod, new
FailureResponse("302 Code with corrupted data"));
+ return new HTTPDriverResponseContext(httpMethod, new
FailureResponse("302 Code with corrupted data"));
}
case 500:
log.info("# Received '500' code");
- return new HttpDriverResponseContext(httpMethod, new
FailureResponse("Received '500' code at " + httpMethod.getURI()));
+ return new HTTPDriverResponseContext(httpMethod, new
FailureResponse("Received '500' code at " + httpMethod.getURI()));
case 404:
log.info("# Received '404' code");
- return new HttpDriverResponseContext(httpMethod, new
FailureResponse("Received '404' code at " + httpMethod.getURI()));
+ return new HTTPDriverResponseContext(httpMethod, new
FailureResponse("Received '404' code at " + httpMethod.getURI()));
default:
- return new HttpDriverResponseContext(httpMethod, new
ErrorResponse("Unexpected http code " + status + " at " +
httpMethod.getURI()));
+ return new HTTPDriverResponseContext(httpMethod, new
ErrorResponse("Unexpected http code " + status + " at " +
httpMethod.getURI()));
}
}
@@ -372,7 +372,7 @@
private void pushContext()
{
- HttpTestContext ctx = new HttpTestContext(requestCount, driver.getArchivePath(),
parametrization);
+ HTTPTestContext ctx = new HTTPTestContext(requestCount, driver.getArchivePath(),
parametrization);
log.info("# Updating test case context of : " + node + " : " +
ctx);
RemoteTestDriver agent = driver.getServer(node);
agent.pushContext(testId, ctx);
Modified:
modules/test/trunk/test/src/main/org/jboss/portal/test/framework/driver/http/HttpTestCase.java
===================================================================
---
modules/test/trunk/test/src/main/org/jboss/portal/test/framework/driver/http/HttpTestCase.java 2007-08-22
16:07:20 UTC (rev 8032)
+++
modules/test/trunk/test/src/main/org/jboss/portal/test/framework/driver/http/HttpTestCase.java 2007-08-22
17:14:44 UTC (rev 8033)
@@ -37,13 +37,13 @@
* @author <a href="mailto:julien@jboss.org">Julien Viet</a>
* @version $Revision: 5636 $
*/
-public abstract class HttpTestCase extends RemoteTestCase
+public abstract class HTTPTestCase extends RemoteTestCase
{
/** The test path. */
protected final String path;
- public HttpTestCase(String testCaseId, String path)
+ public HTTPTestCase(String testCaseId, String path)
{
super(testCaseId);
Modified:
modules/test/trunk/test/src/main/org/jboss/portal/test/framework/driver/http/HttpTestContext.java
===================================================================
---
modules/test/trunk/test/src/main/org/jboss/portal/test/framework/driver/http/HttpTestContext.java 2007-08-22
16:07:20 UTC (rev 8032)
+++
modules/test/trunk/test/src/main/org/jboss/portal/test/framework/driver/http/HttpTestContext.java 2007-08-22
17:14:44 UTC (rev 8033)
@@ -33,7 +33,7 @@
* @author <a href="mailto:julien@jboss.org">Julien Viet</a>
* @version $Revision: 5498 $
*/
-public class HttpTestContext extends TestContext
+public class HTTPTestContext extends TestContext
{
/**
@@ -42,7 +42,7 @@
* @return the current test context
* @throws IllegalStateException if there is no current context
*/
- public static HttpTestContext getCurrentContext() throws IllegalStateException
+ public static HTTPTestContext getCurrentContext() throws IllegalStateException
{
throw new UnsupportedOperationException("Don't use this API");
}
@@ -52,7 +52,7 @@
*
* @return the current test context
*/
- public static HttpTestContext peekCurrentContext()
+ public static HTTPTestContext peekCurrentContext()
{
throw new UnsupportedOperationException("Don't use this API");
}
@@ -62,7 +62,7 @@
*
* @param newContext the test case context
*/
- public static void setCurrentContext(HttpTestContext newContext)
+ public static void setCurrentContext(HTTPTestContext newContext)
{
throw new UnsupportedOperationException("Don't use this API");
}
@@ -79,7 +79,7 @@
public static DriverResponse getCurrentResponse() throws IllegalStateException
{
- HttpTestContext ctx = getCurrentContext();
+ HTTPTestContext ctx = getCurrentContext();
if (ctx != null)
{
return ctx.response;
@@ -92,16 +92,16 @@
public static void setCurrentResponse(DriverResponse currentResponse) throws
IllegalStateException
{
- HttpTestContext ctx = getCurrentContext();
+ HTTPTestContext ctx = getCurrentContext();
ctx.setResponse(currentResponse);
}
- public HttpTestContext(TestContext that)
+ public HTTPTestContext(TestContext that)
{
super(that);
}
- public HttpTestContext(int requestCount, String archivePath, TestParametrization
parametrization)
+ public HTTPTestContext(int requestCount, String archivePath, TestParametrization
parametrization)
{
super(requestCount, archivePath, parametrization);
}
Modified:
modules/test/trunk/test/src/main/org/jboss/portal/test/framework/driver/http/HttpTestDriver.java
===================================================================
---
modules/test/trunk/test/src/main/org/jboss/portal/test/framework/driver/http/HttpTestDriver.java 2007-08-22
16:07:20 UTC (rev 8032)
+++
modules/test/trunk/test/src/main/org/jboss/portal/test/framework/driver/http/HttpTestDriver.java 2007-08-22
17:14:44 UTC (rev 8033)
@@ -28,6 +28,6 @@
* @author <a href="mailto:julien@jboss.org">Julien Viet</a>
* @version $Revision: 1.1 $
*/
-public interface HttpTestDriver extends RemoteTestDriver
+public interface HTTPTestDriver extends RemoteTestDriver
{
}
Modified:
modules/test/trunk/test/src/main/org/jboss/portal/test/framework/driver/http/HttpTestDriverClient.java
===================================================================
---
modules/test/trunk/test/src/main/org/jboss/portal/test/framework/driver/http/HttpTestDriverClient.java 2007-08-22
16:07:20 UTC (rev 8032)
+++
modules/test/trunk/test/src/main/org/jboss/portal/test/framework/driver/http/HttpTestDriverClient.java 2007-08-22
17:14:44 UTC (rev 8033)
@@ -30,7 +30,7 @@
* @author <a href="mailto:julien@jboss.org">Julien Viet</a>
* @version $Revision: 1.1 $
*/
-public class HttpTestDriverClient extends RemoteTestDriverClient
+public class HTTPTestDriverClient extends RemoteTestDriverClient
{
protected TestConversation createConversation(String testId, Node node)
{
Modified:
modules/test/trunk/test/src/main/org/jboss/portal/test/framework/driver/http/command/DoGetCommand.java
===================================================================
---
modules/test/trunk/test/src/main/org/jboss/portal/test/framework/driver/http/command/DoGetCommand.java 2007-08-22
16:07:20 UTC (rev 8032)
+++
modules/test/trunk/test/src/main/org/jboss/portal/test/framework/driver/http/command/DoGetCommand.java 2007-08-22
17:14:44 UTC (rev 8033)
@@ -30,7 +30,7 @@
* @author <a href="mailto:julien@jboss.org">Julien Viet</a>
* @version $Revision: 5448 $
*/
-public class DoGetCommand extends HttpDriverCommand
+public class DoGetCommand extends HTTPDriverCommand
{
/** . */
Modified:
modules/test/trunk/test/src/main/org/jboss/portal/test/framework/driver/http/command/DoPostCommand.java
===================================================================
---
modules/test/trunk/test/src/main/org/jboss/portal/test/framework/driver/http/command/DoPostCommand.java 2007-08-22
16:07:20 UTC (rev 8032)
+++
modules/test/trunk/test/src/main/org/jboss/portal/test/framework/driver/http/command/DoPostCommand.java 2007-08-22
17:14:44 UTC (rev 8033)
@@ -28,7 +28,7 @@
* @author <a href="mailto:julien@jboss.org">Julien Viet</a>
* @version $Revision: 5448 $
*/
-public class DoPostCommand extends HttpDriverCommand
+public class DoPostCommand extends HTTPDriverCommand
{
private String url;
Modified:
modules/test/trunk/test/src/main/org/jboss/portal/test/framework/driver/http/command/HttpDriverCommand.java
===================================================================
---
modules/test/trunk/test/src/main/org/jboss/portal/test/framework/driver/http/command/HttpDriverCommand.java 2007-08-22
16:07:20 UTC (rev 8032)
+++
modules/test/trunk/test/src/main/org/jboss/portal/test/framework/driver/http/command/HttpDriverCommand.java 2007-08-22
17:14:44 UTC (rev 8033)
@@ -28,6 +28,6 @@
* @author <a href="mailto:julien@jboss.org">Julien Viet</a>
* @version $Revision: 1.1 $
*/
-public class HttpDriverCommand extends DriverCommand
+public class HTTPDriverCommand extends DriverCommand
{
}
Modified:
modules/test/trunk/test/src/main/org/jboss/portal/test/framework/driver/http/command/HttpDriverCommandContext.java
===================================================================
---
modules/test/trunk/test/src/main/org/jboss/portal/test/framework/driver/http/command/HttpDriverCommandContext.java 2007-08-22
16:07:20 UTC (rev 8032)
+++
modules/test/trunk/test/src/main/org/jboss/portal/test/framework/driver/http/command/HttpDriverCommandContext.java 2007-08-22
17:14:44 UTC (rev 8033)
@@ -32,14 +32,14 @@
* @author <a href="mailto:julien@jboss.org">Julien Viet</a>
* @version $Revision: 1.1 $
*/
-public class HttpDriverCommandContext extends RemoteDriverCommandContext
+public class HTTPDriverCommandContext extends RemoteDriverCommandContext
{
- public HttpDriverCommandContext(RemoteDriverResponseContext responseContext,
DriverCommand command)
+ public HTTPDriverCommandContext(RemoteDriverResponseContext responseContext,
DriverCommand command)
{
super(responseContext, command);
}
- public HttpDriverCommandContext(DriverCommand command)
+ public HTTPDriverCommandContext(DriverCommand command)
{
super(command);
}
Modified:
modules/test/trunk/test/src/main/org/jboss/portal/test/framework/driver/http/command/SendResponseCommand.java
===================================================================
---
modules/test/trunk/test/src/main/org/jboss/portal/test/framework/driver/http/command/SendResponseCommand.java 2007-08-22
16:07:20 UTC (rev 8032)
+++
modules/test/trunk/test/src/main/org/jboss/portal/test/framework/driver/http/command/SendResponseCommand.java 2007-08-22
17:14:44 UTC (rev 8033)
@@ -28,7 +28,7 @@
* @author <a href="mailto:julien@jboss.org">Julien Viet</a>
* @version $Revision: 1.1 $
*/
-public class SendResponseCommand extends HttpDriverCommand
+public class SendResponseCommand extends HTTPDriverCommand
{
/** . */
Modified:
modules/test/trunk/test/src/main/org/jboss/portal/test/framework/driver/http/response/HttpDriverResponse.java
===================================================================
---
modules/test/trunk/test/src/main/org/jboss/portal/test/framework/driver/http/response/HttpDriverResponse.java 2007-08-22
16:07:20 UTC (rev 8032)
+++
modules/test/trunk/test/src/main/org/jboss/portal/test/framework/driver/http/response/HttpDriverResponse.java 2007-08-22
17:14:44 UTC (rev 8033)
@@ -28,6 +28,6 @@
* @author <a href="mailto:julien@jboss.org">Julien Viet</a>
* @version $Revision: 1.1 $
*/
-public abstract class HttpDriverResponse extends DriverResponse
+public abstract class HTTPDriverResponse extends DriverResponse
{
}
Modified:
modules/test/trunk/test/src/main/org/jboss/portal/test/framework/driver/http/response/HttpDriverResponseContext.java
===================================================================
---
modules/test/trunk/test/src/main/org/jboss/portal/test/framework/driver/http/response/HttpDriverResponseContext.java 2007-08-22
16:07:20 UTC (rev 8032)
+++
modules/test/trunk/test/src/main/org/jboss/portal/test/framework/driver/http/response/HttpDriverResponseContext.java 2007-08-22
17:14:44 UTC (rev 8033)
@@ -32,13 +32,13 @@
* @author <a href="mailto:julien@jboss.org">Julien Viet</a>
* @version $Revision: 1.1 $
*/
-public class HttpDriverResponseContext extends RemoteDriverResponseContext
+public class HTTPDriverResponseContext extends RemoteDriverResponseContext
{
/** The http method if not null. */
private HttpMethod httpMethod;
- public HttpDriverResponseContext(HttpMethod httpMethod, DriverResponse response)
+ public HTTPDriverResponseContext(HttpMethod httpMethod, DriverResponse response)
{
super(response);
@@ -46,7 +46,7 @@
this.httpMethod = httpMethod;
}
- public HttpDriverResponseContext(DriverResponse response)
+ public HTTPDriverResponseContext(DriverResponse response)
{
this(null, response);
}
Modified:
modules/test/trunk/test/src/main/org/jboss/portal/test/framework/driver/http/response/InvokeGetResponse.java
===================================================================
---
modules/test/trunk/test/src/main/org/jboss/portal/test/framework/driver/http/response/InvokeGetResponse.java 2007-08-22
16:07:20 UTC (rev 8032)
+++
modules/test/trunk/test/src/main/org/jboss/portal/test/framework/driver/http/response/InvokeGetResponse.java 2007-08-22
17:14:44 UTC (rev 8033)
@@ -30,7 +30,7 @@
* @author <a href="mailto:boleslaw.dawidowicz@jboss.com">Boleslaw
Dawidowicz</a>
* @version $Revision: 5448 $
*/
-public class InvokeGetResponse extends HttpDriverResponse
+public class InvokeGetResponse extends HTTPDriverResponse
{
/** The serialVersionUID */
Modified:
modules/test/trunk/test/src/main/org/jboss/portal/test/framework/driver/http/response/InvokePostResponse.java
===================================================================
---
modules/test/trunk/test/src/main/org/jboss/portal/test/framework/driver/http/response/InvokePostResponse.java 2007-08-22
16:07:20 UTC (rev 8032)
+++
modules/test/trunk/test/src/main/org/jboss/portal/test/framework/driver/http/response/InvokePostResponse.java 2007-08-22
17:14:44 UTC (rev 8033)
@@ -30,7 +30,7 @@
* @author <a href="mailto:julien@jboss.org">Julien Viet</a>
* @version $Revision: 5448 $
*/
-public class InvokePostResponse extends HttpDriverResponse
+public class InvokePostResponse extends HTTPDriverResponse
{
/** The serialVersionUID */
Modified:
modules/test/trunk/test/src/main/org/jboss/portal/test/framework/driver/http/response/SendResponseResponse.java
===================================================================
---
modules/test/trunk/test/src/main/org/jboss/portal/test/framework/driver/http/response/SendResponseResponse.java 2007-08-22
16:07:20 UTC (rev 8032)
+++
modules/test/trunk/test/src/main/org/jboss/portal/test/framework/driver/http/response/SendResponseResponse.java 2007-08-22
17:14:44 UTC (rev 8033)
@@ -26,7 +26,7 @@
* @author <a href="mailto:julien@jboss.org">Julien Viet</a>
* @version $Revision: 1.1 $
*/
-public class SendResponseResponse extends HttpDriverResponse
+public class SendResponseResponse extends HTTPDriverResponse
{
public String toString()
{
Modified:
modules/test/trunk/test/src/resources/generic/portal-test-jar/org/jboss/portal/test/framework/container/http-runner-beans.xml
===================================================================
---
modules/test/trunk/test/src/resources/generic/portal-test-jar/org/jboss/portal/test/framework/container/http-runner-beans.xml 2007-08-22
16:07:20 UTC (rev 8032)
+++
modules/test/trunk/test/src/resources/generic/portal-test-jar/org/jboss/portal/test/framework/container/http-runner-beans.xml 2007-08-22
17:14:44 UTC (rev 8033)
@@ -37,7 +37,7 @@
<bean name="TestDriverServerLookup0"
class="org.jboss.portal.test.framework.impl.generic.server.GenericServiceLookup">
<constructor>
<parameter>socket://localhost:5400</parameter>
-
<parameter>org.jboss.portal.test.framework.driver.http.HttpTestDriver</parameter>
+
<parameter>org.jboss.portal.test.framework.driver.http.HTTPTestDriver</parameter>
</constructor>
</bean>
@@ -147,7 +147,7 @@
</bean>
-->
- <bean name="TestDriverClient"
class="org.jboss.portal.test.framework.driver.http.HttpTestDriverClient">
+ <bean name="TestDriverClient"
class="org.jboss.portal.test.framework.driver.http.HTTPTestDriverClient">
<constructor>
</constructor>
</bean>
Modified:
modules/test/trunk/test/src/resources/jboss/portal-test-jar/org/jboss/portal/test/framework/container/http-runner-beans.xml
===================================================================
---
modules/test/trunk/test/src/resources/jboss/portal-test-jar/org/jboss/portal/test/framework/container/http-runner-beans.xml 2007-08-22
16:07:20 UTC (rev 8032)
+++
modules/test/trunk/test/src/resources/jboss/portal-test-jar/org/jboss/portal/test/framework/container/http-runner-beans.xml 2007-08-22
17:14:44 UTC (rev 8033)
@@ -50,7 +50,7 @@
<constructor>
<parameter><inject bean="MBeanServerFactory0"
property="server"/></parameter>
<parameter><value>portal.test:service=TestDriverServer</value></parameter>
-
<parameter><value>org.jboss.portal.test.framework.driver.http.HttpTestDriver</value></parameter>
+
<parameter><value>org.jboss.portal.test.framework.driver.http.HTTPTestDriver</value></parameter>
</constructor>
</bean>
@@ -85,7 +85,7 @@
<constructor>
<parameter><inject bean="MBeanServerFactory0"
property="server"/></parameter>
<parameter><value>portal.test:service=TestDriverServer</value></parameter>
-
<parameter><value>org.jboss.portal.test.framework.driver.http.HttpTestDriver</value></parameter>
+
<parameter><value>org.jboss.portal.test.framework.driver.http.HTTPTestDriver</value></parameter>
</constructor>
</bean>
@@ -120,7 +120,7 @@
<constructor>
<parameter><inject bean="MBeanServerFactory0"
property="server"/></parameter>
<parameter><value>portal.test:service=TestDriverServer</value></parameter>
-
<parameter><value>org.jboss.portal.test.framework.driver.http.HttpTestDriver</value></parameter>
+
<parameter><value>org.jboss.portal.test.framework.driver.http.HTTPTestDriver</value></parameter>
</constructor>
</bean>
@@ -186,7 +186,7 @@
</constructor>
</bean>
- <bean name="TestDriverClient"
class="org.jboss.portal.test.framework.driver.http.HttpTestDriverClient">
+ <bean name="TestDriverClient"
class="org.jboss.portal.test.framework.driver.http.HTTPTestDriverClient">
<constructor>
</constructor>
</bean>
Modified:
modules/test/trunk/test/src/resources/jboss/portal-test-jar/org/jboss/portal/test/framework/container/web-runner-beans.xml
===================================================================
---
modules/test/trunk/test/src/resources/jboss/portal-test-jar/org/jboss/portal/test/framework/container/web-runner-beans.xml 2007-08-22
16:07:20 UTC (rev 8032)
+++
modules/test/trunk/test/src/resources/jboss/portal-test-jar/org/jboss/portal/test/framework/container/web-runner-beans.xml 2007-08-22
17:14:44 UTC (rev 8033)
@@ -50,7 +50,7 @@
<constructor>
<parameter><inject bean="MBeanServerFactory0"
property="server"/></parameter>
<parameter><value>portal.test:service=TestDriverServer</value></parameter>
-
<parameter><value>org.jboss.portal.test.framework.driver.http.HttpTestDriver</value></parameter>
+
<parameter><value>org.jboss.portal.test.framework.driver.http.HTTPTestDriver</value></parameter>
</constructor>
</bean>
@@ -85,7 +85,7 @@
<constructor>
<parameter><inject bean="MBeanServerFactory0"
property="server"/></parameter>
<parameter><value>portal.test:service=TestDriverServer</value></parameter>
-
<parameter><value>org.jboss.portal.test.framework.driver.http.HttpTestDriver</value></parameter>
+
<parameter><value>org.jboss.portal.test.framework.driver.http.HTTPTestDriver</value></parameter>
</constructor>
</bean>
@@ -120,7 +120,7 @@
<constructor>
<parameter><inject bean="MBeanServerFactory0"
property="server"/></parameter>
<parameter><value>portal.test:service=TestDriverServer</value></parameter>
-
<parameter><value>org.jboss.portal.test.framework.driver.http.HttpTestDriver</value></parameter>
+
<parameter><value>org.jboss.portal.test.framework.driver.http.HTTPTestDriver</value></parameter>
</constructor>
</bean>