| 
									
										
										
										
											2016-09-08 21:41:09 -07: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-11-10 18:13:11 -08:00
										 |  |  | import {$, ExpectedConditions, browser, by, element} from 'protractor'; | 
					
						
							| 
									
										
										
										
											2016-09-08 21:41:09 -07:00
										 |  |  | import {verifyNoBrowserErrors} from '../../../../_common/e2e_util'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | function waitForElement(selector: string) { | 
					
						
							| 
									
										
										
										
											2016-11-12 14:08:58 +01:00
										 |  |  |   const EC = ExpectedConditions; | 
					
						
							| 
									
										
										
										
											2016-09-08 21:41:09 -07:00
										 |  |  |   // Waits for the element with id 'abc' to be present on the dom.
 | 
					
						
							|  |  |  |   browser.wait(EC.presenceOf($(selector)), 20000); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | describe('pipe', () => { | 
					
						
							|  |  |  |   afterEach(verifyNoBrowserErrors); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   describe('async', () => { | 
					
						
							| 
									
										
										
										
											2016-11-12 14:08:58 +01:00
										 |  |  |     const URL = '/common/pipes/ts/'; | 
					
						
							| 
									
										
										
										
											2016-09-08 21:41:09 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |     it('should resolve and display promise', () => { | 
					
						
							|  |  |  |       browser.get(URL); | 
					
						
							|  |  |  |       waitForElement('async-promise-pipe'); | 
					
						
							|  |  |  |       expect(element.all(by.css('async-promise-pipe span')).get(0).getText()) | 
					
						
							|  |  |  |           .toEqual('Wait for it...'); | 
					
						
							|  |  |  |       element(by.css('async-promise-pipe button')).click(); | 
					
						
							|  |  |  |       expect(element.all(by.css('async-promise-pipe span')).get(0).getText()) | 
					
						
							|  |  |  |           .toEqual('Wait for it... hi there!'); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     it('should update lowercase/uppercase', () => { | 
					
						
							|  |  |  |       browser.get(URL); | 
					
						
							|  |  |  |       waitForElement('lowerupper-pipe'); | 
					
						
							|  |  |  |       element(by.css('lowerupper-pipe input')).sendKeys('Hello World!'); | 
					
						
							|  |  |  |       expect(element.all(by.css('lowerupper-pipe pre')).get(0).getText()) | 
					
						
							|  |  |  |           .toEqual('\'hello world!\''); | 
					
						
							|  |  |  |       expect(element.all(by.css('lowerupper-pipe pre')).get(1).getText()) | 
					
						
							|  |  |  |           .toEqual('\'HELLO WORLD!\''); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | }); |