'use strict'; import { getChildDebugElement } from 'tests/helpers'; import {Component, provide} from 'angular2/core'; import {DynamicComponentLoader} from 'angular2/src/core/linker/dynamic_component_loader'; import {BrowserDomAdapter} from 'angular2/platform/browser'; import { TestComponentBuilder, inject, beforeEach, beforeEachProviders, it } from 'angular2/testing'; import JsonSchemaLazy from 'lib/components/JsonSchema/json-schema-lazy'; import SchemaManager from 'lib/utils/SchemaManager'; import OptionsManager from 'lib/options'; describe('Redoc components', () => { describe('JsonSchemaLazy Component', () => { let builder; let component; let schemaMgr = new SchemaManager(); let fixture; let loader; let appRef = { instance: {}, location: {internalElement: {parentView: {changeDetector: {detectChanges : function() {} }}}} }; beforeEachProviders(() => [ provide(SchemaManager, {useValue: schemaMgr}), provide(BrowserDomAdapter, {useClass: BrowserDomAdapter}), provide(OptionsManager, {useClass: OptionsManager}) ]); beforeEach(inject([TestComponentBuilder, DynamicComponentLoader], (tcb, dcl) => { builder = tcb; loader = dcl; spyOn(loader, 'loadNextToLocation').and.returnValue({then: (fn) => fn(appRef)}); })); beforeEach((done) => { builder.createAsync(TestApp).then(_fixture => { fixture = _fixture; let debugEl = getChildDebugElement(fixture.debugElement, 'json-schema-lazy'); component = debugEl.componentInstance; done(); }, err => done.fail(err)); }); afterEach(() => { loader.loadNextToLocation.and.callThrough(); }); it('should init component', () => { expect(component).not.toBeNull(); }); it('should run loadNextToLocation on load', () => { component.pointer = '#/def'; fixture.detectChanges(); component.load(); expect(loader.loadNextToLocation).toHaveBeenCalled(); }); it('should not run loadNextToLocation if already loaded', () => { component.pointer = '#/def'; fixture.detectChanges(); component.load(); component.load(); expect(loader.loadNextToLocation.calls.count()).toEqual(1); }); it('should init json-schema with correct pointer', () => { component.pointer = '#/def'; fixture.detectChanges(); component.load(); expect(appRef.instance.pointer).toEqual(component.pointer); }); }); }); /** Test component that contains a Method. */ @Component({ selector: 'test-app', directives: [JsonSchemaLazy], template: `` }) class TestApp { }