112 lines
2.3 KiB
Python
112 lines
2.3 KiB
Python
load("@rules_erlang//:eunit2.bzl", "eunit")
|
|
load("@rules_erlang//:xref2.bzl", "xref")
|
|
load("@rules_erlang//:dialyze.bzl", "dialyze", "plt")
|
|
load(
|
|
"//:rabbitmq.bzl",
|
|
"BROKER_VERSION_REQUIREMENTS_ANY",
|
|
"RABBITMQ_DIALYZER_OPTS",
|
|
"assert_suites",
|
|
"broker_for_integration_suites",
|
|
"rabbitmq_app",
|
|
"rabbitmq_integration_suite",
|
|
"rabbitmq_suite",
|
|
)
|
|
load(
|
|
":app.bzl",
|
|
"all_beam_files",
|
|
"all_srcs",
|
|
"all_test_beam_files",
|
|
"test_suite_beam_files",
|
|
)
|
|
|
|
APP_ENV = """[
|
|
{cache_ttl, 15000},
|
|
{cache_module, rabbit_auth_cache_ets},
|
|
{cache_module_args, []},
|
|
{cached_backend, rabbit_auth_backend_internal},
|
|
{cache_refusals, false}
|
|
]"""
|
|
|
|
APP_NAME = "rabbitmq_auth_backend_cache"
|
|
|
|
APP_DESCRIPTION = "RabbitMQ Authentication Backend cache"
|
|
|
|
APP_MODULE = "rabbit_auth_backend_cache_app"
|
|
|
|
all_beam_files(name = "all_beam_files")
|
|
|
|
all_test_beam_files(name = "all_test_beam_files")
|
|
|
|
all_srcs(name = "all_srcs")
|
|
|
|
test_suite_beam_files(name = "test_suite_beam_files")
|
|
|
|
# gazelle:erlang_app_dep rabbit
|
|
|
|
rabbitmq_app(
|
|
name = "erlang_app",
|
|
srcs = [":all_srcs"],
|
|
hdrs = [":public_hdrs"],
|
|
app_description = APP_DESCRIPTION,
|
|
app_env = APP_ENV,
|
|
app_extra_keys = BROKER_VERSION_REQUIREMENTS_ANY,
|
|
app_module = APP_MODULE,
|
|
app_name = APP_NAME,
|
|
beam_files = [":beam_files"],
|
|
license_files = [":license_files"],
|
|
priv = [":priv"],
|
|
deps = [
|
|
"//deps/rabbit:erlang_app",
|
|
"//deps/rabbit_common:erlang_app",
|
|
],
|
|
)
|
|
|
|
xref(
|
|
name = "xref",
|
|
target = ":erlang_app",
|
|
)
|
|
|
|
plt(
|
|
name = "deps_plt",
|
|
for_target = ":erlang_app",
|
|
ignore_warnings = True,
|
|
plt = "//:base_plt",
|
|
)
|
|
|
|
dialyze(
|
|
name = "dialyze",
|
|
dialyzer_opts = RABBITMQ_DIALYZER_OPTS,
|
|
plt = ":deps_plt",
|
|
target = ":erlang_app",
|
|
)
|
|
|
|
eunit(
|
|
name = "eunit",
|
|
target = ":test_erlang_app",
|
|
)
|
|
|
|
broker_for_integration_suites()
|
|
|
|
rabbitmq_integration_suite(
|
|
name = "config_schema_SUITE",
|
|
)
|
|
|
|
rabbitmq_integration_suite(
|
|
name = "rabbit_auth_backend_cache_SUITE",
|
|
)
|
|
|
|
rabbitmq_suite(
|
|
name = "rabbit_auth_cache_SUITE",
|
|
deps = [
|
|
"//deps/rabbitmq_ct_helpers:erlang_app",
|
|
],
|
|
)
|
|
|
|
assert_suites()
|
|
|
|
alias(
|
|
name = "rabbitmq_auth_backend_cache",
|
|
actual = ":erlang_app",
|
|
visibility = ["//visibility:public"],
|
|
)
|