2018-09-11 21:11:32 -04:00
|
|
|
load("//tools:defaults.bzl", "jasmine_node_test", "ts_library", "ts_web_test_suite")
|
2017-12-06 09:56:49 -05:00
|
|
|
|
2018-03-20 20:02:50 -04:00
|
|
|
# Test that should only be run in node
|
|
|
|
NODE_ONLY = [
|
|
|
|
"**/*_node_only_spec.ts",
|
|
|
|
"aot/**/*.ts",
|
|
|
|
]
|
|
|
|
|
2018-03-21 17:22:06 -04:00
|
|
|
UTILS = [
|
|
|
|
"aot/test_util.ts",
|
|
|
|
]
|
|
|
|
|
|
|
|
ts_library(
|
|
|
|
name = "test_utils",
|
2018-08-14 19:18:26 -04:00
|
|
|
testonly = True,
|
2018-03-21 17:22:06 -04:00
|
|
|
srcs = UTILS,
|
2018-04-04 14:38:37 -04:00
|
|
|
visibility = [
|
|
|
|
"//packages/compiler-cli/test:__subpackages__",
|
|
|
|
"//packages/compiler/test:__subpackages__",
|
|
|
|
],
|
2018-03-21 17:22:06 -04:00
|
|
|
deps = [
|
|
|
|
"//packages:types",
|
|
|
|
"//packages/compiler",
|
|
|
|
"//packages/compiler-cli",
|
2019-02-20 12:54:42 -05:00
|
|
|
"@npm//typescript",
|
2018-03-21 17:22:06 -04:00
|
|
|
],
|
|
|
|
)
|
|
|
|
|
2017-12-06 09:56:49 -05:00
|
|
|
ts_library(
|
2017-12-16 23:08:49 -05:00
|
|
|
name = "test_lib",
|
2018-10-16 02:24:22 -04:00
|
|
|
testonly = True,
|
2017-12-16 23:08:49 -05:00
|
|
|
srcs = glob(
|
|
|
|
["**/*.ts"],
|
2018-03-21 17:22:06 -04:00
|
|
|
exclude = NODE_ONLY + UTILS,
|
2017-12-16 23:08:49 -05:00
|
|
|
),
|
2017-12-06 09:56:49 -05:00
|
|
|
deps = [
|
|
|
|
"//packages:types",
|
|
|
|
"//packages/common",
|
|
|
|
"//packages/compiler",
|
2018-04-24 17:22:55 -04:00
|
|
|
"//packages/compiler/test/expression_parser/utils",
|
2018-11-27 15:32:14 -05:00
|
|
|
"//packages/compiler/test/ml_parser/util",
|
2017-12-06 09:56:49 -05:00
|
|
|
"//packages/compiler/testing",
|
|
|
|
"//packages/core",
|
2019-01-11 19:07:01 -05:00
|
|
|
"//packages/core/src/compiler",
|
2017-12-06 09:56:49 -05:00
|
|
|
"//packages/core/testing",
|
|
|
|
"//packages/platform-browser",
|
|
|
|
"//packages/platform-browser-dynamic",
|
|
|
|
"//packages/platform-browser/testing",
|
|
|
|
],
|
|
|
|
)
|
2017-12-16 23:08:49 -05:00
|
|
|
|
|
|
|
ts_library(
|
|
|
|
name = "test_node_only_lib",
|
2018-10-16 02:24:22 -04:00
|
|
|
testonly = True,
|
2018-03-21 17:22:06 -04:00
|
|
|
srcs = glob(
|
|
|
|
NODE_ONLY,
|
|
|
|
exclude = UTILS,
|
|
|
|
),
|
2017-12-16 23:08:49 -05:00
|
|
|
deps = [
|
|
|
|
":test_lib",
|
2018-03-21 17:22:06 -04:00
|
|
|
":test_utils",
|
2017-12-16 23:08:49 -05:00
|
|
|
"//packages/compiler",
|
2018-03-20 20:02:50 -04:00
|
|
|
"//packages/compiler-cli",
|
2018-04-24 17:22:55 -04:00
|
|
|
"//packages/compiler/test/expression_parser/utils",
|
2017-12-16 23:08:49 -05:00
|
|
|
"//packages/compiler/testing",
|
2018-03-20 20:02:50 -04:00
|
|
|
"//packages/core",
|
2019-02-20 12:54:42 -05:00
|
|
|
"@npm//typescript",
|
2017-12-16 23:08:49 -05:00
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
jasmine_node_test(
|
|
|
|
name = "test",
|
2017-12-19 18:03:29 -05:00
|
|
|
bootstrap = ["angular/tools/testing/init_node_spec.js"],
|
2018-03-20 20:02:50 -04:00
|
|
|
data = [
|
|
|
|
"//packages/animations:npm_package",
|
|
|
|
"//packages/common:npm_package",
|
|
|
|
"//packages/core:npm_package",
|
|
|
|
],
|
2018-10-16 02:24:22 -04:00
|
|
|
tags = [
|
2018-11-27 15:32:14 -05:00
|
|
|
# Disabled as these tests pertain to the old ngc compilation and are not relevant in Ivy.
|
|
|
|
"no-ivy-aot",
|
2018-10-16 02:24:22 -04:00
|
|
|
],
|
2017-12-16 23:08:49 -05:00
|
|
|
deps = [
|
|
|
|
":test_lib",
|
|
|
|
":test_node_only_lib",
|
2017-12-18 18:37:05 -05:00
|
|
|
"//tools/testing:node",
|
2019-02-20 12:54:42 -05:00
|
|
|
"@npm//base64-js",
|
|
|
|
"@npm//source-map",
|
2017-12-16 23:08:49 -05:00
|
|
|
],
|
|
|
|
)
|
|
|
|
|
2018-05-11 12:43:06 -04:00
|
|
|
ts_web_test_suite(
|
2017-12-16 23:08:49 -05:00
|
|
|
name = "test_web",
|
2018-10-16 02:24:22 -04:00
|
|
|
tags = [
|
2018-11-27 15:32:14 -05:00
|
|
|
# Disabled as these tests pertain to the old ngc compilation and are not relevant in Ivy.
|
|
|
|
"no-ivy-aot",
|
2018-10-16 02:24:22 -04:00
|
|
|
],
|
2017-12-16 23:08:49 -05:00
|
|
|
deps = [
|
|
|
|
":test_lib",
|
|
|
|
],
|
|
|
|
)
|