redoc/lib/services/schema-helper.service.spec.ts

36 lines
949 B
TypeScript
Raw Normal View History

2016-07-01 18:33:42 +03:00
'use strict';
import { SchemaHelper } from './schema-helper.service';
2016-10-23 20:18:42 +03:00
import { SpecManager } from '../utils/spec-manager';
2016-07-01 18:33:42 +03:00
describe('Spec Helper', () => {
describe('injectors', () => {
it('should autodetect type if not-specified', () => {
spyOn(console, 'warn').and.stub();
let schema = {
type: undefined,
properties: {}
};
SchemaHelper.runInjectors(schema, schema, '#/');
schema.type.should.be.equal('object');
expect(console.warn).toHaveBeenCalled();
(<jasmine.Spy>console.warn).and.callThrough();
});
});
describe('preprocessProperties', () => {
it('should not throw when type array and items are not defined', () => {
let schema = {
type: 'object',
properties: {
prop1: {
type: 'array'
}
}
};
(() => SchemaHelper.preprocessProperties(schema, '#/', {})).should.not.throw();
});
});
2016-07-01 18:33:42 +03:00
});