| # Copyright 2020 The Fuchsia Authors. All rights reserved. |
| # Use of this source code is governed by a BSD-style license that can be |
| # found in the LICENSE file. |
| import("//build/testing/test_spec.gni") |
| import("fuchsia_package.gni") |
| import("fuchsia_test_component.gni") |
| import("fuchsia_test_component_manifest.gni") |
| |
| # Defines a Fuchsia package that contains one or more components, some of which |
| # implement one or more tests, and specifies how to run tests. |
| # See: https://fuchsia.dev/fuchsia-src/development/components/build |
| # |
| # Example: |
| # ``` |
| # fuchsia_component("fonts-service") { ... } |
| # fuchsia_component("fonts-service-test") { |
| # testonly = true |
| # ... |
| # } |
| # |
| # fuchsia_test_package("fonts-service-test-package") { |
| # test_components = [ ":fonts-service-test" ] |
| # deps = [ ":fonts-service" ], |
| # } |
| # |
| # fuchsia_component("fonts-ui") { ... } |
| # fuchsia_component("fonts-ui-test") { |
| # testonly = true |
| # ... |
| # } |
| # |
| # fuchsia_test_package("fonts-ui-test-package") { |
| # test_components = [ ":fonts-ui-test" ] |
| # deps = [ ":fonts-ui" ], |
| # test_specs = { |
| # environments = [ |
| # astro_env, |
| # sherlock_env, |
| # ] |
| # } |
| # } |
| # |
| # fuchsia_package("fonts-ui-package") { |
| # deps = [ ":fonts-ui" ], |
| # } |
| # |
| # # Defining dependencies via subpackages: |
| # fuchsia_test_package("fonts-ui-test-with-subpackage") { |
| # test_components = [ ":fonts-ui-test" ] |
| # subpackages = [ ":fonts-ui-package" ], |
| # test_specs = { |
| # environments = [ |
| # astro_env, |
| # sherlock_env, |
| # ] |
| # } |
| # } |
| # ``` |
| # |
| # Parameters |
| # |
| # test_components (required) |
| # `fuchsia_component()` targets to include in the package and also register |
| # as entry points for tests. |
| # Additional non-test components can be included via `deps`. |
| # Type: list(labels) |
| # |
| # test_specs (optional) |
| # Additional test specifications to apply to tests defined above. |
| # See `test_spec.gni`. |
| # Type: scope |
| # |
| # package_name (optional) |
| # The name of the package. |
| # Type: string |
| # Default: target_name |
| # |
| # renameable_subpackages (optional) |
| # A list of subpackages defined by scoped variables `package` (a |
| # `fuchsia_package()` target) and an optional `name`. See |
| # `fuchsia_package()` for more details. |
| # Type: list of scopes |
| # |
| # subpackages (optional) |
| # A list of `fuchsia_package` targets. See `fuchsia_package()` for more |
| # details. |
| # Type: list of targets |
| # |
| # data_deps |
| # deps |
| # visibility |
| template("fuchsia_test_package") { |
| if (current_toolchain == default_toolchain) { |
| assert( |
| defined(invoker.test_components) && invoker.test_components != [], |
| "`test_components` must be specified when calling fuchsia_test_package($target_name)") |
| |
| package_name = target_name |
| package_label = get_label_info(":$target_name", "label_with_toolchain") |
| package_manifest = |
| rebase_path("$target_out_dir/$target_name/package_manifest.json", |
| root_build_dir) |
| if (defined(invoker.package_name)) { |
| package_name = invoker.package_name |
| } |
| test_specs = { |
| } |
| if (defined(invoker.test_specs)) { |
| test_specs = invoker.test_specs |
| } |
| |
| # test packages won't be configured by assembly tools, so we can check their config earlier |
| _validate_structured_config = true |
| if (defined(invoker.validate_structured_config)) { |
| _validate_structured_config = invoker.validate_structured_config |
| } |
| |
| test_deps = [] |
| foreach(test, invoker.test_components) { |
| test_target_name = get_label_info(test, "name") |
| component_label = get_label_info(test, "label_with_toolchain") |
| test_target = "${target_name}_test_" + test_target_name |
| manifest_name = get_target_outputs(test) |
| manifest_name = get_path_info(manifest_name[0], "file") |
| |
| test_spec(test_target) { |
| forward_variables_from(test_specs, "*") |
| if (!defined(build_rule)) { |
| build_rule = "fuchsia_test_package" |
| } |
| target = get_label_info(":$target_name", "label_with_toolchain") |
| package_label = package_label |
| component_label = component_label |
| package_manifests = [ package_manifest ] |
| package_url = |
| "fuchsia-pkg://fuchsia.com/$package_name#meta/$manifest_name" |
| } |
| test_deps += [ ":$test_target" ] |
| } |
| |
| fuchsia_package(target_name) { |
| forward_variables_from(invoker, |
| [ |
| "data_deps", |
| "deps", |
| "disable_elf_binaries_checks", |
| "metadata", |
| "visibility", |
| ]) |
| package_name = package_name |
| if (!defined(deps)) { |
| deps = [] |
| } |
| deps += invoker.test_components |
| deps += test_deps |
| testonly = true |
| if (!defined(invoker.metadata)) { |
| metadata = { |
| } |
| } |
| metadata.test_components_barrier = invoker.test_components |
| |
| # Pass subpackages through a different parameter than the documented one, |
| # so that the fuchsia_package() can identify these as from a test package. |
| # This is only for allow-list enforcement |
| if (defined(invoker.subpackages)) { |
| test_pkg__subpackages = invoker.subpackages |
| } |
| if (defined(invoker.renameable_subpackages)) { |
| test_pkg__renameable_subpackages = invoker.renameable_subpackages |
| } |
| |
| validate_structured_config = _validate_structured_config |
| } |
| } else { |
| group(target_name) { |
| testonly = true |
| forward_variables_from(invoker, [ "visibility" ]) |
| deps = [ ":$target_name($default_toolchain)" ] |
| } |
| not_needed(invoker, "*") |
| } |
| } |