1
0
mirror of https://github.com/octoleo/plantuml-server.git synced 2024-12-22 08:48:54 +00:00

[TASK] No more used method getServerUrl suppressed

This commit is contained in:
Maxime Sinclair 2013-07-10 17:28:09 +02:00
parent ce168633ad
commit e41286993f

View File

@ -7,32 +7,20 @@ import com.meterware.httpunit.*;
*/
public class TestUtils {
/**
* Return the URL of the PlantUMLServlet, deployed on the testing web server in the following form
* http://server/contextroot/ Note the trailing slash (/)
*
* @return the URL
*/
public static String getServerUrl() {
return "http://localhost/plantuml/";
}
/**
* Try getting a response for the given Conversation and Request show an error message if a 404 error appears
*
* @param conversation
* - the conversation to use
* @param conversation The conversation to use
* @param request
* @return the response
* @throws an
* Exception if getting the response fails
* @return The response
* @throws nfe If getting the response fails
*/
public static WebResponse tryGetResponse(WebConversation conversation, WebRequest request) throws Exception {
WebResponse response = null;
try {
response = conversation.getResponse(request);
} catch (HttpNotFoundException nfe) {
System.err.println("The URL '" + request.getURL() + "' is not active any more");
System.err.println("The URL '" + request.getURL() + "' is no more active");
throw nfe;
}
return response;