blob: e0be9aab66b17612ad1eba6f6aa1c9a349fbd574 [file] [log] [blame]
/*
* Copyright (c) 1997, 2018 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0, which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* This Source Code may also be made available under the following Secondary
* Licenses when the conditions for such availability set forth in the
* Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
* version 2 with the GNU Classpath Exception, which is available at
* https://www.gnu.org/software/classpath/license.html.
*
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
*/
import org.testng.annotations.Configuration;
import org.testng.annotations.ExpectedExceptions;
import org.testng.annotations.Test;
import org.testng.annotations.Parameters;
import org.testng.Assert;
import java.io.*;
import java.net.*;
public class WebTestNG {
private static final String TEST_NAME =
"jsp-resource-injection-tag-handler";
private static final String EXPECTED_RESPONSE =
"ds1-login-timeout=0,ds2-login-timeout=0,ds3-login-timeout=0,"
+ "ds4-login-timeout=0,ds5-login-timeout=0,ds6-login-timeout=0";
static String result = "";
@Parameters({ "host", "port", "contextroot" })
@Test(groups ={ "even"} ) // test method
public void webtest(String host, String port, String contextroot) throws Exception{
String testurl = "http://" + host + ":" + port + contextroot + "/jsp/test.jsp";
URL url = new URL(testurl);
echo("Connecting to: " + url.toString());
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
conn.connect();
int responseCode = conn.getResponseCode();
Assert.assertEquals(responseCode, 200);
InputStream is = conn.getInputStream();
BufferedReader input = new BufferedReader(new InputStreamReader(is));
String line = null;
String lastLine = null;
while ((line = input.readLine()) != null) {
lastLine = line;
}
Assert.assertEquals(lastLine, EXPECTED_RESPONSE);
}
public static void echo(String msg) {
System.out.println(msg);
}
}