How to use DockerException class of org.openqa.selenium.docker package

Best Selenium code snippet using org.openqa.selenium.docker.DockerException

Source:DockerOptions.java Github

copy

Full Screen

...20import com.google.common.collect.HashMultimap;21import com.google.common.collect.Multimap;22import org.openqa.selenium.Capabilities;23import org.openqa.selenium.docker.Docker;24import org.openqa.selenium.docker.DockerException;25import org.openqa.selenium.docker.Image;26import org.openqa.selenium.docker.ImageNamePredicate;27import org.openqa.selenium.grid.config.Config;28import org.openqa.selenium.grid.config.ConfigException;29import org.openqa.selenium.grid.node.local.LocalNode;30import org.openqa.selenium.json.Json;31import org.openqa.selenium.remote.http.HttpClient;32import org.openqa.selenium.remote.http.HttpRequest;33import org.openqa.selenium.remote.http.HttpResponse;34import java.io.IOException;35import java.io.UncheckedIOException;36import java.net.MalformedURLException;37import java.net.URL;38import java.util.Arrays;39import java.util.List;40import java.util.Objects;41import java.util.concurrent.CompletableFuture;42import java.util.concurrent.ExecutionException;43import java.util.logging.Logger;44public class DockerOptions {45 private static final Logger LOG = Logger.getLogger(DockerOptions.class.getName());46 private static final Json JSON = new Json();47 private final Config config;48 public DockerOptions(Config config) {49 this.config = Objects.requireNonNull(config);50 }51 private URL getDockerUrl() {52 try {53 String raw = config.get("docker", "url")54 .orElseThrow(() -> new ConfigException("No docker url configured"));55 return new URL(raw);56 } catch (MalformedURLException e) {57 throw new UncheckedIOException(e);58 }59 }60 private boolean isEnabled(HttpClient.Factory clientFactory) {61 if (!config.getAll("docker", "configs").isPresent()) {62 return false;63 }64 // Is the daemon up and running?65 URL url = getDockerUrl();66 HttpClient client = clientFactory.createClient(url);67 try {68 HttpResponse response = client.execute(new HttpRequest(GET, "/_ping"));69 if (response.getStatus() != 200) {70 LOG.warning(String.format("Docker config enabled, but daemon unreachable: %s", url));71 return false;72 }73 return true;74 } catch (IOException e) {75 LOG.log(WARNING, "Unable to ping docker daemon. Docker disabled: " + e.getMessage());76 return false;77 }78 }79 public void configure(HttpClient.Factory clientFactory, LocalNode.Builder node)80 throws IOException {81 if (!isEnabled(clientFactory)) {82 return;83 }84 List<String> allConfigs = config.getAll("docker", "configs")85 .orElseThrow(() -> new DockerException("Unable to find docker configs"));86 Multimap<String, Capabilities> kinds = HashMultimap.create();87 for (int i = 0; i < allConfigs.size(); i++) {88 String imageName = allConfigs.get(i);89 i++;90 if (i == allConfigs.size()) {91 throw new DockerException("Unable to find JSON config");92 }93 Capabilities stereotype = JSON.toType(allConfigs.get(i), Capabilities.class);94 kinds.put(imageName, stereotype);95 }96 HttpClient client = clientFactory.createClient(new URL("http://localhost:2375"));97 Docker docker = new Docker(client);98 loadImages(docker, kinds.keySet().toArray(new String[0]));99 int maxContainerCount = Runtime.getRuntime().availableProcessors();100 kinds.forEach((name, caps) -> {101 Image image = docker.findImage(new ImageNamePredicate(name))102 .orElseThrow(() -> new DockerException(103 String.format("Cannot find image matching: %s", name)));104 for (int i = 0; i < maxContainerCount; i++) {105 node.add(caps, new DockerSessionFactory(clientFactory, docker, image, caps));106 }107 LOG.info(String.format(108 "Mapping %s to docker image %s %d times",109 caps,110 name,111 maxContainerCount));112 });113 }114 private void loadImages(Docker docker, String... imageNames) {115 CompletableFuture<Void> cd = CompletableFuture.allOf(116 Arrays.stream(imageNames)...

Full Screen

Full Screen

Source:V141Docker.java Github

copy

Full Screen

...19import org.openqa.selenium.docker.ContainerConfig;20import org.openqa.selenium.docker.ContainerId;21import org.openqa.selenium.docker.ContainerInfo;22import org.openqa.selenium.docker.ContainerLogs;23import org.openqa.selenium.docker.DockerException;24import org.openqa.selenium.docker.DockerProtocol;25import org.openqa.selenium.docker.Image;26import org.openqa.selenium.docker.internal.Reference;27import org.openqa.selenium.internal.Require;28import org.openqa.selenium.remote.http.HttpHandler;29import java.time.Duration;30import java.util.Set;31import java.util.logging.Logger;32public class V141Docker implements DockerProtocol {33 static final String DOCKER_API_VERSION = "1.41";34 private static final Logger LOG = Logger.getLogger(V141Docker.class.getName());35 private final org.openqa.selenium.docker.v1_41.ListImages listImages;36 private final PullImage pullImage;37 private final org.openqa.selenium.docker.v1_41.CreateContainer createContainer;38 private final StartContainer startContainer;39 private final StopContainer stopContainer;40 private final IsContainerPresent isContainerPresent;41 private final org.openqa.selenium.docker.v1_41.InspectContainer inspectContainer;42 private final org.openqa.selenium.docker.v1_41.GetContainerLogs containerLogs;43 public V141Docker(HttpHandler client) {44 Require.nonNull("HTTP client", client);45 listImages = new org.openqa.selenium.docker.v1_41.ListImages(client);46 pullImage = new PullImage(client);47 createContainer = new org.openqa.selenium.docker.v1_41.CreateContainer(this, client);48 startContainer = new StartContainer(client);49 stopContainer = new StopContainer(client);50 isContainerPresent = new IsContainerPresent(client);51 inspectContainer = new org.openqa.selenium.docker.v1_41.InspectContainer(client);52 containerLogs = new org.openqa.selenium.docker.v1_41.GetContainerLogs(client);53 }54 @Override55 public String version() {56 return DOCKER_API_VERSION;57 }58 @Override59 public Image getImage(String imageName) throws DockerException {60 Require.nonNull("Image name", imageName);61 Reference ref = Reference.parse(imageName);62 LOG.info("Listing local images: " + ref);63 Set<Image> allImages = listImages.apply(ref);64 if (!allImages.isEmpty()) {65 return allImages.iterator().next();66 }67 LOG.info("Pulling " + ref);68 pullImage.apply(ref);69 LOG.info("Pull completed. Listing local images again: " + ref);70 allImages = listImages.apply(ref);71 if (!allImages.isEmpty()) {72 return allImages.iterator().next();73 }74 throw new DockerException("Pull appears to have succeeded, but image not present locally: " + imageName);75 }76 @Override77 public Container create(ContainerConfig config) {78 Require.nonNull("Container config", config);79 LOG.fine("Creating container: " + config);80 return createContainer.apply(config);81 }82 @Override83 public boolean isContainerPresent(ContainerId id) throws DockerException {84 Require.nonNull("Container id", id);85 LOG.info("Checking if container is present: " + id);86 return isContainerPresent.apply(id);87 }88 @Override89 public void startContainer(ContainerId id) throws DockerException {90 Require.nonNull("Container id", id);91 LOG.fine("Starting container: " + id);92 startContainer.apply(id);93 }94 @Override95 public void stopContainer(ContainerId id, Duration timeout) throws DockerException {96 Require.nonNull("Container id", id);97 Require.nonNull("Timeout", timeout);98 LOG.fine("Stopping container: " + id);99 stopContainer.apply(id, timeout);100 }101 @Override102 public ContainerInfo inspectContainer(ContainerId id) throws DockerException {103 Require.nonNull("Container id", id);104 LOG.fine("Inspecting container: " + id);105 return inspectContainer.apply(id);106 }107 @Override108 public ContainerLogs getContainerLogs(ContainerId id) throws DockerException {109 Require.nonNull("Container id", id);110 LOG.info("Getting container logs: " + id);111 return containerLogs.apply(id);112 }113}...

Full Screen

Full Screen

Source:V140Docker.java Github

copy

Full Screen

...17package org.openqa.selenium.docker.v1_40;18import org.openqa.selenium.docker.Container;19import org.openqa.selenium.docker.ContainerId;20import org.openqa.selenium.docker.ContainerInfo;21import org.openqa.selenium.docker.DockerException;22import org.openqa.selenium.docker.DockerProtocol;23import org.openqa.selenium.docker.Image;24import org.openqa.selenium.docker.internal.Reference;25import org.openqa.selenium.internal.Require;26import org.openqa.selenium.remote.http.HttpHandler;27import java.time.Duration;28import java.util.Set;29import java.util.logging.Logger;30public class V140Docker implements DockerProtocol {31 private static final Logger LOG = Logger.getLogger(V140Docker.class.getName());32 private final ListImages listImages;33 private final PullImage pullImage;34 private final CreateContainer createContainer;35 private final StartContainer startContainer;36 private final StopContainer stopContainer;37 private final DeleteContainer deleteContainer;38 private final ContainerExists containerExists;39 public V140Docker(HttpHandler client) {40 Require.nonNull("HTTP client", client);41 listImages = new ListImages(client);42 pullImage = new PullImage(client);43 createContainer = new CreateContainer(this, client);44 startContainer = new StartContainer(client);45 stopContainer = new StopContainer(client);46 deleteContainer = new DeleteContainer(client);47 containerExists = new ContainerExists(client);48 }49 @Override50 public String version() {51 return "1.40";52 }53 @Override54 public Image getImage(String imageName) throws DockerException {55 Require.nonNull("Image name", imageName);56 Reference ref = Reference.parse(imageName);57 LOG.info("Listing local images: " + ref);58 Set<Image> allImages = listImages.apply(ref);59 if (!allImages.isEmpty()) {60 return allImages.iterator().next();61 }62 LOG.info("Pulling " + ref);63 pullImage.apply(ref);64 LOG.info("Pull completed. Listing local images again: " + ref);65 allImages = listImages.apply(ref);66 if (!allImages.isEmpty()) {67 return allImages.iterator().next();68 }69 throw new DockerException("Pull appears to have succeeded, but image not present locally: " + imageName);70 }71 @Override72 public Container create(ContainerInfo info) {73 Require.nonNull("Container info", info);74 LOG.info("Creating container: " + info);75 return createContainer.apply(info);76 }77 @Override78 public void startContainer(ContainerId id) throws DockerException {79 Require.nonNull("Container id", id);80 LOG.info("Starting container: " + id);81 startContainer.apply(id);82 }83 @Override84 public boolean exists(ContainerId id) {85 Require.nonNull("Container id", id);86 LOG.fine(String.format("Checking whether %s is running", id));87 return containerExists.apply(id);88 }89 @Override90 public void stopContainer(ContainerId id, Duration timeout) throws DockerException {91 Require.nonNull("Container id", id);92 Require.nonNull("Timeout", timeout);93 LOG.info("Stopping container: " + id);94 stopContainer.apply(id, timeout);95 }96 @Override97 public void deleteContainer(ContainerId id) throws DockerException {98 Require.nonNull("Container id", id);99 LOG.info("Deleting container: " + id);100 deleteContainer.apply(id);101 }102}...

Full Screen

Full Screen

Source:CreateContainer.java Github

copy

Full Screen

...17package org.openqa.selenium.docker.v1_41;18import org.openqa.selenium.docker.Container;19import org.openqa.selenium.docker.ContainerConfig;20import org.openqa.selenium.docker.ContainerId;21import org.openqa.selenium.docker.DockerException;22import org.openqa.selenium.docker.DockerProtocol;23import org.openqa.selenium.internal.Require;24import org.openqa.selenium.json.Json;25import org.openqa.selenium.json.JsonException;26import org.openqa.selenium.remote.http.Contents;27import org.openqa.selenium.remote.http.HttpHandler;28import org.openqa.selenium.remote.http.HttpRequest;29import org.openqa.selenium.remote.http.HttpResponse;30import java.util.Collection;31import java.util.Map;32import java.util.logging.Logger;33import java.util.stream.Collectors;34import static org.openqa.selenium.docker.v1_41.V141Docker.DOCKER_API_VERSION;35import static org.openqa.selenium.json.Json.JSON_UTF_8;36import static org.openqa.selenium.json.Json.MAP_TYPE;37import static org.openqa.selenium.remote.http.Contents.asJson;38import static org.openqa.selenium.remote.http.HttpMethod.POST;39class CreateContainer {40 private static final Json JSON = new Json();41 private static final Logger LOG = Logger.getLogger(CreateContainer.class.getName());42 private final DockerProtocol protocol;43 private final HttpHandler client;44 public CreateContainer(DockerProtocol protocol, HttpHandler client) {45 this.protocol = Require.nonNull("Protocol", protocol);46 this.client = Require.nonNull("HTTP client", client);47 }48 public Container apply(ContainerConfig info) {49 HttpResponse res = DockerMessages.throwIfNecessary(50 client.execute(51 new HttpRequest(POST, String.format("/v%s/containers/create", DOCKER_API_VERSION))52 .addHeader("Content-Type", JSON_UTF_8)53 .setContent(asJson(info))),54 "Unable to create container: ",55 info);56 try {57 Map<String, Object> rawContainer = JSON.toType(Contents.string(res), MAP_TYPE);58 if (!(rawContainer.get("Id") instanceof String)) {59 throw new DockerException("Unable to read container id: " + rawContainer);60 }61 ContainerId id = new ContainerId((String) rawContainer.get("Id"));62 if (rawContainer.get("Warnings") instanceof Collection) {63 Collection<?> warnings = (Collection<?>) rawContainer.get("Warnings");64 if (warnings.size() > 0) {65 String allWarnings = warnings.stream()66 .map(String::valueOf)67 .collect(Collectors.joining("\n", " * ", ""));68 LOG.warning(69 String.format("Warnings while creating %s from %s: %s", id, info, allWarnings));70 }71 }72 return new Container(protocol, id);73 } catch (JsonException | NullPointerException e) {74 throw new DockerException("Unable to create container from " + info);75 }76 }77}...

Full Screen

Full Screen

DockerException

Using AI Code Generation

copy

Full Screen

1import org.openqa.selenium.docker.DockerException;2import org.openqa.selenium.docker.DockerOptions;3import org.openqa.selenium.docker.DockerService;4import org.openqa.selenium.docker.DockerServiceBuilder;5import org.openqa.selenium.docker.DockerServiceOptions;6import org.openqa.selenium.docker.DockerServiceOptionsBuilder;7import org.openqa.selenium.docker.DockerServiceBuilder;8import org.openqa.selenium.docker.DockerServiceOptionsBuilder;9import org.openqa.selenium.docker.DockerService;10import org.openqa.selenium.docker.DockerOptions;11import org.openqa.selenium.docker.DockerServiceOptions;12import org.openqa.selenium.docker.DockerServiceOptionsBuilder;13import org.openqa.selenium.docker.DockerException;14import org.openqa.selenium.docker.DockerServiceBuilder;15import org.openqa.selenium.docker.DockerService;16import org.openqa.selenium.docker.DockerServiceOptions;17import org.openqa.selenium.docker.DockerOptions;18import org.openqa.selenium.docker.DockerServiceOptionsBuilder;19import org.openqa.selenium.docker.DockerException;20import org.openqa.selenium.docker.DockerServiceBuilder;21import org.openqa.selenium.docker.DockerService

Full Screen

Full Screen

DockerException

Using AI Code Generation

copy

Full Screen

1 ### DockerException(String message)2 ### DockerException(Throwable cause)3 ### DockerException(String message, Throwable cause)4 ### public String getMessage()5 ### public String getLocalizedMessage()6 ### public Throwable getCause()7 ### public String toString()8 ### public void printStackTrace()9 ### public void printStackTrace(PrintStream s)10 ### public void printStackTrace(PrintWriter s)11 ### public Throwable initCause(Throwable cause)12 ### DockerImage(String imageId)13 ### public String getImageId()14 ### public String getImageName()15 ### public String getImageTag()16 ### public String getImageFullName()17 ### public String getRepository()18 ### public String getRegistry()19 ### public String getPlatform()

Full Screen

Full Screen

Selenium 4 Tutorial:

LambdaTest’s Selenium 4 tutorial is covering every aspects of Selenium 4 testing with examples and best practices. Here you will learn basics, such as how to upgrade from Selenium 3 to Selenium 4, to some advanced concepts, such as Relative locators and Selenium Grid 4 for Distributed testing. Also will learn new features of Selenium 4, such as capturing screenshots of specific elements, opening a new tab or window on the browser, and new protocol adoptions.

Chapters:

  1. Upgrading From Selenium 3 To Selenium 4?: In this chapter, learn in detail how to update Selenium 3 to Selenium 4 for Java binding. Also, learn how to upgrade while using different build tools such as Maven or Gradle and get comprehensive guidance for upgrading Selenium.

  2. What’s New In Selenium 4 & What’s Being Deprecated? : Get all information about new implementations in Selenium 4, such as W3S protocol adaption, Optimized Selenium Grid, and Enhanced Selenium IDE. Also, learn what is deprecated for Selenium 4, such as DesiredCapabilites and FindsBy methods, etc.

  3. Selenium 4 With Python: Selenium supports all major languages, such as Python, C#, Ruby, and JavaScript. In this chapter, learn how to install Selenium 4 for Python and the features of Python in Selenium 4, such as Relative locators, Browser manipulation, and Chrom DevTool protocol.

  4. Selenium 4 Is Now W3C Compliant: JSON Wireframe protocol is retiring from Selenium 4, and they are adopting W3C protocol to learn in detail about the advantages and impact of these changes.

  5. How To Use Selenium 4 Relative Locator? : Selenium 4 came with new features such as Relative Locators that allow constructing locators with reference and easily located constructors nearby. Get to know its different use cases with examples.

  6. Selenium Grid 4 Tutorial For Distributed Testing: Selenium Grid 4 allows you to perform tests over different browsers, OS, and device combinations. It also enables parallel execution browser testing, reads up on various features of Selenium Grid 4 and how to download it, and runs a test on Selenium Grid 4 with best practices.

  7. Selenium Video Tutorials: Binge on video tutorials on Selenium by industry experts to get step-by-step direction from automating basic to complex test scenarios with Selenium.

Selenium 101 certifications:

LambdaTest also provides certification for Selenium testing to accelerate your career in Selenium automation testing.

Run Selenium automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Test Your Web Or Mobile Apps On 3000+ Browsers

Signup for free

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful