blob: 59c709d381bfc15a7af37edeaf09cbd93edef59f [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 java.io.*;
import java.net.*;
import com.sun.ejte.ccl.reporter.*;
/*
* Unit test for customizing the name of the session tracking cookie
* via web.xml and sun-web.xml, and making sure that the name declared in
* sun-web.xml takes precedence over that declared in web.xml, etc.
*/
public class WebTest {
private static String TEST_NAME =
"session-cookie-custom-name-web-xml-sun-web-xml-precedence";
private static final String MYJSESSIONID = "MYJSESSIONID";
private static final String EXPECTED_RESPONSE = "HTTP/1.1 200 OK";
private static SimpleReporterAdapter stat
= new SimpleReporterAdapter("appserv-tests");
private String host;
private String port;
private String contextRoot;
public WebTest(String[] args) {
host = args[0];
port = args[1];
contextRoot = args[2];
}
public static void main(String[] args) {
stat.addDescription("Unit test for customizing name of session " +
"tracking cookie");
WebTest webTest = new WebTest(args);
try {
webTest.secondRun(webTest.firstRun());
stat.addStatus(TEST_NAME, stat.PASS);
} catch( Exception ex) {
ex.printStackTrace();
stat.addStatus(TEST_NAME, stat.FAIL);
}
stat.printSummary();
}
public String firstRun() throws Exception {
Socket sock = null;
InputStream is = null;
BufferedReader br = null;
OutputStream os = null;
String line = null;
try {
sock = new Socket(host, new Integer(port).intValue());
os = sock.getOutputStream();
String get = "GET " + contextRoot + "/CreateSession" + " HTTP/1.0\n";
System.out.println(get);
os.write(get.getBytes());
os.write("\r\n".getBytes());
// Get the MYJSESSIONID from the response
is = sock.getInputStream();
br = new BufferedReader(new InputStreamReader(is));
while ((line = br.readLine()) != null) {
System.out.println(line);
if (line.startsWith("Set-Cookie:")
|| line.startsWith("Set-cookie:")) {
break;
}
}
} finally {
try {
if (sock != null) {
sock.close();
}
} catch(IOException ioe) {
// ignore
}
try {
if (is != null) {
is.close();
}
} catch(IOException ioe) {
// ignore
}
try {
if (br != null) {
br.close();
}
} catch(IOException ioe) {
// ignore
}
try {
if (os != null) {
os.close();
}
} catch(IOException ioe) {
// ignore
}
}
if (line == null) {
throw new Exception("Missing Set-Cookie response header");
}
if (!line.contains("HttpOnly")) {
throw new Exception("Missing HttpOnly in cookie header");
}
System.out.println();
return getSessionCookie(line, MYJSESSIONID);
}
public void secondRun(String sessionCookie) throws Exception {
Socket sock = null;
OutputStream os = null;
InputStream is = null;
BufferedReader br = null;
boolean found = false;
try {
sock = new Socket(host, new Integer(port).intValue());
os = sock.getOutputStream();
String get = "GET " + contextRoot + "/ResumeSession" + " HTTP/1.0\n";
System.out.print(get);
os.write(get.getBytes());
String cookie = "Cookie: " + sessionCookie + "\n";
System.out.println(cookie);
os.write(cookie.getBytes());
os.write("\r\n".getBytes());
is = sock.getInputStream();
br = new BufferedReader(new InputStreamReader(is));
String line = null;
while ((line = br.readLine()) != null) {
System.out.println(line);
if (line.contains(EXPECTED_RESPONSE)) {
found = true;
break;
}
}
} finally {
try {
if (sock != null) {
sock.close();
}
} catch(IOException ioe) {
// ignore
}
try {
if (os != null) {
os.close();
}
} catch(IOException ioe) {
// ignore
}
try {
if (is != null) {
is.close();
}
} catch(IOException ioe) {
// ignore
}
try {
if (br != null) {
br.close();
}
} catch(IOException ioe) {
// ignore
}
}
if (found) {
stat.addStatus(TEST_NAME, stat.PASS);
} else {
throw new Exception("Wrong response. Expected response: "
+ EXPECTED_RESPONSE + " not found");
}
}
private String getSessionCookie(String header, String cookieName) {
String ret = null;
int index = header.indexOf(cookieName);
if (index != -1) {
int endIndex = header.indexOf(';', index);
if (endIndex != -1) {
ret = header.substring(index, endIndex);
} else {
ret = header.substring(index);
}
ret = ret.trim();
}
return ret;
}
}