org.openqa.selenium.remote.server.NewSessionPipeline 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.
package org.openqa.selenium.remote.server;
import com.google.common.collect.ImmutableList;
import org.openqa.selenium.ImmutableCapabilities;
import org.openqa.selenium.SessionNotCreatedException;
import org.openqa.selenium.remote.NewSessionPayload;
import java.io.IOException;
import java.util.LinkedList;
import java.util.List;
import java.util.Objects;
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) throws IOException {
return payload.stream()
.map(caps -> {
for (Function mutator : mutators) {
caps = mutator.apply(caps);
}
return caps;
})
.map(caps -> factories.stream()
.map(factory -> factory.apply(payload.getDownstreamDialects(), caps))
.filter(Optional::isPresent)
.map(Optional::get)
.findFirst())
.filter(Optional::isPresent)
.map(Optional::get)
.findFirst()
.orElseGet(() ->
fallback.apply(payload.getDownstreamDialects(), new ImmutableCapabilities())
.orElseThrow(
() -> new SessionNotCreatedException("Unable to create session from " + payload))
);
}
public static class Builder {
private List factories = new LinkedList<>();
private SessionFactory fallback = (dialects, caps) -> Optional.empty();
private List> mutators = new LinkedList<>();
private Builder() {
// Private class
}
public Builder add(SessionFactory factory) {
factories.add(Objects.requireNonNull(factory, "Factory must not be null"));
return this;
}
public Builder fallback(SessionFactory factory) {
fallback = Objects.requireNonNull(factory, "Fallback must not be null");
return this;
}
public Builder addCapabilitiesMutator(
Function mutator) {
mutators.add(Objects.requireNonNull(mutator, "Mutator must not be null"));
return this;
}
public NewSessionPipeline create() {
return new NewSessionPipeline(ImmutableList.copyOf(factories), fallback, mutators);
}
}
}