org.openqa.selenium.remote.codec.AbstractHttpResponseCodec Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of selenium-remote-driver Show documentation
Show all versions of selenium-remote-driver 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.selenium.remote.codec;
import static java.net.HttpURLConnection.HTTP_INTERNAL_ERROR;
import static java.net.HttpURLConnection.HTTP_OK;
import static java.nio.charset.StandardCharsets.UTF_8;
import static org.openqa.selenium.json.Json.JSON_UTF_8;
import static org.openqa.selenium.remote.http.Contents.bytes;
import static org.openqa.selenium.remote.http.Contents.string;
import java.util.Objects;
import java.util.Optional;
import java.util.function.Supplier;
import org.openqa.selenium.json.Json;
import org.openqa.selenium.json.JsonException;
import org.openqa.selenium.remote.ErrorCodes;
import org.openqa.selenium.remote.Response;
import org.openqa.selenium.remote.ResponseCodec;
import org.openqa.selenium.remote.http.HttpHeader;
import org.openqa.selenium.remote.http.HttpResponse;
/**
* A response codec usable as a base for both the JSON and W3C wire protocols.
*
* @see W3C WebDriver spec
*/
public abstract class AbstractHttpResponseCodec implements ResponseCodec {
private final ErrorCodes errorCodes = new ErrorCodes();
private final Json json = new Json();
/**
* Encodes the given response as an HTTP response message. This method is guaranteed not to throw.
*
* @param response The response to encode.
* @return The encoded response.
*/
@Override
public HttpResponse encode(Supplier factory, Response response) {
int status = response.getStatus() == ErrorCodes.SUCCESS ? HTTP_OK : HTTP_INTERNAL_ERROR;
byte[] data = json.toJson(getValueToEncode(response)).getBytes(UTF_8);
HttpResponse httpResponse = factory.get();
httpResponse.setStatus(status);
httpResponse.setHeader(HttpHeader.CacheControl.getName(), "no-cache");
httpResponse.setHeader(HttpHeader.Expires.getName(), "Thu, 01 Jan 1970 00:00:00 GMT");
httpResponse.setHeader(HttpHeader.ContentLength.getName(), String.valueOf(data.length));
httpResponse.setHeader(HttpHeader.ContentType.getName(), JSON_UTF_8);
httpResponse.setContent(bytes(data));
return httpResponse;
}
protected abstract Object getValueToEncode(Response response);
@Override
public Response decode(HttpResponse encodedResponse) {
String contentType =
Objects.requireNonNullElse(encodedResponse.getHeader(HttpHeader.ContentType.getName()), "");
String content = string(encodedResponse).trim();
try {
return reconstructValue(json.toType(content, Response.class));
} catch (JsonException e) {
if (contentType.startsWith("application/json")) {
throw new IllegalArgumentException("Cannot decode response content: " + content, e);
}
} catch (ClassCastException e) {
if (contentType.startsWith("application/json")) {
if (content.isEmpty()) {
// The remote server has died, but has already set some headers.
// Normally this occurs when the final window of the firefox driver
// is closed on OS X. Return null, as the return value _should_ be
// being ignored. This is not an elegant solution.
return new Response();
}
throw new IllegalArgumentException("Cannot decode response content: " + content, e);
}
}
Response response = new Response();
int statusCode = encodedResponse.getStatus();
if (statusCode < 200 || statusCode > 299) {
// 4xx represents an unknown command or a bad request.
if (statusCode > 399 && statusCode < 500) {
response.setStatus(ErrorCodes.UNKNOWN_COMMAND);
} else {
response.setStatus(ErrorCodes.UNHANDLED_ERROR);
}
}
if (!content.isEmpty()) {
response.setValue(content);
}
if (response.getValue() instanceof String) {
// We normalise to \n because Java will translate this to \r\n
// if this is suitable on our platform, and if we have \r\n, java will
// turn this into \r\r\n, which would be Bad!
response.setValue(((String) response.getValue()).replace("\r\n", "\n"));
}
if (response.getStatus() != null && response.getState() == null) {
response.setState(errorCodes.toState(response.getStatus()));
} else if (response.getStatus() == null && response.getState() != null) {
response.setStatus(
errorCodes.toStatus(response.getState(), Optional.of(encodedResponse.getStatus())));
} else if (statusCode == 200) {
response.setStatus(ErrorCodes.SUCCESS);
response.setState(errorCodes.toState(ErrorCodes.SUCCESS));
}
if (response.getStatus() != null) {
response.setState(errorCodes.toState(response.getStatus()));
} else if (statusCode == 200) {
response.setState(errorCodes.toState(ErrorCodes.SUCCESS));
}
return response;
}
protected abstract Response reconstructValue(Response response);
}