| 
									
										
										
										
											2018-09-11 18:11:32 -07:00
										 |  |  | load("//tools:defaults.bzl", "jasmine_node_test", "ts_library", "ts_web_test_suite") | 
					
						
							| 
									
										
										
										
											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", | 
					
						
							| 
									
										
										
										
											2017-12-19 15:03:29 -08:00
										 |  |  |     bootstrap = ["angular/tools/testing/init_node_spec.js"], | 
					
						
							| 
									
										
										
										
											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", | 
					
						
							| 
									
										
										
										
											2017-12-18 15:37:05 -08:00
										 |  |  |         "//tools/testing:node", | 
					
						
							| 
									
										
										
										
											2019-02-20 09:54:42 -08:00
										 |  |  |         "@npm//base64-js", | 
					
						
							|  |  |  |         "@npm//source-map", | 
					
						
							| 
									
										
										
										
											2017-12-16 20:08:49 -08:00
										 |  |  |     ], | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-11 09:43:06 -07:00
										 |  |  | ts_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", | 
					
						
							|  |  |  |     ], | 
					
						
							|  |  |  | ) |