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