2015-12-19 03:24:25 +03:00
|
|
|
'use strict';
|
|
|
|
|
2016-05-06 12:46:41 +03:00
|
|
|
import { Component, provide } from '@angular/core';
|
|
|
|
import { BrowserDomAdapter } from '@angular/platform-browser/src/browser/browser_adapter';
|
2015-12-19 03:24:25 +03:00
|
|
|
import {
|
2016-04-30 00:45:53 +03:00
|
|
|
inject,
|
2016-05-06 00:48:41 +03:00
|
|
|
async,
|
2015-12-19 03:24:25 +03:00
|
|
|
beforeEach,
|
|
|
|
beforeEachProviders,
|
|
|
|
it
|
2016-05-06 00:48:41 +03:00
|
|
|
} from '@angular/core/testing';
|
|
|
|
import { TestComponentBuilder } from '@angular/compiler/testing';
|
2015-12-19 03:24:25 +03:00
|
|
|
|
2016-05-06 12:46:41 +03:00
|
|
|
import { getChildDebugElement } from 'tests/helpers';
|
|
|
|
|
2016-05-09 22:55:16 +03:00
|
|
|
import { Method } from 'lib/components/Method/method';
|
2015-12-19 03:24:25 +03:00
|
|
|
import SchemaManager from 'lib/utils/SchemaManager';
|
2016-05-09 22:55:16 +03:00
|
|
|
import { OptionsService, RedocEventsService } from 'lib/services/index';
|
2015-12-19 03:24:25 +03:00
|
|
|
|
2015-12-19 20:36:28 +03:00
|
|
|
describe('Redoc components', () => {
|
|
|
|
describe('Method Component', () => {
|
|
|
|
let builder;
|
|
|
|
let component;
|
|
|
|
beforeEachProviders(() => [
|
2016-02-10 18:18:36 +03:00
|
|
|
provide(SchemaManager, {useValue: new SchemaManager()}),
|
|
|
|
provide(BrowserDomAdapter, {useClass: BrowserDomAdapter}),
|
2016-05-09 22:55:16 +03:00
|
|
|
provide(OptionsService, {useClass: OptionsService}),
|
|
|
|
provide(RedocEventsService, {useClass: RedocEventsService})
|
2015-12-19 20:36:28 +03:00
|
|
|
]);
|
2016-04-30 00:45:53 +03:00
|
|
|
beforeEach(async(inject([TestComponentBuilder, SchemaManager], (tcb, schemaMgr) => {
|
2015-12-19 20:36:28 +03:00
|
|
|
builder = tcb;
|
2016-04-30 00:45:53 +03:00
|
|
|
return schemaMgr.load('/tests/schemas/extended-petstore.yml');
|
|
|
|
})));
|
2015-12-19 20:36:28 +03:00
|
|
|
beforeEach((done) => {
|
|
|
|
builder.createAsync(TestApp).then(fixture => {
|
|
|
|
component = getChildDebugElement(fixture.debugElement, 'method').componentInstance;
|
|
|
|
fixture.detectChanges();
|
|
|
|
done();
|
|
|
|
}, err => done.fail(err));
|
|
|
|
});
|
2015-12-19 03:24:25 +03:00
|
|
|
|
|
|
|
|
2015-12-19 20:36:28 +03:00
|
|
|
it('should init component', () => {
|
|
|
|
expect(component).not.toBeNull();
|
|
|
|
});
|
2015-12-19 14:36:05 +03:00
|
|
|
|
2015-12-19 20:36:28 +03:00
|
|
|
it('should init basic component data', () => {
|
|
|
|
component.data.apiUrl.should.be.equal('http://petstore.swagger.io/v2');
|
|
|
|
component.data.httpMethod.should.be.equal('put');
|
|
|
|
component.data.path.should.be.equal('/user/{username}');
|
|
|
|
});
|
2015-12-19 14:36:05 +03:00
|
|
|
|
|
|
|
|
2015-12-19 20:36:28 +03:00
|
|
|
it('should main tag', () => {
|
|
|
|
component.data.methodInfo.tags.should.be.empty;
|
|
|
|
});
|
2015-12-19 03:24:25 +03:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
2015-12-19 14:36:05 +03:00
|
|
|
/** Test component that contains a Method. */
|
2016-03-27 18:25:46 +03:00
|
|
|
@Component({
|
|
|
|
selector: 'test-app',
|
2015-12-19 03:24:25 +03:00
|
|
|
directives: [Method],
|
|
|
|
providers: [SchemaManager],
|
|
|
|
template:
|
|
|
|
`<method pointer='#/paths/~1user~1{username}/put'></method>`
|
|
|
|
})
|
|
|
|
class TestApp {
|
|
|
|
}
|