mirror of
				https://github.com/Redocly/redoc.git
				synced 2025-11-04 17:57:30 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			77 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			77 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
'use strict';
 | 
						|
 | 
						|
import { getChildDebugElement } from 'tests/helpers';
 | 
						|
import {Component, View, provide} from 'angular2/core';
 | 
						|
 | 
						|
import {
 | 
						|
  TestComponentBuilder,
 | 
						|
  injectAsync,
 | 
						|
  beforeEach,
 | 
						|
  beforeEachProviders,
 | 
						|
  it
 | 
						|
} from 'angular2/testing';
 | 
						|
 | 
						|
import ApiLogo from 'lib/components/ApiLogo/api-logo';
 | 
						|
import SchemaManager from 'lib/utils/SchemaManager';
 | 
						|
 | 
						|
 | 
						|
describe('Redoc components', () => {
 | 
						|
  describe('ApiLogo Component', () => {
 | 
						|
    let builder;
 | 
						|
    let component;
 | 
						|
    let fixture;
 | 
						|
    let schemaMgr;
 | 
						|
 | 
						|
    let schemaUrl = '/tests/schemas/api-info-test.json';
 | 
						|
    beforeEachProviders(() => [
 | 
						|
        provide(SchemaManager, {useValue: new SchemaManager()})
 | 
						|
    ]);
 | 
						|
    beforeEach(injectAsync([TestComponentBuilder, SchemaManager], (tcb, _schemaMgr) => {
 | 
						|
      builder = tcb;
 | 
						|
      schemaMgr = _schemaMgr;
 | 
						|
      return schemaMgr.load(schemaUrl).then(() => null, (err) => { throw err; });
 | 
						|
    }));
 | 
						|
    beforeEach((done) => {
 | 
						|
      builder.createAsync(TestApp).then(_fixture => {
 | 
						|
        fixture = _fixture;
 | 
						|
        component = getChildDebugElement(fixture.debugElement, 'api-logo').componentInstance;
 | 
						|
        fixture.detectChanges();
 | 
						|
        done();
 | 
						|
      }, err => done.fail(err));
 | 
						|
    });
 | 
						|
 | 
						|
 | 
						|
    it('should init component data', () => {
 | 
						|
      expect(component).not.toBeNull();
 | 
						|
      expect(component.data).not.toBeNull();
 | 
						|
    });
 | 
						|
 | 
						|
    it('should not display image when no x-logo', () => {
 | 
						|
      component.data.should.be.empty;
 | 
						|
      let nativeElement = getChildDebugElement(fixture.debugElement, 'api-logo').nativeElement;
 | 
						|
      let imgElement = nativeElement.querySelector('img');
 | 
						|
      expect(imgElement).toBeNull();
 | 
						|
 | 
						|
      // update schemaUrl to load other schema in the next test
 | 
						|
      schemaUrl = '/tests/schemas/extended-petstore.json';
 | 
						|
    });
 | 
						|
 | 
						|
    it('should load values from spec and use transparent bgColor by default', () => {
 | 
						|
      component.data.imgUrl.should.endWith('petstore-logo.png');
 | 
						|
      component.data.bgColor.should.be.equal('transparent');
 | 
						|
    });
 | 
						|
  });
 | 
						|
});
 | 
						|
 | 
						|
 | 
						|
/** Test component that contains an ApiInfo. */
 | 
						|
@Component({selector: 'test-app'})
 | 
						|
@View({
 | 
						|
  directives: [ApiLogo],
 | 
						|
  providers: [SchemaManager],
 | 
						|
  template:
 | 
						|
      `<api-logo></api-logo>`
 | 
						|
})
 | 
						|
class TestApp {
 | 
						|
}
 |