| 
									
										
										
										
											2015-05-27 13:48:24 -07:00
										 |  |  | import { | 
					
						
							|  |  |  |   AsyncTestCompleter, | 
					
						
							|  |  |  |   inject, | 
					
						
							|  |  |  |   ddescribe, | 
					
						
							|  |  |  |   describe, | 
					
						
							|  |  |  |   it, | 
					
						
							|  |  |  |   iit, | 
					
						
							|  |  |  |   xit, | 
					
						
							|  |  |  |   expect, | 
					
						
							| 
									
										
										
										
											2015-08-26 11:41:41 -07:00
										 |  |  |   SpyObject | 
					
						
							| 
									
										
										
										
											2015-10-13 00:29:13 -07:00
										 |  |  | } from 'angular2/testing_internal'; | 
					
						
							| 
									
										
										
										
											2015-11-17 15:24:36 -08:00
										 |  |  | import {SpyElementRef, SpyDomAdapter} from '../../core/spies'; | 
					
						
							| 
									
										
										
										
											2015-05-27 13:48:24 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-19 15:09:34 -08:00
										 |  |  | import {DOM, DomAdapter} from 'angular2/src/platform/dom/dom_adapter'; | 
					
						
							| 
									
										
										
										
											2015-05-27 13:48:24 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-17 15:24:36 -08:00
										 |  |  | import {Ruler, Rectangle} from 'angular2/src/platform/browser/ruler'; | 
					
						
							| 
									
										
										
										
											2015-05-27 13:48:24 -07:00
										 |  |  | import {createRectangle} from './rectangle_mock'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | function assertDimensions(rect: Rectangle, left, right, top, bottom, width, height) { | 
					
						
							|  |  |  |   expect(rect.left).toEqual(left); | 
					
						
							|  |  |  |   expect(rect.right).toEqual(right); | 
					
						
							|  |  |  |   expect(rect.top).toEqual(top); | 
					
						
							|  |  |  |   expect(rect.bottom).toEqual(bottom); | 
					
						
							|  |  |  |   expect(rect.width).toEqual(width); | 
					
						
							|  |  |  |   expect(rect.height).toEqual(height); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | export function main() { | 
					
						
							|  |  |  |   describe('ruler service', () => { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     it('should allow measuring ElementRefs', inject([AsyncTestCompleter], (async) => { | 
					
						
							|  |  |  |          var ruler = new Ruler(SpyObject.stub( | 
					
						
							|  |  |  |              new SpyDomAdapter(), {'getBoundingClientRect': createRectangle(10, 20, 200, 100)})); | 
					
						
							|  |  |  |          var elRef = <any>new SpyElementRef(); | 
					
						
							|  |  |  |          ruler.measure(elRef).then((rect) => { | 
					
						
							|  |  |  |            assertDimensions(rect, 10, 210, 20, 120, 200, 100); | 
					
						
							|  |  |  |            async.done(); | 
					
						
							|  |  |  |          }); | 
					
						
							|  |  |  |        })); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     it('should return 0 for all rectangle values while measuring elements in a document fragment', | 
					
						
							|  |  |  |        inject([AsyncTestCompleter], (async) => { | 
					
						
							|  |  |  |          var ruler = new Ruler(DOM); | 
					
						
							|  |  |  |          var elRef = <any>new SpyElementRef(); | 
					
						
							| 
									
										
										
										
											2015-08-26 11:41:41 -07:00
										 |  |  |          elRef.prop("nativeElement", DOM.createElement('div')); | 
					
						
							| 
									
										
										
										
											2015-05-27 13:48:24 -07:00
										 |  |  |          ruler.measure(elRef).then((rect) => { | 
					
						
							|  |  |  |            // here we are using an element created in a doc fragment so all the measures will come
 | 
					
						
							|  |  |  |            // back as 0
 | 
					
						
							|  |  |  |            assertDimensions(rect, 0, 0, 0, 0, 0, 0); | 
					
						
							|  |  |  |            async.done(); | 
					
						
							|  |  |  |          }); | 
					
						
							|  |  |  |        })); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   }); | 
					
						
							| 
									
										
										
										
											2015-08-26 11:41:41 -07:00
										 |  |  | } |