mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
Since we generate a `.mjs` file as entry-point for jasmine tests, a couple of issues prevented the transitive dependencies from bootstrap targets to be brought in (causing resolution errors): 1. The `_files` (previously `_esm2015`) targets are no longer needed, and they also miss all the information on runfiles. 2. The aspect for computing linker mappings does not respect the `bootstrap` attribute from the `spec_entrypoint` so we manually add the extract ESM output targets (this rule works with the aspect and forwards linker mappings). PR Close #48521
106 lines
3.5 KiB
Text
106 lines
3.5 KiB
Text
load("@npm//@babel/cli:index.bzl", "babel")
|
|
load("//tools:defaults.bzl", "jasmine_node_test", "ts_library")
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
ts_library(
|
|
name = "test_lib",
|
|
testonly = True,
|
|
srcs = glob(
|
|
["**/*.ts"],
|
|
exclude = ["integration/**/*.ts"],
|
|
),
|
|
deps = [
|
|
"//packages/compiler",
|
|
"//packages/compiler-cli",
|
|
"//packages/compiler-cli/ngcc",
|
|
"//packages/compiler-cli/ngcc/test/helpers",
|
|
"//packages/compiler-cli/src/ngtsc/diagnostics",
|
|
"//packages/compiler-cli/src/ngtsc/file_system",
|
|
"//packages/compiler-cli/src/ngtsc/file_system/testing",
|
|
"//packages/compiler-cli/src/ngtsc/imports",
|
|
"//packages/compiler-cli/src/ngtsc/incremental/semantic_graph",
|
|
"//packages/compiler-cli/src/ngtsc/logging/testing",
|
|
"//packages/compiler-cli/src/ngtsc/partial_evaluator",
|
|
"//packages/compiler-cli/src/ngtsc/reflection",
|
|
"//packages/compiler-cli/src/ngtsc/sourcemaps",
|
|
"//packages/compiler-cli/src/ngtsc/testing",
|
|
"//packages/compiler-cli/src/ngtsc/transform",
|
|
"//packages/compiler-cli/src/ngtsc/translator",
|
|
"@npm//@jridgewell/sourcemap-codec",
|
|
"@npm//@types/convert-source-map",
|
|
"@npm//@types/yargs",
|
|
"@npm//dependency-graph",
|
|
"@npm//magic-string",
|
|
"@npm//typescript",
|
|
],
|
|
)
|
|
|
|
jasmine_node_test(
|
|
name = "test",
|
|
bootstrap = ["//tools/testing:node_no_angular"],
|
|
data = [
|
|
"//packages/compiler-cli/src/ngtsc/testing/fake_core:npm_package",
|
|
],
|
|
deps = [
|
|
":test_lib",
|
|
],
|
|
)
|
|
|
|
ts_library(
|
|
name = "integration_lib",
|
|
testonly = True,
|
|
srcs = glob(
|
|
["integration/**/*.ts"],
|
|
),
|
|
deps = [
|
|
"//packages/compiler-cli/ngcc",
|
|
"//packages/compiler-cli/ngcc/test/helpers",
|
|
"//packages/compiler-cli/src/ngtsc/file_system",
|
|
"//packages/compiler-cli/src/ngtsc/file_system/testing",
|
|
"//packages/compiler-cli/src/ngtsc/logging/testing",
|
|
"//packages/compiler-cli/src/ngtsc/testing",
|
|
"@npm//rxjs",
|
|
"@npm//typescript",
|
|
],
|
|
)
|
|
|
|
# As of version 10, the release packages do not contain esm5 output anymore. The ngcc integration
|
|
# tests intend to test ES5 features though, so we downlevel the flat esm2015 file to ES5 using
|
|
# Babel. We can then link that into the mock file system as if the Angular core package is still
|
|
# built with previous APF versions where esm5 output was shipped. This allows us to ensure that ngcc
|
|
# properly processes libraries with esm5 output.
|
|
# **Note**: We are using Babel instead of `tsc` as TypeScript does not allow us to downlevel the
|
|
# file without setting the module resolution to either `amd` or `system`. We want to preserve ES
|
|
# modules.
|
|
babel(
|
|
name = "fesm5_angular_core",
|
|
outs = ["fesm5_angular_core.js"],
|
|
args = [
|
|
"$(execpath @npm//:node_modules/@angular/core-12/fesm2015/core.js)",
|
|
"--presets @babel/preset-env",
|
|
"--out-file $(execpath fesm5_angular_core.js)",
|
|
],
|
|
data = [
|
|
"@npm//:node_modules/@angular/core-12/fesm2015/core.js",
|
|
"@npm//@babel/preset-env",
|
|
],
|
|
)
|
|
|
|
jasmine_node_test(
|
|
name = "integration",
|
|
timeout = "long",
|
|
bootstrap = ["//tools/testing:node_no_angular"],
|
|
data = [
|
|
":fesm5_angular_core",
|
|
"@npm//@angular/common-12",
|
|
"@npm//@angular/core-12",
|
|
"@npm//rxjs",
|
|
],
|
|
shard_count = 4,
|
|
tags = [],
|
|
deps = [
|
|
":integration_lib",
|
|
"@npm//convert-source-map",
|
|
],
|
|
)
|