All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.openqa.selenium.grid.node.docker.DockerFlags Maven / Gradle / Ivy

Go to download

Selenium automates browsers. That's it! What you do with that power is entirely up to you.

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.grid.node.docker;

import static org.openqa.selenium.grid.config.StandardGridRoles.NODE_ROLE;

import com.beust.jcommander.Parameter;
import com.google.auto.service.AutoService;
import java.util.Collections;
import java.util.List;
import java.util.Set;
import org.openqa.selenium.grid.config.ConfigValue;
import org.openqa.selenium.grid.config.HasRoles;
import org.openqa.selenium.grid.config.NonSplittingSplitter;
import org.openqa.selenium.grid.config.Role;

@SuppressWarnings("FieldMayBeFinal")
@AutoService(HasRoles.class)
public class DockerFlags implements HasRoles {

  @Parameter(
      names = {"--docker-url"},
      description = "URL for connecting to the docker daemon")
  @ConfigValue(
      section = DockerOptions.DOCKER_SECTION,
      name = "url",
      example = "\"" + DockerOptions.DEFAULT_DOCKER_URL + "\"")
  private String dockerUrl;

  @Parameter(
      names = {"--docker-host"},
      description = "Host name where the docker daemon is running")
  @ConfigValue(section = DockerOptions.DOCKER_SECTION, name = "host", example = "\"localhost\"")
  private String dockerHost;

  @Parameter(
      names = {"--docker-port"},
      description = "Port where the docker daemon is running")
  @ConfigValue(section = DockerOptions.DOCKER_SECTION, name = "port", example = "2375")
  private Integer dockerPort;

  @Parameter(
      names = {"--docker", "-D"},
      description =
          "Docker configs which map image name to stereotype capabilities (example: "
              + "-D selenium/standalone-firefox:latest '{\"browserName\": \"firefox\"}')",
      arity = 2,
      variableArity = true,
      splitter = NonSplittingSplitter.class)
  @ConfigValue(
      section = DockerOptions.DOCKER_SECTION,
      name = "configs",
      example =
          "[\"selenium/standalone-firefox:latest\", \"{\\\"browserName\\\": \\\"firefox\\\"}\"]")
  private List images2Capabilities;

  @Parameter(
      names = {"--docker-host-config-keys"},
      description =
          "Specify which docker host configuration keys should be passed to browser containers."
              + " Keys name can be found in the Docker API documentation, or by running `docker"
              + " inspect` the node-docker container.")
  @ConfigValue(
      section = DockerOptions.DOCKER_SECTION,
      name = "host-config-keys",
      example = "[\"Dns\", \"DnsOptions\", \"DnsSearch\", \"ExtraHosts\", \"Binds\"]")
  private List hostConfigKeys;

  @Parameter(
      names = {"--docker-devices"},
      description =
          "Exposes devices to a container. Each device mapping declaration must have  at least the"
              + " path of the device in both host and container separated by a colon like in this"
              + " example: /device/path/in/host:/device/path/in/container",
      arity = 1,
      variableArity = true,
      splitter = NonSplittingSplitter.class)
  @ConfigValue(
      section = DockerOptions.DOCKER_SECTION,
      name = "devices",
      example = "[\"/dev/kvm:/dev/kvm\"]")
  private List devices;

  @Parameter(
      names = {"--docker-video-image"},
      description = "Docker image to be used when video recording is enabled")
  @ConfigValue(
      section = DockerOptions.DOCKER_SECTION,
      name = "video-image",
      example = DockerOptions.DEFAULT_VIDEO_IMAGE)
  private String videoImage = DockerOptions.DEFAULT_VIDEO_IMAGE;

  @Parameter(
      names = {"--docker-assets-path"},
      description = "Absolute path where assets will be stored")
  @ConfigValue(
      section = DockerOptions.DOCKER_SECTION,
      name = "assets-path",
      example = "\"" + DockerOptions.DEFAULT_ASSETS_PATH + "\"")
  private String assetsPath;

  @Override
  public Set getRoles() {
    return Collections.singleton(NODE_ROLE);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy