Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.ua.tests/help/org/eclipse/ua/tests/help/webapp/service/ServicesTestUtils.java')
-rw-r--r--org.eclipse.ua.tests/help/org/eclipse/ua/tests/help/webapp/service/ServicesTestUtils.java41
1 files changed, 41 insertions, 0 deletions
diff --git a/org.eclipse.ua.tests/help/org/eclipse/ua/tests/help/webapp/service/ServicesTestUtils.java b/org.eclipse.ua.tests/help/org/eclipse/ua/tests/help/webapp/service/ServicesTestUtils.java
new file mode 100644
index 000000000..096de8159
--- /dev/null
+++ b/org.eclipse.ua.tests/help/org/eclipse/ua/tests/help/webapp/service/ServicesTestUtils.java
@@ -0,0 +1,41 @@
+/*******************************************************************************
+ * Copyright (c) 2011 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.ua.tests.help.webapp.service;
+
+import java.io.IOException;
+import java.net.URL;
+
+import org.eclipse.help.internal.server.WebappManager;
+import org.eclipse.help.internal.webapp.utils.Utils;
+import org.eclipse.ua.tests.help.remote.RemoteTestUtils;
+
+public class ServicesTestUtils extends RemoteTestUtils {
+
+ public static String getRemoteContent(String plugin, String path,
+ String locale) throws Exception {
+ int port = WebappManager.getPort();
+ URL url = new URL("http", "localhost", port, "/help/vs/service/rtopic/" + plugin
+ + path + "?lang=" + locale);
+ return readFromURL(url);
+ }
+
+ public static String getLocalContent(String plugin, String path)
+ throws IOException {
+ String localContent = RemoteTestUtils.getLocalContent(plugin, path);
+ try {
+ localContent = Utils.updateResponse(localContent);
+ } catch (Exception e) {
+ e.printStackTrace();
+ }
+ return localContent;
+ }
+
+}

Back to the top