redoc/lib/components/JsonSchema/json-schema.spec.ts

69 lines
1.7 KiB
TypeScript
Raw Normal View History

'use strict';
2016-07-01 15:53:16 +03:00
import { Component } from '@angular/core';
import {
inject,
2016-07-01 15:53:16 +03:00
TestComponentBuilder
2016-05-06 00:48:41 +03:00
} from '@angular/core/testing';
2016-06-12 20:44:34 +03:00
import { getChildDebugElement } from '../../../tests/helpers';
2016-05-06 12:46:41 +03:00
2016-06-12 20:44:34 +03:00
import { JsonSchema } from './json-schema';
2016-06-22 21:17:48 +03:00
import { SpecManager } from '../../utils/SpecManager';;
describe('Redoc components', () => {
describe('JsonSchema Component', () => {
let builder;
let component;
let fixture;
2016-07-01 15:53:16 +03:00
let specMgr;
beforeEach(inject([TestComponentBuilder, SpecManager], (tcb, _spec) => {
builder = tcb;
2016-07-01 15:53:16 +03:00
specMgr = _spec;
}));
2016-07-01 15:53:16 +03:00
beforeEach(() => {
fixture = builder.createSync(TestAppComponent);
let debugEl = getChildDebugElement(fixture.debugElement, 'json-schema');
component = debugEl.componentInstance;
});
it('should init component', () => {
component.pointer = '';
2016-08-22 12:12:13 +03:00
(<SpecManager>specMgr)._schema = {type: 'object'};
fixture.detectChanges();
expect(component).not.toBeNull();
});
it('should set isTrivial for non-object/array types', () => {
component.pointer = '#';
(<any>specMgr)._schema = {type: 'string'};
fixture.detectChanges();
component.schema.isTrivial.should.be.true();
});
it('should use < anything > notation for prop without type', () => {
component.pointer = '#';
(<any>specMgr)._schema = {type: 'object', properties: {
test: {}
}};
fixture.detectChanges();
component.schema._properties[0]._displayType.should.be.equal('< anything >');
});
});
});
/** Test component that contains a Method. */
@Component({
selector: 'test-app',
directives: [JsonSchema],
2016-06-22 21:17:48 +03:00
providers: [SpecManager],
template:
`<json-schema></json-schema>`
})
2016-06-13 20:54:24 +03:00
class TestAppComponent {
}