mirror of
				https://github.com/Redocly/redoc.git
				synced 2025-11-04 09:47:31 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			73 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			73 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
'use strict';
 | 
						|
 | 
						|
import { getChildDebugElement } from 'tests/helpers';
 | 
						|
import { Component, provide } from '@angular/core';
 | 
						|
 | 
						|
import {
 | 
						|
  inject,
 | 
						|
  async,
 | 
						|
  beforeEach,
 | 
						|
  beforeEachProviders,
 | 
						|
  it
 | 
						|
} from '@angular/core/testing';
 | 
						|
 | 
						|
import { TestComponentBuilder } from '@angular/compiler/testing';
 | 
						|
 | 
						|
import { ApiInfo } from 'lib/components/ApiInfo/api-info';
 | 
						|
import SchemaManager from 'lib/utils/SchemaManager';
 | 
						|
import { OptionsService } from 'lib/services/index';
 | 
						|
 | 
						|
let optionsService = new OptionsService();
 | 
						|
 | 
						|
describe('Redoc components', () => {
 | 
						|
  describe('ApiInfo Component', () => {
 | 
						|
    let builder;
 | 
						|
    let component;
 | 
						|
    let fixture;
 | 
						|
    beforeEachProviders(() => [
 | 
						|
        provide(SchemaManager, {useValue: new SchemaManager()}),
 | 
						|
        provide(OptionsService, {useValue: optionsService})
 | 
						|
    ]);
 | 
						|
 | 
						|
    beforeEach(async(inject([TestComponentBuilder, SchemaManager], (tcb, schemaMgr) => {
 | 
						|
      builder = tcb;
 | 
						|
      return schemaMgr.load('/tests/schemas/api-info-test.json');
 | 
						|
    })));
 | 
						|
 | 
						|
    beforeEach((done) => {
 | 
						|
      builder.createAsync(TestApp).then(_fixture => {
 | 
						|
        fixture = _fixture;
 | 
						|
        component = getChildDebugElement(fixture.debugElement, 'api-info').componentInstance;
 | 
						|
        fixture.detectChanges();
 | 
						|
        done();
 | 
						|
      }, err => {
 | 
						|
        done.fail(err);
 | 
						|
      });
 | 
						|
    });
 | 
						|
 | 
						|
 | 
						|
    it('should init component data', () => {
 | 
						|
      expect(component).not.toBeNull();
 | 
						|
      expect(component.data).not.toBeNull();
 | 
						|
      component.data.title.should.be.equal('Swagger Petstore');
 | 
						|
    });
 | 
						|
 | 
						|
    it('should render api name and version', () => {
 | 
						|
      let nativeElement = getChildDebugElement(fixture.debugElement, 'api-info').nativeElement;
 | 
						|
      let headerElement = nativeElement.querySelector('h1');
 | 
						|
      expect(headerElement).toHaveText('Swagger Petstore (1.0.0)');
 | 
						|
    });
 | 
						|
  });
 | 
						|
});
 | 
						|
 | 
						|
 | 
						|
/** Test component that contains an ApiInfo. */
 | 
						|
@Component({
 | 
						|
  selector: 'test-app',
 | 
						|
  directives: [ApiInfo],
 | 
						|
  template:
 | 
						|
      `<api-info></api-info>`
 | 
						|
})
 | 
						|
class TestApp {
 | 
						|
}
 |