redoc/lib/components/Redoc/redoc.spec.js

69 lines
2.0 KiB
JavaScript
Raw Normal View History

2015-12-19 01:54:06 +03:00
'use strict';
import { getChildDebugElement } from 'tests/helpers';
import {Component, View, provide} from 'angular2/core';
2015-12-26 20:44:39 +03:00
import {BrowserDomAdapter} from 'angular2/platform/browser';
2015-12-19 01:54:06 +03:00
import {
TestComponentBuilder,
injectAsync,
beforeEach,
beforeEachProviders,
it
} from 'angular2/testing';
import Redoc from 'lib/components/Redoc/redoc';
import SchemaManager from 'lib/utils/SchemaManager';
2015-12-19 20:36:28 +03:00
describe('Redoc components', () => {
describe('Redoc Component', () => {
let builder;
beforeEachProviders(() => [
2015-12-26 20:44:39 +03:00
provide(SchemaManager, {useValue: new SchemaManager()}),
provide(BrowserDomAdapter, {useValue: new BrowserDomAdapter()})
2015-12-19 20:36:28 +03:00
]);
beforeEach(injectAsync([TestComponentBuilder, SchemaManager], (tcb, schemaMgr) => {
builder = tcb;
return schemaMgr.load('/tests/schemas/extended-petstore.json').then(() => null, (err) => { throw err; });
}));
it('should init component', (done) => {
builder.createAsync(TestApp).then(fixture => {
let component = getChildDebugElement(fixture.debugElement, 'redoc').componentInstance;
expect(component).not.toBeNull();
fixture.destroy();
2015-12-19 20:36:28 +03:00
done();
}, err => done.fail(err));
});
it('should init components tree without errors', (done) => {
builder.createAsync(TestApp).then(fixture => {
(() => fixture.detectChanges()).should.not.throw();
fixture.destroy();
2015-12-19 20:36:28 +03:00
done();
}, err => done.fail(err));
});
2015-12-26 20:44:39 +03:00
it('should parse component options from host element', (done) => {
builder.createAsync(TestApp).then(fixture => {
let component = getChildDebugElement(fixture.debugElement, 'redoc').componentInstance;
fixture.detectChanges();
2015-12-27 00:12:10 +03:00
component.options.scrollYOffset.should.be.equal(50);
2015-12-26 20:44:39 +03:00
fixture.destroy();
done();
}, err => done.fail(err));
});
2015-12-19 18:32:29 +03:00
});
2015-12-19 01:54:06 +03:00
});
2015-12-19 14:36:05 +03:00
/** Test component that contains a Redoc. */
2015-12-19 01:54:06 +03:00
@Component({selector: 'test-app'})
@View({
directives: [Redoc],
template:
2015-12-26 20:44:39 +03:00
`<redoc scroll-y-offset="50"></redoc>`
2015-12-19 01:54:06 +03:00
})
class TestApp {
}