2015-12-19 01:54:06 +03:00
|
|
|
'use strict';
|
|
|
|
|
2016-06-12 20:44:34 +03:00
|
|
|
import { getChildDebugElement } from '../../../tests/helpers';
|
2016-07-01 15:53:16 +03:00
|
|
|
import { Component, ComponentRef } from '@angular/core';
|
2016-05-09 22:55:16 +03:00
|
|
|
import { BrowserDomAdapter } from '@angular/platform-browser/src/browser/browser_adapter';
|
2015-12-19 01:54:06 +03:00
|
|
|
|
|
|
|
import {
|
2016-04-30 00:45:53 +03:00
|
|
|
inject,
|
2016-07-01 15:53:16 +03:00
|
|
|
async
|
2016-05-06 00:48:41 +03:00
|
|
|
} from '@angular/core/testing';
|
|
|
|
|
|
|
|
import { TestComponentBuilder } from '@angular/compiler/testing';
|
2015-12-19 01:54:06 +03:00
|
|
|
|
2016-06-12 20:44:34 +03:00
|
|
|
import { Redoc } from './redoc';
|
2016-06-22 21:17:48 +03:00
|
|
|
import { SpecManager } from '../../utils/SpecManager';
|
2016-06-12 20:44:34 +03:00
|
|
|
import { OptionsService } from '../../services/index';
|
2015-12-30 02:29:29 +03:00
|
|
|
|
2016-06-12 20:44:34 +03:00
|
|
|
let optsMgr:OptionsService;
|
2015-12-19 01:54:06 +03:00
|
|
|
|
2015-12-19 20:36:28 +03:00
|
|
|
describe('Redoc components', () => {
|
|
|
|
describe('Redoc Component', () => {
|
|
|
|
let builder;
|
2016-06-23 17:36:38 +03:00
|
|
|
let specMgr;
|
2016-07-01 15:53:16 +03:00
|
|
|
|
2016-06-22 21:17:48 +03:00
|
|
|
beforeEach(async(inject([TestComponentBuilder, SpecManager, OptionsService],
|
2016-06-23 17:36:38 +03:00
|
|
|
(tcb, _specMgr, _optsMgr) => {
|
2016-06-12 20:44:34 +03:00
|
|
|
optsMgr = _optsMgr;
|
2015-12-19 20:36:28 +03:00
|
|
|
builder = tcb;
|
2016-06-23 17:36:38 +03:00
|
|
|
specMgr = _specMgr;
|
2016-07-01 15:53:16 +03:00
|
|
|
return specMgr.load('/tests/schemas/extended-petstore.yml');
|
2016-04-30 00:45:53 +03:00
|
|
|
})));
|
2015-12-19 20:36:28 +03:00
|
|
|
|
|
|
|
|
2016-07-01 15:53:16 +03:00
|
|
|
it('should init component', () => {
|
|
|
|
let fixture = builder.createSync(TestAppComponent);
|
|
|
|
let component = getChildDebugElement(fixture.debugElement, 'redoc').componentInstance;
|
|
|
|
expect(component).not.toBeNull();
|
|
|
|
fixture.destroy();
|
2015-12-19 20:36:28 +03:00
|
|
|
});
|
|
|
|
|
2016-07-01 15:53:16 +03:00
|
|
|
it('should init components tree without errors', () => {
|
|
|
|
let fixture = builder.createSync(TestAppComponent);
|
|
|
|
(() => fixture.detectChanges()).should.not.throw();
|
|
|
|
fixture.destroy();
|
2015-12-19 20:36:28 +03:00
|
|
|
});
|
2015-12-19 18:32:29 +03:00
|
|
|
});
|
2015-12-19 01:54:06 +03:00
|
|
|
|
2016-01-24 22:27:15 +03:00
|
|
|
describe('Redoc init', () => {
|
|
|
|
let dom = new BrowserDomAdapter();
|
|
|
|
let elem;
|
|
|
|
beforeEach(() => {
|
|
|
|
elem = dom.createElement('redoc');
|
|
|
|
dom.defaultDoc().body.appendChild(elem);
|
|
|
|
});
|
|
|
|
|
|
|
|
afterEach(() => {
|
|
|
|
dom.defaultDoc().body.removeChild(elem);
|
|
|
|
});
|
2015-12-30 11:16:36 +03:00
|
|
|
|
2016-01-24 22:27:15 +03:00
|
|
|
it('should return promise', () => {
|
2016-07-01 16:30:45 +03:00
|
|
|
let res = Redoc.init().catch(() => {/**/});
|
2016-01-24 22:27:15 +03:00
|
|
|
res.should.be.instanceof(Promise);
|
2015-12-30 11:16:36 +03:00
|
|
|
});
|
|
|
|
|
2016-05-20 19:31:30 +03:00
|
|
|
it('should hide loading animation and display message in case of error', async(() => {
|
|
|
|
spyOn(Redoc, 'hideLoadingAnimation').and.callThrough();
|
|
|
|
spyOn(Redoc, 'displayError').and.callThrough();
|
2016-01-24 22:27:15 +03:00
|
|
|
let res = Redoc.init();
|
2016-07-01 16:30:45 +03:00
|
|
|
return res.catch(() => {
|
2016-05-20 19:31:30 +03:00
|
|
|
expect(Redoc.hideLoadingAnimation).toHaveBeenCalled();
|
|
|
|
expect(Redoc.displayError).toHaveBeenCalled();
|
2016-01-24 22:27:15 +03:00
|
|
|
});
|
2016-05-20 19:31:30 +03:00
|
|
|
}));
|
2016-01-24 22:27:15 +03:00
|
|
|
|
|
|
|
//skip because of PhantomJS crashes on this testcase
|
|
|
|
xit('should init redoc', (done) => {
|
|
|
|
var node = document.createElement('redoc');
|
|
|
|
document.body.appendChild(node);
|
2016-02-01 15:47:21 +03:00
|
|
|
let res = Redoc.init('/tests/schemas/extended-petstore.yml');
|
2016-01-24 22:27:15 +03:00
|
|
|
res.then(() => { done(); }, () => {
|
|
|
|
done.fail('Error handler should not been called');
|
|
|
|
});
|
2015-12-30 11:16:36 +03:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2016-04-30 00:45:53 +03:00
|
|
|
describe('Redoc destroy', () => {
|
2016-01-20 17:37:23 +03:00
|
|
|
let builder;
|
|
|
|
let fixture;
|
|
|
|
let element;
|
2016-07-01 15:53:16 +03:00
|
|
|
let dom;
|
2016-04-30 00:45:53 +03:00
|
|
|
let destroySpy;
|
2016-07-01 15:53:16 +03:00
|
|
|
|
|
|
|
beforeEach(async(inject([TestComponentBuilder, SpecManager, OptionsService, BrowserDomAdapter],
|
|
|
|
(tcb, specMgr, opts, _dom) => {
|
2016-01-20 17:37:23 +03:00
|
|
|
builder = tcb;
|
2016-07-01 15:53:16 +03:00
|
|
|
optsMgr = opts;
|
|
|
|
dom = _dom;
|
2016-07-01 18:33:42 +03:00
|
|
|
return specMgr.load('/tests/schemas/extended-petstore.yml');
|
2016-04-30 00:45:53 +03:00
|
|
|
})));
|
2016-01-20 17:37:23 +03:00
|
|
|
|
2016-07-01 15:53:16 +03:00
|
|
|
beforeEach(() => {
|
|
|
|
fixture = builder.createSync(TestAppComponent);
|
|
|
|
element = getChildDebugElement(fixture.debugElement, 'methods-list').nativeElement;
|
|
|
|
destroySpy = jasmine.createSpy('spy');
|
|
|
|
Redoc.appRef = <ComponentRef<any>>{
|
|
|
|
destroy: destroySpy
|
|
|
|
};
|
|
|
|
fixture.detectChanges();
|
2016-01-20 17:37:23 +03:00
|
|
|
});
|
|
|
|
|
|
|
|
afterEach(()=> {
|
|
|
|
fixture.destroy();
|
|
|
|
Redoc.appRef = null;
|
|
|
|
});
|
|
|
|
|
2016-04-30 00:45:53 +03:00
|
|
|
it('should call componentRef.destroy', () => {
|
|
|
|
Redoc.destroy();
|
|
|
|
expect(destroySpy).toHaveBeenCalled();
|
2016-01-20 17:37:23 +03:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should create new host element', () => {
|
|
|
|
element.parentElement.removeChild(element);
|
2016-04-30 00:45:53 +03:00
|
|
|
Redoc.destroy();
|
2016-01-20 17:37:23 +03:00
|
|
|
expect(dom.query('redoc')).not.toBeNull();
|
|
|
|
dom.query('redoc').should.not.be.equal(element);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should set to null appRef', () => {
|
2016-04-30 00:45:53 +03:00
|
|
|
Redoc.destroy();
|
2016-01-20 17:37:23 +03:00
|
|
|
expect(Redoc.appRef).toBeNull();
|
|
|
|
});
|
|
|
|
});
|
2016-01-20 18:05:43 +03:00
|
|
|
|
|
|
|
describe('Redoc autoInit', () => {
|
|
|
|
const testURL = 'testurl';
|
|
|
|
let dom = new BrowserDomAdapter();
|
2016-06-12 20:44:34 +03:00
|
|
|
//let redocInitSpy;
|
|
|
|
let elem: HTMLElement;
|
|
|
|
|
2016-01-20 18:05:43 +03:00
|
|
|
beforeEach(() => {
|
|
|
|
spyOn(Redoc, 'init').and.stub();
|
|
|
|
elem = dom.createElement('redoc');
|
|
|
|
dom.defaultDoc().body.appendChild(elem);
|
|
|
|
dom.setAttribute(elem, 'spec-url', testURL);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should call Redoc.init with url from param spec-url', () => {
|
|
|
|
Redoc.autoInit();
|
|
|
|
expect(Redoc.init).toHaveBeenCalled();
|
2016-06-12 20:44:34 +03:00
|
|
|
expect((<jasmine.Spy>Redoc.init).calls.argsFor(0)).toEqual([testURL]);
|
2016-01-20 18:05:43 +03:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should not call Redoc.init when spec-url param is not provided', () => {
|
|
|
|
dom.removeAttribute(elem, 'spec-url');
|
|
|
|
Redoc.autoInit();
|
|
|
|
expect(Redoc.init).not.toHaveBeenCalled();
|
|
|
|
});
|
|
|
|
|
|
|
|
afterEach(() => {
|
2016-06-12 20:44:34 +03:00
|
|
|
(<jasmine.Spy>Redoc.init).and.callThrough();
|
2016-01-20 18:05:43 +03:00
|
|
|
dom.defaultDoc().body.removeChild(elem);
|
|
|
|
});
|
|
|
|
});
|
2016-01-20 17:37:23 +03:00
|
|
|
});
|
2015-12-30 11:16:36 +03:00
|
|
|
|
2015-12-19 14:36:05 +03:00
|
|
|
/** Test component that contains a Redoc. */
|
2016-03-27 18:25:46 +03:00
|
|
|
@Component({
|
|
|
|
selector: 'test-app',
|
2015-12-19 01:54:06 +03:00
|
|
|
directives: [Redoc],
|
|
|
|
template:
|
2016-01-24 22:27:15 +03:00
|
|
|
`<redoc disable-lazy-schemas></redoc>`
|
2015-12-19 01:54:06 +03:00
|
|
|
})
|
2016-06-13 20:54:24 +03:00
|
|
|
class TestAppComponent {
|
2015-12-19 01:54:06 +03:00
|
|
|
}
|