org.openqa.selenium.remote.server.NewSessionPipeline Maven / Gradle / Ivy
The newest version!
// 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.collect.ImmutableList;
import com.google.common.collect.ImmutableMap;
import org.openqa.selenium.Capabilities;
import org.openqa.selenium.ImmutableCapabilities;
import org.openqa.selenium.SessionNotCreatedException;
import org.openqa.selenium.grid.data.CreateSessionRequest;
import org.openqa.selenium.grid.session.ActiveSession;
import org.openqa.selenium.grid.session.SessionFactory;
import org.openqa.selenium.internal.Require;
import org.openqa.selenium.remote.NewSessionPayload;
import java.util.LinkedList;
import java.util.List;
import java.util.Optional;
import java.util.function.Function;
public class NewSessionPipeline {
private final List factories;
private final SessionFactory fallback;
private final List> mutators;
private NewSessionPipeline(
List factories,
SessionFactory fallback,
List> mutators) {
this.factories = factories;
this.fallback = fallback;
this.mutators = mutators;
}
public static Builder builder() {
return new Builder();
}
public ActiveSession createNewSession(NewSessionPayload payload) {
return payload.stream()
.map(caps -> {
for (Function mutator : mutators) {
caps = mutator.apply(caps);
}
return caps;
})
.map(caps -> factories.stream()
.filter(factory -> factory.test(caps))
.map(factory -> factory.apply(
new CreateSessionRequest(
payload.getDownstreamDialects(),
caps,
ImmutableMap.of())))
.filter(Optional::isPresent)
.map(Optional::get)
.findFirst())
.filter(Optional::isPresent)
.map(Optional::get)
.findFirst()
.orElseGet(
() -> fallback.apply(
new CreateSessionRequest(
payload.getDownstreamDialects(),
new ImmutableCapabilities(),
ImmutableMap.of()))
.orElseThrow(
() -> new SessionNotCreatedException(
"Unable to create session from " + payload))
);
}
public static class Builder {
private List factories = new LinkedList<>();
private SessionFactory fallback = new SessionFactory() {
@Override
public boolean test(Capabilities capabilities) {
return false;
}
@Override
public Optional apply(CreateSessionRequest sessionRequest) {
return Optional.empty();
}
};
private List> mutators = new LinkedList<>();
private Builder() {
// Private class
}
public Builder add(SessionFactory factory) {
factories.add(Require.nonNull("Factory", factory));
return this;
}
public Builder fallback(SessionFactory factory) {
fallback = Require.nonNull("Fallback", factory);
return this;
}
public Builder addCapabilitiesMutator(
Function mutator) {
mutators.add(Require.nonNull("Mutator", mutator));
return this;
}
public NewSessionPipeline create() {
return new NewSessionPipeline(ImmutableList.copyOf(factories), fallback, mutators);
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy