2019-11-13 12:08:38 -05:00
|
|
|
load("//tools:defaults.bzl", "jasmine_node_test", "karma_web_test_suite", "ts_library")
|
2020-01-14 09:31:13 -05:00
|
|
|
load("//tools/circular_dependency_test:index.bzl", "circular_dependency_test")
|
2017-12-06 09:56:49 -05:00
|
|
|
|
2019-01-16 04:19:01 -05:00
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
|
2020-01-14 09:31:13 -05:00
|
|
|
circular_dependency_test(
|
|
|
|
name = "circular_deps_test",
|
|
|
|
entry_point = "angular/packages/core/index.js",
|
|
|
|
deps = ["//packages/core"],
|
|
|
|
)
|
|
|
|
|
|
|
|
circular_dependency_test(
|
|
|
|
name = "testing_circular_deps_test",
|
|
|
|
entry_point = "angular/packages/core/testing/index.js",
|
|
|
|
deps = ["//packages/core/testing"],
|
|
|
|
)
|
|
|
|
|
2017-12-06 09:56:49 -05:00
|
|
|
ts_library(
|
|
|
|
name = "test_lib",
|
2018-10-16 02:24:22 -04:00
|
|
|
testonly = True,
|
2017-12-01 17:23:03 -05:00
|
|
|
srcs = glob(
|
|
|
|
["**/*.ts"],
|
2017-12-16 14:35:47 -05:00
|
|
|
exclude = [
|
|
|
|
"**/*_node_only_spec.ts",
|
|
|
|
],
|
2017-12-01 17:23:03 -05:00
|
|
|
),
|
2019-12-06 10:17:09 -05:00
|
|
|
# Visible to //:saucelabs_unit_tests_poc target
|
2018-12-18 01:09:39 -05:00
|
|
|
visibility = ["//:__pkg__"],
|
2017-12-06 09:56:49 -05:00
|
|
|
deps = [
|
|
|
|
"//packages/animations",
|
|
|
|
"//packages/animations/browser",
|
|
|
|
"//packages/animations/browser/testing",
|
|
|
|
"//packages/common",
|
2019-05-17 10:13:31 -04:00
|
|
|
"//packages/common/locales",
|
2017-12-06 09:56:49 -05:00
|
|
|
"//packages/compiler",
|
|
|
|
"//packages/compiler/testing",
|
|
|
|
"//packages/core",
|
2019-01-09 16:49:16 -05:00
|
|
|
"//packages/core/src/di/interface",
|
|
|
|
"//packages/core/src/interface",
|
2019-01-11 19:07:01 -05:00
|
|
|
"//packages/core/src/reflection",
|
2019-01-09 16:49:16 -05:00
|
|
|
"//packages/core/src/util",
|
2017-12-06 09:56:49 -05:00
|
|
|
"//packages/core/testing",
|
2019-08-10 07:51:30 -04:00
|
|
|
"//packages/localize/init",
|
2017-12-06 09:56:49 -05:00
|
|
|
"//packages/platform-browser",
|
|
|
|
"//packages/platform-browser-dynamic",
|
|
|
|
"//packages/platform-browser/animations",
|
|
|
|
"//packages/platform-browser/testing",
|
2018-07-27 16:49:22 -04:00
|
|
|
"//packages/private/testing",
|
2017-12-06 09:56:49 -05:00
|
|
|
"//packages/router",
|
|
|
|
"//packages/router/testing",
|
2019-10-05 23:06:53 -04:00
|
|
|
"//packages/zone.js/lib:zone_d_ts",
|
2019-02-20 12:54:42 -05:00
|
|
|
"@npm//rxjs",
|
2017-12-06 09:56:49 -05:00
|
|
|
],
|
|
|
|
)
|
|
|
|
|
2017-12-16 14:35:47 -05:00
|
|
|
ts_library(
|
|
|
|
name = "test_node_only_lib",
|
2018-10-16 02:24:22 -04:00
|
|
|
testonly = True,
|
2017-12-16 14:35:47 -05:00
|
|
|
srcs = glob(["**/*_node_only_spec.ts"]),
|
|
|
|
deps = [
|
|
|
|
":test_lib",
|
|
|
|
"//packages/compiler",
|
|
|
|
"//packages/compiler/testing",
|
|
|
|
"//packages/core",
|
2019-02-08 17:10:20 -05:00
|
|
|
"//packages/core/src/compiler",
|
2017-12-16 14:35:47 -05:00
|
|
|
"//packages/core/testing",
|
|
|
|
"//packages/platform-server",
|
|
|
|
"//packages/platform-server/testing",
|
2018-11-05 23:31:54 -05:00
|
|
|
"//packages/private/testing",
|
2017-12-16 14:35:47 -05:00
|
|
|
],
|
|
|
|
)
|
|
|
|
|
2017-12-06 09:56:49 -05:00
|
|
|
jasmine_node_test(
|
|
|
|
name = "test",
|
2020-01-08 02:56:49 -05:00
|
|
|
bootstrap = ["//tools/testing:node_es5"],
|
2019-03-08 19:35:36 -05:00
|
|
|
shard_count = 4,
|
2017-12-16 14:35:47 -05:00
|
|
|
deps = [
|
|
|
|
":test_lib",
|
|
|
|
":test_node_only_lib",
|
|
|
|
"//packages/platform-server",
|
|
|
|
"//packages/platform-server/testing",
|
2019-10-05 23:06:53 -04:00
|
|
|
"//packages/zone.js/lib:zone_d_ts",
|
2019-02-20 12:54:42 -05:00
|
|
|
"@npm//base64-js",
|
|
|
|
"@npm//source-map",
|
2017-12-16 14:35:47 -05:00
|
|
|
],
|
|
|
|
)
|
|
|
|
|
2019-11-13 12:08:38 -05:00
|
|
|
karma_web_test_suite(
|
2017-12-16 14:35:47 -05:00
|
|
|
name = "test_web",
|
2020-02-18 11:46:32 -05:00
|
|
|
tags = [
|
|
|
|
# FIXME: fix on saucelabs
|
|
|
|
# IE 11.0.0 (Windows 8.1.0.0) ivy NgModule providers should throw when the aliased provider does not exist FAILED
|
|
|
|
# Error: Expected function to throw an exception with message 'R3InjectorError(SomeModule)[car -> SportsCar]:
|
|
|
|
# NullInjectorError: No provider for Car!', but it threw an exception with message 'R3InjectorError(SomeModule)[car -> Car]:
|
|
|
|
# NullInjectorError: No provider for Car!'.
|
|
|
|
# at <Jasmine>
|
|
|
|
"fixme-saucelabs-ivy",
|
|
|
|
],
|
2017-12-06 09:56:49 -05:00
|
|
|
deps = [
|
|
|
|
":test_lib",
|
|
|
|
],
|
|
|
|
)
|