"Fossies" - the Fresh Open Source Software Archive

Member "selenium-selenium-4.8.1/java/test/org/openqa/selenium/remote/internal/BUILD.bazel" (17 Feb 2023, 2172 Bytes) of package /linux/www/selenium-selenium-4.8.1.tar.gz:


As a special service "Fossies" has tried to format the requested text file into HTML format (style: standard) with prefixed line numbers. Alternatively you can here view or download the uninterpreted source code file. See also the last Fossies "Diffs" side-by-side code changes report for "BUILD.bazel": 4.4.0_vs_4.5.0.

    1 load("@rules_jvm_external//:defs.bzl", "artifact")
    2 load("//java:defs.bzl", "JUNIT5_DEPS", "java_library", "java_test_suite")
    3 
    4 java_library(
    5     name = "test-lib",
    6     testonly = True,
    7     srcs = [
    8         "DomainSocketsTestBase.java",
    9         "HttpClientTestBase.java",
   10         "WebSocketTestBase.java",
   11     ],
   12     visibility = [
   13         "//java/test/org/openqa/selenium:__subpackages__",
   14     ],
   15     deps = [
   16         "//java/src/org/openqa/selenium:core",
   17         "//java/src/org/openqa/selenium/json",
   18         "//java/src/org/openqa/selenium/grid/server",
   19         "//java/src/org/openqa/selenium/netty/server",
   20         "//java/src/org/openqa/selenium/remote",
   21         "//java/src/org/openqa/selenium/remote/http",
   22         "//java/test/org/openqa/selenium/environment",
   23         "//java/test/org/openqa/selenium/testing:test-base",
   24         artifact("com.google.guava:guava"),
   25         artifact("org.junit.jupiter:junit-jupiter-api"),
   26         artifact("org.assertj:assertj-core"),
   27         artifact("io.netty:netty-buffer"),
   28         artifact("io.netty:netty-codec-http"),
   29         artifact("io.netty:netty-handler"),
   30         artifact("io.netty:netty-transport"),
   31         artifact("io.netty:netty-transport-classes-epoll"),
   32         artifact("io.netty:netty-transport-classes-kqueue"),
   33         artifact("io.netty:netty-transport-native-epoll"),
   34         artifact("io.netty:netty-transport-native-epoll-linux-x86_64"),
   35         artifact("io.netty:netty-transport-native-kqueue"),
   36         artifact("io.netty:netty-transport-native-kqueue-osx-x86_64"),
   37         artifact("io.netty:netty-transport-native-unix-common"),
   38     ] + JUNIT5_DEPS,
   39 )
   40 
   41 java_test_suite(
   42     name = "SmallTests",
   43     size = "small",
   44     srcs = glob(["*Test.java"]),
   45     tags = [
   46         "no-sandbox",
   47     ],
   48     deps = [
   49         ":test-lib",
   50         "//java/src/org/openqa/selenium:core",
   51         "//java/src/org/openqa/selenium/remote",
   52         "//java/src/org/openqa/selenium/remote/http",
   53         "//java/test/org/openqa/selenium:helpers",
   54         artifact("org.assertj:assertj-core"),
   55         artifact("com.google.guava:guava"),
   56         artifact("org.junit.jupiter:junit-jupiter-api"),
   57     ] + JUNIT5_DEPS,
   58 )