org.openqa.grid.web.servlet.handler.LegacySeleniumRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of selenium-server Show documentation
Show all versions of selenium-server Show documentation
Selenium automates browsers. That's it! What you do with that power is entirely up to you.
// Licensed to the Software Freedom Conservancy (SFC) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The SFC licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
package org.openqa.grid.web.servlet.handler;
import org.openqa.grid.internal.ExternalSessionKey;
import org.openqa.grid.internal.Registry;
import org.openqa.grid.internal.TestSession;
import org.openqa.grid.internal.exception.NewSessionException;
import org.openqa.grid.web.utils.BrowserNameUtils;
import org.openqa.selenium.remote.CapabilityType;
import java.io.UnsupportedEncodingException;
import java.net.URLDecoder;
import java.util.HashMap;
import java.util.Map;
import javax.servlet.http.HttpServletRequest;
public class LegacySeleniumRequest extends SeleniumBasedRequest {
public LegacySeleniumRequest(HttpServletRequest httpServletRequest, Registry registry) {
super(httpServletRequest, registry);
}
@Override
public RequestType extractRequestType() {
if (getBody().contains("cmd=getNewBrowserSession")) {
return RequestType.START_SESSION;
} else if (getBody().contains("cmd=testComplete")) {
return RequestType.STOP_SESSION;
} else {
return RequestType.REGULAR;
}
}
@Override
public ExternalSessionKey extractSession() {
if (getRequestType() == RequestType.START_SESSION) {
throw new IllegalAccessError("Cannot call that method of a new session request.");
}
// for selenium 1, the url is ignored. The session has to be read from
// the request body.
String command = getBody();
String[] pieces = command.split("&");
ExternalSessionKey externalSessionKey;
for (String piece : pieces) {
externalSessionKey = ExternalSessionKey.fromSe1Request(piece);
if (externalSessionKey != null) {
return externalSessionKey;
}
}
return null;
}
@Override
public Map extractDesiredCapability() {
if (getRequestType() != RequestType.START_SESSION) {
throw new Error("the desired capability is only present in the new session requests.");
}
String[] pieces = getBody().split("&");
for (String piece : pieces) {
try {
piece = URLDecoder.decode(piece, "UTF-8");
} catch (UnsupportedEncodingException e) {}
if (piece.startsWith("1=")) {
String envt = piece.replace("1=", "");
Map cap = new HashMap<>();
// TODO freynaud : more splitting, like trying to guess the
// platform or version ?
cap.putAll(BrowserNameUtils.parseGrid2Environment(envt));
return cap;
}
}
throw new RuntimeException("Error");
}
@Override
public String getBody() {
String postBody = super.getBody();
return !(postBody == null || postBody.equals("")) ? postBody : getQueryString();
}
}