blob: edcb50adbad16d2e7b08a9f7fc31c2c9e97ca992 [file] [log] [blame]
# Copyright 2019 The Bazel Authors. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""A test verifying other targets build as part of a `bazel test`"""
load("//lib:new_sets.bzl", "sets")
def build_test(name, targets, **kwargs):
"""Test rule checking that other targets build.
This works not by an instance of this test failing, but instead by
the targets it depends on failing to build, and hence failing
the attempt to run this test.
NOTE: At the moment, this won't work on Windows; but someone adding
support would be welcomed.
Typical usage:
```
load("@bazel_skylib//rules:build_test.bzl", "build_test")
build_test(
name = "my_build_test",
targets = [
"//some/package:rule",
],
)
```
Args:
name: The name of the test rule.
targets: A list of targets to ensure build.
**kwargs: The <a href="https://docs.bazel.build/versions/master/be/common-definitions.html#common-attributes-tests">common attributes for tests</a>.
"""
if len(targets) == 0:
fail("targets must be non-empty", "targets")
if kwargs.get("data", None):
fail("data is not supported on a build_test()", "data")
# Remove any duplicate test targets.
targets = sets.to_list(sets.make(targets))
# Use a genrule to ensure the targets are built (works because it forces
# the outputs of the other rules on as data for the genrule)
# Split into batches to hopefully avoid things becoming so large they are
# too much for a remote execution set up.
batch_size = max(1, len(targets) // 100)
# Pull a few args over from the test to the genrule.
args_to_reuse = ["compatible_with", "restricted_to", "tags"]
genrule_args = {k: kwargs.get(k) for k in args_to_reuse if k in kwargs}
# Pass an output from the genrules as data to a shell test to bundle
# it all up in a test.
test_data = []
for idx, batch in enumerate([targets[i:i + batch_size] for i in range(0, len(targets), batch_size)]):
full_name = "{name}_{idx}__deps".format(name = name, idx = idx)
test_data.append(full_name)
native.genrule(
name = full_name,
srcs = batch,
outs = [full_name + ".out"],
testonly = 1,
visibility = ["//visibility:private"],
# TODO: Does this need something else for Windows?
cmd = "touch $@",
**genrule_args
)
native.sh_test(
name = name,
# TODO: Does this need something else for Windows?
srcs = ["@bazel_skylib//rules:empty_test.sh"],
data = test_data,
size = kwargs.pop("size", "small"), # Default to small for test size
**kwargs
)