mirror of
				https://github.com/Redocly/redoc.git
				synced 2025-11-04 09:47:31 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			94 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			94 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
'use strict';
 | 
						|
 | 
						|
import { getChildDebugElement } from 'tests/helpers';
 | 
						|
import { Component, provide } from '@angular/core';
 | 
						|
import { DynamicComponentLoader } from '@angular/core';
 | 
						|
import { BrowserDomAdapter } from '@angular/platform-browser/src/browser/browser_adapter';
 | 
						|
 | 
						|
import {
 | 
						|
  inject,
 | 
						|
  beforeEach,
 | 
						|
  beforeEachProviders,
 | 
						|
  it
 | 
						|
} from '@angular/core/testing';
 | 
						|
 | 
						|
import { TestComponentBuilder } from '@angular/compiler/testing';
 | 
						|
 | 
						|
 | 
						|
import { JsonSchemaLazy } from 'lib/components/JsonSchema/json-schema-lazy';
 | 
						|
import SchemaManager from 'lib/utils/SchemaManager';
 | 
						|
import { OptionsService } from 'lib/services/index';
 | 
						|
 | 
						|
describe('Redoc components', () => {
 | 
						|
  describe('JsonSchemaLazy Component', () => {
 | 
						|
    let builder;
 | 
						|
    let component;
 | 
						|
    let schemaMgr = new SchemaManager();
 | 
						|
    let fixture;
 | 
						|
    let loader;
 | 
						|
    let appRef = {
 | 
						|
      instance: {},
 | 
						|
      hostView: {changeDetectorRef: {detectChanges : function() {} }}
 | 
						|
    };
 | 
						|
    beforeEachProviders(() => [
 | 
						|
        provide(SchemaManager, {useValue: schemaMgr}),
 | 
						|
        provide(BrowserDomAdapter, {useClass: BrowserDomAdapter}),
 | 
						|
        provide(OptionsService, {useClass: OptionsService})
 | 
						|
    ]);
 | 
						|
    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:
 | 
						|
      `<json-schema-lazy></json-schema-lazy>`
 | 
						|
})
 | 
						|
class TestApp {
 | 
						|
}
 |