summaryrefslogtreecommitdiffhomepage
path: root/test/packetimpact/testbench/BUILD
blob: d19ec07d487f3fc2587176c5d01ab3a0f5c4d88e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
load("//tools:defs.bzl", "go_library", "go_test")

package(
    default_visibility = ["//test/packetimpact:__subpackages__"],
    licenses = ["notice"],
)

go_library(
    name = "testbench",
    srcs = [
        "connections.go",
        "dut.go",
        "dut_client.go",
        "layers.go",
        "rawsockets.go",
        "testbench.go",
    ],
    deps = [
        "//pkg/tcpip",
        "//pkg/tcpip/buffer",
        "//pkg/tcpip/header",
        "//pkg/tcpip/seqnum",
        "//pkg/usermem",
        "//test/packetimpact/netdevs",
        "//test/packetimpact/proto:posix_server_go_proto",
        "@com_github_google_go-cmp//cmp:go_default_library",
        "@com_github_google_go-cmp//cmp/cmpopts:go_default_library",
        "@com_github_mohae_deepcopy//:go_default_library",
        "@org_golang_google_grpc//:go_default_library",
        "@org_golang_google_grpc//keepalive:go_default_library",
        "@org_golang_x_sys//unix:go_default_library",
        "@org_uber_go_multierr//:go_default_library",
    ],
)

go_test(
    name = "testbench_test",
    size = "small",
    srcs = ["layers_test.go"],
    library = ":testbench",
    deps = [
        "//pkg/tcpip",
        "//pkg/tcpip/header",
        "@com_github_mohae_deepcopy//:go_default_library",
    ],
)