51 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			51 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import {
 | 
						|
  inject,
 | 
						|
  describe,
 | 
						|
  it,
 | 
						|
  expect,
 | 
						|
} from '@angular/core/testing/testing_internal';
 | 
						|
import {AsyncTestCompleter, SpyObject} from '@angular/core/testing/testing_internal';
 | 
						|
import {getDOM} from '@angular/platform-browser/src/dom/dom_adapter';
 | 
						|
import {Ruler, Rectangle} from '@angular/platform-browser/src/browser/ruler';
 | 
						|
import {createRectangle} from './rectangle_mock';
 | 
						|
import {SpyDomAdapter, SpyElementRef} from '@angular/core/test/spies';
 | 
						|
 | 
						|
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(getDOM());
 | 
						|
         var elRef = <any>new SpyElementRef();
 | 
						|
         elRef.prop("nativeElement", getDOM().createElement('div'));
 | 
						|
         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();
 | 
						|
         });
 | 
						|
       }));
 | 
						|
 | 
						|
  });
 | 
						|
}
 |