本文整理汇总了TypeScript中forms/validation/validators/maximumAgeValidator.MaximumAgeValidatorConstraint类的典型用法代码示例。如果您正苦于以下问题:TypeScript MaximumAgeValidatorConstraint类的具体用法?TypeScript MaximumAgeValidatorConstraint怎么用?TypeScript MaximumAgeValidatorConstraint使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了MaximumAgeValidatorConstraint类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: describe
describe('MaximumAgeValidatorConstraint', () => {
const constraint: MaximumAgeValidatorConstraint = new MaximumAgeValidatorConstraint()
const maxMessage: string = 'Max Years in the past has to be specified and positive value'
describe('validate', () => {
const today = moment()
it('should throw an error if maxYears constraint is not set', () => {
expect(() => constraint.validate(null, yearsLimit(undefined))).to.throw(Error, maxMessage)
})
it('should accept past date lesser than maximum age', () => {
expect(constraint.validate(new LocalDate(today.year() - 149, today.month() + 1, today.date()), yearsLimit(150))).to.be.equal(true)
})
it('should accept undefined value', () => {
expect(constraint.validate(undefined, yearsLimit(1))).to.be.equal(true)
})
it('should accept undefined value', () => {
expect(constraint.validate(undefined, yearsLimit(1))).to.be.equal(true)
})
it('should reject values other then LocalDate', () => {
expect(constraint.validate({}, yearsLimit(1))).to.be.equal(false)
})
it('should reject past date out of the range', () => {
expect(constraint.validate(new LocalDate(today.year() - 151, today.month() + 1, today.date()), yearsLimit(150))).to.be.equal(false)
})
it('should accept past date within range', () => {
expect(constraint.validate(new LocalDate(today.year() - 1, today.month() + 1, today.date()), yearsLimit(1))).to.be.equal(true)
})
})
})
示例2: it
it('should accept past date within range', () => {
expect(constraint.validate(new LocalDate(today.year() - 1, today.month() + 1, today.date()), yearsLimit(1))).to.be.equal(true)
})
示例3: expect
expect(() => constraint.validate(null, yearsLimit(undefined))).to.throw(Error, maxMessage)