| load("@rules_java//java:defs.bzl", "java_library") |
| load("//tools/bzl:junit.bzl", "junit_tests") |
| |
| java_library( |
| name = "elasticsearch_test_utils", |
| testonly = True, |
| srcs = [ |
| "ElasticContainer.java", |
| "ElasticTestUtils.java", |
| ], |
| visibility = ["//visibility:public"], |
| deps = [ |
| "//java/com/google/gerrit/elasticsearch", |
| "//java/com/google/gerrit/index", |
| "//lib:guava", |
| "//lib:jgit", |
| "//lib:junit", |
| "//lib/guice", |
| "//lib/httpcomponents:httpcore", |
| "//lib/jackson:jackson-annotations", |
| "//lib/log:api", |
| "//lib/testcontainers", |
| "//lib/testcontainers:docker-java-api", |
| "//lib/testcontainers:docker-java-transport", |
| "//lib/testcontainers:testcontainers-elasticsearch", |
| ], |
| ) |
| |
| ELASTICSEARCH_DEPS = [ |
| ":elasticsearch_test_utils", |
| "//java/com/google/gerrit/elasticsearch", |
| "//java/com/google/gerrit/testing:gerrit-test-util", |
| "//lib/guice", |
| "//lib:jgit", |
| ] |
| |
| HTTP_TEST_DEPS = [ |
| "//lib/httpcomponents:httpasyncclient", |
| "//lib/httpcomponents:httpclient", |
| ] |
| |
| QUERY_TESTS_DEP = "//javatests/com/google/gerrit/server/query/%s:abstract_query_tests" |
| |
| TYPES = [ |
| "account", |
| "change", |
| "group", |
| "project", |
| ] |
| |
| SUFFIX = "sTest.java" |
| |
| ELASTICSEARCH_TESTS_V7 = {i: "ElasticV7Query" + i.capitalize() + SUFFIX for i in TYPES} |
| |
| ELASTICSEARCH_TAGS = [ |
| "docker", |
| "elastic", |
| "exclusive", |
| ] |
| |
| [junit_tests( |
| name = "elasticsearch_query_%ss_test_V7" % name, |
| size = "large", |
| srcs = [src], |
| tags = ELASTICSEARCH_TAGS, |
| deps = ELASTICSEARCH_DEPS + [QUERY_TESTS_DEP % name] + HTTP_TEST_DEPS, |
| ) for name, src in ELASTICSEARCH_TESTS_V7.items()] |
| |
| junit_tests( |
| name = "elasticsearch_tests", |
| size = "small", |
| srcs = glob( |
| ["*Test.java"], |
| exclude = ["Elastic*Query*" + SUFFIX], |
| ), |
| tags = ["elastic"], |
| deps = [ |
| "//java/com/google/gerrit/elasticsearch", |
| "//java/com/google/gerrit/testing:gerrit-test-util", |
| "//lib:guava", |
| "//lib:jgit", |
| "//lib/guice", |
| "//lib/httpcomponents:httpcore", |
| "//lib/truth", |
| ], |
| ) |