mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 12:57:18 +00:00
112 lines
3.3 KiB
Python
112 lines
3.3 KiB
Python
# gazelle:ignore
|
|
package(default_testonly = True)
|
|
|
|
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
|
|
load("@io_bazel_rules_go//proto:def.bzl", "go_proto_library")
|
|
|
|
proto_library(
|
|
name = "testing_proto",
|
|
srcs = ["test.proto"],
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"@com_google_protobuf//:timestamp_proto",
|
|
"@gogo_special_proto//github.com/gogo/protobuf/gogoproto", # gazelle:keep
|
|
],
|
|
)
|
|
|
|
go_proto_library(
|
|
name = "ethereum_testing_go_proto",
|
|
compiler = "//:proto_compiler",
|
|
importpath = "github.com/prysmaticlabs/prysm/proto/testing",
|
|
proto = ":testing_proto",
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
testonly = True,
|
|
embed = [":ethereum_testing_go_proto"],
|
|
importpath = "github.com/prysmaticlabs/prysm/proto/testing",
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
go_test(
|
|
name = "go_default_test",
|
|
size = "small",
|
|
srcs = [
|
|
"ssz_regression_test.go",
|
|
"ssz_static_test.go",
|
|
"tags_test.go",
|
|
],
|
|
data = [
|
|
"@eth2_spec_tests_mainnet//:test_data",
|
|
"@eth2_spec_tests_minimal//:test_data",
|
|
],
|
|
embed = [":go_default_library"],
|
|
tags = ["spectest"],
|
|
deps = [
|
|
"//proto/beacon/p2p/v1:go_default_library",
|
|
"//proto/eth/v1alpha1:go_default_library",
|
|
"//shared/bytesutil:go_default_library",
|
|
"//shared/params/spectest:go_default_library",
|
|
"//shared/testutil:go_default_library",
|
|
"@com_github_ghodss_yaml//:go_default_library",
|
|
"@com_github_prysmaticlabs_go_ssz//:go_default_library",
|
|
"@com_github_prysmaticlabs_go_ssz//spectests:go_default_library",
|
|
"@io_bazel_rules_go//go/tools/bazel:go_default_library",
|
|
],
|
|
)
|
|
|
|
# Requires --define ssz=minimal
|
|
go_test(
|
|
name = "go_minimal_test",
|
|
size = "small",
|
|
srcs = [
|
|
"ssz_static_minimal_test.go",
|
|
"ssz_static_test.go",
|
|
],
|
|
data = [
|
|
"@eth2_spec_tests_minimal//:test_data",
|
|
],
|
|
tags = [
|
|
"manual",
|
|
"minimal",
|
|
"spectest",
|
|
],
|
|
deps = [
|
|
"//proto/beacon/p2p/v1:go_default_library",
|
|
"//proto/eth/v1alpha1:go_default_library",
|
|
"//shared/bytesutil:go_default_library",
|
|
"//shared/params/spectest:go_default_library",
|
|
"//shared/testutil:go_default_library",
|
|
"@com_github_ghodss_yaml//:go_default_library",
|
|
"@com_github_prysmaticlabs_go_ssz//:go_default_library",
|
|
"@com_github_prysmaticlabs_go_ssz//spectests:go_default_library",
|
|
"@io_bazel_rules_go//go/tools/bazel:go_default_library",
|
|
],
|
|
)
|
|
|
|
go_test(
|
|
name = "go_mainnet_test",
|
|
size = "small",
|
|
srcs = [
|
|
"ssz_static_mainnet_test.go",
|
|
"ssz_static_test.go",
|
|
],
|
|
data = [
|
|
"@eth2_spec_tests_mainnet//:test_data",
|
|
],
|
|
tags = ["spectest"],
|
|
deps = [
|
|
"//proto/beacon/p2p/v1:go_default_library",
|
|
"//proto/eth/v1alpha1:go_default_library",
|
|
"//shared/bytesutil:go_default_library",
|
|
"//shared/params/spectest:go_default_library",
|
|
"//shared/testutil:go_default_library",
|
|
"@com_github_ghodss_yaml//:go_default_library",
|
|
"@com_github_prysmaticlabs_go_ssz//:go_default_library",
|
|
"@com_github_prysmaticlabs_go_ssz//spectests:go_default_library",
|
|
"@io_bazel_rules_go//go/tools/bazel:go_default_library",
|
|
],
|
|
)
|