83 lines
3.0 KiB
Python
83 lines
3.0 KiB
Python
|
|
# Copyright (C) 2021 The Android Open Source Project
|
||
|
|
#
|
||
|
|
# 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.
|
||
|
|
|
||
|
|
"""Rule used to generate a Cuttlefish device environment.
|
||
|
|
|
||
|
|
This rule creates a device environment rule to run tests on a Cuttlefish Android
|
||
|
|
Virtual Device. Test targets that run in this environment will start a new
|
||
|
|
dedicated virtual device for each execution.
|
||
|
|
|
||
|
|
Device properties such as the image used can be configured via an attribute.
|
||
|
|
"""
|
||
|
|
|
||
|
|
load("//bazel/rules:platform_transitions.bzl", "host_transition")
|
||
|
|
load("//bazel/rules:device_test.bzl", "DeviceEnvironment")
|
||
|
|
load("@device_infra//remote_device:download_cvd_artifact.bzl", "ImageProvider")
|
||
|
|
load(
|
||
|
|
"//:constants.bzl",
|
||
|
|
"adb_label",
|
||
|
|
)
|
||
|
|
|
||
|
|
_BAZEL_WORK_DIR = "${TEST_SRCDIR}/${TEST_WORKSPACE}/"
|
||
|
|
|
||
|
|
def _cuttlefish_device_impl(ctx):
|
||
|
|
path_additions = [_BAZEL_WORK_DIR + ctx.file._adb.dirname]
|
||
|
|
image_file = ctx.attr.build_files[ImageProvider].image
|
||
|
|
cvd_host_file = ctx.attr.build_files[ImageProvider].cvd_host_package
|
||
|
|
ctx.actions.expand_template(
|
||
|
|
template = ctx.file._create_script_template,
|
||
|
|
output = ctx.outputs.out,
|
||
|
|
is_executable = True,
|
||
|
|
substitutions = {
|
||
|
|
"{img_path}": _BAZEL_WORK_DIR + image_file.short_path,
|
||
|
|
"{cvd_host_package_path}": _BAZEL_WORK_DIR + cvd_host_file.short_path,
|
||
|
|
"{path_additions}": ":".join(path_additions),
|
||
|
|
},
|
||
|
|
)
|
||
|
|
|
||
|
|
return DeviceEnvironment(
|
||
|
|
runner = depset([ctx.outputs.out]),
|
||
|
|
data = ctx.runfiles(files = [
|
||
|
|
cvd_host_file,
|
||
|
|
ctx.outputs.out,
|
||
|
|
image_file,
|
||
|
|
]),
|
||
|
|
)
|
||
|
|
|
||
|
|
cuttlefish_device = rule(
|
||
|
|
attrs = {
|
||
|
|
"build_files": attr.label(
|
||
|
|
providers = [ImageProvider],
|
||
|
|
mandatory = True,
|
||
|
|
),
|
||
|
|
"out": attr.output(mandatory = True),
|
||
|
|
"_create_script_template": attr.label(
|
||
|
|
default = "//bazel/rules/device:create_cuttlefish.sh.template",
|
||
|
|
allow_single_file = True,
|
||
|
|
),
|
||
|
|
# This attribute is required to use Starlark transitions. It allows
|
||
|
|
# allowlisting usage of this rule. For more information, see
|
||
|
|
# https://docs.bazel.build/versions/master/skylark/config.html#user-defined-transitions
|
||
|
|
"_allowlist_function_transition": attr.label(
|
||
|
|
default = "@bazel_tools//tools/allowlists/function_transition_allowlist",
|
||
|
|
),
|
||
|
|
"_adb": attr.label(
|
||
|
|
default = adb_label,
|
||
|
|
allow_single_file = True,
|
||
|
|
cfg = host_transition,
|
||
|
|
),
|
||
|
|
},
|
||
|
|
implementation = _cuttlefish_device_impl,
|
||
|
|
)
|