| 
									
										
										
										
											2016-10-23 22:37:15 +02:00
										 |  |  | /** | 
					
						
							|  |  |  |  * @license | 
					
						
							|  |  |  |  * 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
 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-28 17:50:03 -07:00
										 |  |  | import {verifyNoBrowserErrors} from '@angular/testing/src/e2e_util'; | 
					
						
							|  |  |  | import {runBenchmark} from '@angular/testing/src/perf_util'; | 
					
						
							| 
									
										
										
										
											2015-05-29 21:40:15 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | describe('ng2 compiler benchmark', function() { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-12 14:08:58 +01:00
										 |  |  |   const URL = 'benchmarks/src/compiler/compiler_benchmark.html'; | 
					
						
							| 
									
										
										
										
											2015-05-29 21:40:15 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-30 08:17:27 -07:00
										 |  |  |   afterEach(verifyNoBrowserErrors); | 
					
						
							| 
									
										
										
										
											2015-05-29 21:40:15 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |   it('should log withBindings stats', function(done) { | 
					
						
							| 
									
										
										
										
											2015-09-24 14:51:19 -07:00
										 |  |  |     browser.sleep(1000); | 
					
						
							| 
									
										
										
										
											2015-05-30 08:17:27 -07:00
										 |  |  |     runBenchmark({ | 
					
						
							|  |  |  |       url: URL, | 
					
						
							|  |  |  |       id: 'ng2.compile.withBindings', | 
					
						
							|  |  |  |       params: [{name: 'elements', value: 150, scale: 'linear'}], | 
					
						
							|  |  |  |       work: function() { | 
					
						
							|  |  |  |         browser.executeScript('document.querySelector("#compileWithBindings").click()'); | 
					
						
							|  |  |  |         browser.sleep(500); | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  |     }).then(done, done.fail); | 
					
						
							| 
									
										
										
										
											2015-05-29 21:40:15 -07:00
										 |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   it('should log noBindings stats', function(done) { | 
					
						
							| 
									
										
										
										
											2015-09-24 14:51:19 -07:00
										 |  |  |     browser.sleep(1000); | 
					
						
							| 
									
										
										
										
											2015-05-30 08:17:27 -07:00
										 |  |  |     runBenchmark({ | 
					
						
							|  |  |  |       url: URL, | 
					
						
							|  |  |  |       id: 'ng2.compile.noBindings', | 
					
						
							|  |  |  |       params: [{name: 'elements', value: 150, scale: 'linear'}], | 
					
						
							|  |  |  |       work: function() { | 
					
						
							|  |  |  |         browser.executeScript('document.querySelector("#compileNoBindings").click()'); | 
					
						
							|  |  |  |         browser.sleep(500); | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  |     }).then(done, done.fail); | 
					
						
							| 
									
										
										
										
											2015-05-29 21:40:15 -07:00
										 |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }); |