| 
									
										
										
										
											2018-02-02 15:08:25 -08:00
										 |  |  | # Copyright Google Inc. All Rights Reserved. | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # Use of this source code is governed by an MIT-style license that can be | 
					
						
							|  |  |  | # found in the LICENSE file at https://angular.io/license | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | """This test verifies that a set of top level symbols from a javascript file match a gold file.
 | 
					
						
							|  |  |  | """
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-21 10:55:14 -07:00
										 |  |  | # This does a deep import under //internal because of not wanting the wrapper macro  | 
					
						
							|  |  |  | # because it introduces an extra target_bin target. | 
					
						
							|  |  |  | load("@build_bazel_rules_nodejs//internal/node:node.bzl", "nodejs_test", "nodejs_binary") | 
					
						
							| 
									
										
										
										
											2018-02-02 15:08:25 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | def js_expected_symbol_test(name, src, golden, **kwargs): | 
					
						
							| 
									
										
										
										
											2018-03-21 10:55:14 -07:00
										 |  |  |   """This test verifies that a set of top level symbols from a javascript file match a gold file.
 | 
					
						
							|  |  |  |   """
 | 
					
						
							| 
									
										
										
										
											2018-02-02 15:08:25 -08:00
										 |  |  |   all_data = [src, golden] | 
					
						
							|  |  |  |   all_data += [Label("//tools/symbol-extractor:lib")] | 
					
						
							| 
									
										
										
										
											2018-07-04 09:37:51 -07:00
										 |  |  |   all_data += [Label("@bazel_tools//tools/bash/runfiles")] | 
					
						
							| 
									
										
										
										
											2018-02-02 15:08:25 -08:00
										 |  |  |   entry_point = "angular/tools/symbol-extractor/cli.js" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   nodejs_test( | 
					
						
							|  |  |  |       name = name, | 
					
						
							|  |  |  |       data = all_data, | 
					
						
							|  |  |  |       entry_point = entry_point, | 
					
						
							|  |  |  |       templated_args = ["$(location %s)" % src, "$(location %s)" % golden], | 
					
						
							|  |  |  |       **kwargs | 
					
						
							|  |  |  |   ) | 
					
						
							| 
									
										
										
										
											2018-03-21 10:55:14 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |   nodejs_binary( | 
					
						
							|  |  |  |       name = name + '.accept', | 
					
						
							|  |  |  |       data = all_data, | 
					
						
							|  |  |  |       entry_point = entry_point, | 
					
						
							|  |  |  |       templated_args = ["$(location %s)" % src, "$(location %s)" % golden, '--accept'], | 
					
						
							|  |  |  |       **kwargs | 
					
						
							|  |  |  |   ) |