feat: improved type string with minLength == maxLength

closes #212
This commit is contained in:
Roman Hotsiy 2017-02-25 23:59:20 +02:00
parent a1aefa4123
commit e76bcc3329
No known key found for this signature in database
GPG Key ID: 5CB7B3ACABA57CB0
2 changed files with 49 additions and 1 deletions

View File

@ -16,6 +16,50 @@ describe('Spec Helper', () => {
expect(console.warn).toHaveBeenCalled();
(<jasmine.Spy>console.warn).and.callThrough();
});
describe('string', () => {
it('should calculate range for string with maxLength', () => {
let schema:any = {
type: 'string',
maxLength: 3
};
SchemaHelper.runInjectors(schema, schema, '#/');
schema._range.should.be.equal('<= 3 characters');
});
it('should calculate range for string with minLength', () => {
let schema:any = {
type: 'string',
minLength: 3,
};
SchemaHelper.runInjectors(schema, schema, '#/');
schema._range.should.be.equal('>= 3 characters');
});
it('should calculate range for string with both max and minLength', () => {
let schema:any = {
type: 'string',
minLength: 3,
maxLength: 5
};
SchemaHelper.runInjectors(schema, schema, '#/');
schema._range.should.be.equal('[ 3 .. 5 ] characters');
});
it('should calculate range for string with equal max and minLength', () => {
let schema:any = {
type: 'string',
minLength: 5,
maxLength: 5
};
SchemaHelper.runInjectors(schema, schema, '#/');
schema._range.should.be.equal('5 characters');
});
});
});
describe('preprocessProperties', () => {

View File

@ -150,7 +150,11 @@ const injectors = {
inject: (injectTo, propertySchema = injectTo) => {
var range;
if (propertySchema.minLength != undefined && propertySchema.maxLength != undefined) {
range = `[ ${propertySchema.minLength} .. ${propertySchema.maxLength} ]`;
if (propertySchema.minLength === propertySchema.maxLength) {
range = `${propertySchema.minLength}`;
} else {
range = `[ ${propertySchema.minLength} .. ${propertySchema.maxLength} ]`;
}
} else if (propertySchema.maxLength != undefined) {
range = '<= ' + propertySchema.maxLength;
} else if (propertySchema.minLength != undefined) {