org.openqa.selenium.remote.server.ProtocolConverter 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.selenium.remote.server;
import com.google.common.annotations.VisibleForTesting;
import com.google.common.collect.ImmutableSet;
import org.openqa.selenium.remote.Command;
import org.openqa.selenium.remote.CommandCodec;
import org.openqa.selenium.remote.Response;
import org.openqa.selenium.remote.ResponseCodec;
import org.openqa.selenium.remote.http.HttpClient;
import org.openqa.selenium.remote.http.HttpRequest;
import org.openqa.selenium.remote.http.HttpResponse;
import org.openqa.selenium.remote.internal.ApacheHttpClient;
import org.openqa.selenium.remote.internal.JsonToWebElementConverter;
import org.openqa.selenium.remote.internal.OkHttpClient;
import java.io.IOException;
import java.net.URL;
import java.util.Map;
class ProtocolConverter implements SessionCodec {
private final static HttpClient.Factory defaultClientFactory;
static {
String defaultFactory = System.getProperty("webdriver.http.factory", "okhttp");
switch (defaultFactory) {
case "okhttp":
defaultClientFactory = new OkHttpClient.Factory();
break;
case "apache":
default:
defaultClientFactory = new ApacheHttpClient.Factory();
break;
}
}
private final static ImmutableSet IGNORED_REQ_HEADERS = ImmutableSet.builder()
.add("connection")
.add("keep-alive")
.add("proxy-authorization")
.add("proxy-authenticate")
.add("proxy-connection")
.add("te")
.add("trailer")
.add("transfer-encoding")
.add("upgrade")
.build();
private final HttpClient client;
private final CommandCodec downstream;
private final CommandCodec upstream;
private final ResponseCodec downstreamResponse;
private final ResponseCodec upstreamResponse;
private final JsonToWebElementConverter converter;
public ProtocolConverter(
URL upstreamUrl,
CommandCodec downstream,
ResponseCodec downstreamResponse,
CommandCodec upstream,
ResponseCodec upstreamResponse) {
this.downstream = downstream;
this.upstream = upstream;
this.downstreamResponse = downstreamResponse;
this.upstreamResponse = upstreamResponse;
client = HttpClient.Factory.createDefault().createClient(upstreamUrl);
converter = new JsonToWebElementConverter(null);
}
@Override
public void handle(HttpRequest req, HttpResponse resp) throws IOException {
Command command = downstream.decode(req);
// Massage the webelements
@SuppressWarnings("unchecked")
Map parameters = (Map) converter.apply(command.getParameters());
command = new Command(
command.getSessionId(),
command.getName(),
parameters);
HttpRequest request = upstream.encode(command);
HttpResponse res = makeRequest(request);
Response decoded = upstreamResponse.decode(res);
HttpResponse response = downstreamResponse.encode(HttpResponse::new, decoded);
copyToServletResponse(response, resp);
}
@VisibleForTesting
HttpResponse makeRequest(HttpRequest request) throws IOException {
return client.execute(request);
}
private void copyToServletResponse(HttpResponse response, HttpResponse resp)
throws IOException {
resp.setStatus(response.getStatus());
for (String name : response.getHeaderNames()) {
if (IGNORED_REQ_HEADERS.contains(name.toLowerCase())) {
continue;
}
for (String value : response.getHeaders(name)) {
resp.addHeader(name, value);
}
}
resp.setContent(response.consumeContentStream());
}
}