e99d860393
Update XMB placeholders(<ph>) to include the original value on top of an example. Placeholders can by definition have one example(<ex>) tag and a text node. The text node is used by TC as the "original" value from the placeholder, while the example should represent a dummy value. For example: <ph name="PET"><ex>Gopher</ex>{{ petName }}</ph>. This change makes sure that we have the original text, but it *DOES NOT* make sure that the example is correct. The example has the same wrong behavior of showing the interpolation text rather than a useful example. No breaking changes, but tools that depend on the previous behavior and don't consider the full XMB definition may fail to parse the XMB. Fixes b/72565847 PR Close #25079
136 lines
2.7 KiB
Python
136 lines
2.7 KiB
Python
load("//tools:defaults.bzl", "ts_library")
|
|
load("@build_bazel_rules_nodejs//:defs.bzl", "jasmine_node_test")
|
|
|
|
# Uses separate test rules to allow the tests to run in parallel
|
|
|
|
ts_library(
|
|
name = "test_utils",
|
|
testonly = 1,
|
|
srcs = [
|
|
"mocks.ts",
|
|
"test_support.ts",
|
|
],
|
|
visibility = [
|
|
":__subpackages__",
|
|
"//packages/language-service/test:__subpackages__",
|
|
],
|
|
deps = [
|
|
"//packages:types",
|
|
"//packages/compiler",
|
|
"//packages/compiler-cli",
|
|
],
|
|
)
|
|
|
|
# extract_18n_spec
|
|
ts_library(
|
|
name = "extract_i18n_lib",
|
|
testonly = 1,
|
|
srcs = [
|
|
"extract_i18n_spec.ts",
|
|
],
|
|
deps = [
|
|
":test_utils",
|
|
"//packages/compiler",
|
|
"//packages/compiler-cli",
|
|
],
|
|
)
|
|
|
|
jasmine_node_test(
|
|
name = "extract_i18n",
|
|
bootstrap = ["angular/tools/testing/init_node_spec.js"],
|
|
data = [
|
|
"//packages/core:npm_package",
|
|
],
|
|
deps = [
|
|
":extract_i18n_lib",
|
|
"//packages/common:npm_package",
|
|
"//packages/core",
|
|
"//tools/testing:node",
|
|
],
|
|
)
|
|
|
|
# ngc_spec
|
|
ts_library(
|
|
name = "ngc_lib",
|
|
testonly = 1,
|
|
srcs = [
|
|
"ngc_spec.ts",
|
|
],
|
|
deps = [
|
|
":test_utils",
|
|
"//packages/compiler",
|
|
"//packages/compiler-cli",
|
|
],
|
|
)
|
|
|
|
jasmine_node_test(
|
|
name = "ngc",
|
|
bootstrap = ["angular/tools/testing/init_node_spec.js"],
|
|
data = [
|
|
"//packages/common:npm_package",
|
|
"//packages/core:npm_package",
|
|
"//packages/platform-browser:npm_package",
|
|
"//packages/router:npm_package",
|
|
],
|
|
deps = [
|
|
":ngc_lib",
|
|
"//packages/core",
|
|
"//tools/testing:node",
|
|
],
|
|
)
|
|
|
|
# ngctools_api_spec
|
|
ts_library(
|
|
name = "ngtools_api_lib",
|
|
testonly = 1,
|
|
srcs = [
|
|
"ngtools_api_spec.ts",
|
|
],
|
|
deps = [
|
|
":test_utils",
|
|
"//packages/compiler",
|
|
"//packages/compiler-cli",
|
|
],
|
|
)
|
|
|
|
jasmine_node_test(
|
|
name = "ngtools_api",
|
|
bootstrap = ["angular/tools/testing/init_node_spec.js"],
|
|
data = [
|
|
"//packages/core:npm_package",
|
|
"//packages/router:npm_package",
|
|
],
|
|
deps = [
|
|
":ngtools_api_lib",
|
|
"//packages/core",
|
|
"//tools/testing:node",
|
|
],
|
|
)
|
|
|
|
# perform_watch_spec
|
|
ts_library(
|
|
name = "perform_watch_lib",
|
|
testonly = 1,
|
|
srcs = [
|
|
"perform_watch_spec.ts",
|
|
],
|
|
deps = [
|
|
":test_utils",
|
|
"//packages/compiler",
|
|
"//packages/compiler-cli",
|
|
],
|
|
)
|
|
|
|
jasmine_node_test(
|
|
name = "perform_watch",
|
|
bootstrap = ["angular/tools/testing/init_node_spec.js"],
|
|
data = [
|
|
"//packages/core:npm_package",
|
|
],
|
|
deps = [
|
|
":perform_watch_lib",
|
|
"//packages/core",
|
|
"//tools/testing:node",
|
|
],
|
|
)
|